/* ================================== */
/* === 1. Variables & Reset === */
/* ================================== */
:root {
    --primary-green: #066ac9;
    --primary-green-glow: rgba(6, 106, 201, 0.30);
    --primary-blue: #066ac9;
    --text-main: #1D1D1F;
    --text-secondary: #6e6e73;
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(255, 255, 255, 0.6);
    --bg-body: #F5F5F7;
    --radius-lg: 28px;
    --radius-md: 20px;
    --radius-sm: 14px;
    --section-spacing: 80px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Vazirmatn', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-body);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.8;
    direction: rtl;
    font-weight: 400;
    font-size: 16px;
}

/* ================================== */
/* === 2. Ambient Background === */
/* ================================== */
.ambient-light {
    position: fixed;
    top: -15%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(6, 106, 201, 0.07), transparent 60%);
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
    animation: float 12s infinite ease-in-out;
}

.ambient-light-2 {
    position: fixed;
    bottom: -15%;
    left: -10%;
    width: 55vw;
    height: 55vw;
    background: radial-gradient(circle, rgba(122, 69, 232, 0.06), transparent 60%);
    filter: blur(80px);
    z-index: -1;
    pointer-events: none;
    animation: float 15s infinite ease-in-out reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(15px, 30px);
    }
}

/* ================================== */
/* === 3. Utilities === */
/* ================================== */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul, ol {
    list-style: none;
}

strong {
    font-weight: 700;
    color: #000;
}

/* ================================== */
/* === 4. Buttons === */
/* ================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 99px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    gap: 8px;
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-green);
    color: white;
    box-shadow: 0 4px 16px var(--primary-green-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px var(--primary-green-glow);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid white;
    color: var(--primary-blue);
}

.btn-glass:hover {
    background: white;
    transform: translateY(-2px);
}

/* ================================== */
/* === 5. Navigation === */
/* ================================== */
.glass-nav {
    position: sticky;
    top: 16px;
    margin: 16px 16px 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.04);
    padding: 12px 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    object-fit: cover;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-text .name {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-main);
}

.logo-text .academy {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.nav-links {
    display: flex;
    gap: 28px;
}

.nav-item {
    font-weight: 500;
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.nav-item:hover {
    color: var(--text-main);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: rgba(245, 245, 247, 0.8);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    gap: 5px;
    padding: 10px;
    z-index: 1002;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background: rgba(235, 235, 240, 0.9);
}

.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2.5px;
    background: var(--text-main);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

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

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

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

/* Nav CTA Buttons */
.nav-cta-mobile {
    display: none;
}

/* Nav Overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ================================== */
/* === 6. Breadcrumb === */
/* ================================== */
.breadcrumb {
    display: flex; flex-wrap: wrap; align-items: center; gap: 6px;
    margin: 22px 0 4px; padding: 10px 16px;
    font-size: 0.84rem; color: var(--text-secondary);
    background: rgba(255,255,255,0.7); border: 1px solid #ebedf0;
    border-radius: 999px; width: fit-content; max-width: 100%;
    box-shadow: 0 2px 10px rgba(15,23,42,0.03);
}
.breadcrumb a { color: var(--text-secondary); font-weight: 500; padding: 2px 4px; border-radius: 6px; transition: color .2s ease, background .2s ease; }
.breadcrumb a:first-of-type::before { content:"\f015"; font-family:"Font Awesome 6 Free"; font-weight:900; font-size:.78rem; margin-left:6px; color: var(--primary-blue); }
.breadcrumb a:hover { color: var(--primary-blue); background: rgba(6,106,201,0.08); }
.breadcrumb > span:not(:last-child) { font-size:0; display:inline-flex; width:14px; justify-content:center; }
.breadcrumb > span:not(:last-child)::before { content:"\f104"; font-family:"Font Awesome 6 Free"; font-weight:900; font-size:.7rem; opacity:.55; color:#8a8f96; }
.breadcrumb > span:last-child { color: var(--text-main); font-weight:600; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; max-width:60vw; }

/* ================================== */
/* === 7. Article Header === */
/* ================================== */
.article-header {
    padding: 40px 0 60px;
    text-align: center;
}

.article-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.meta-item i {
    color: var(--primary-green);
}

.category-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: rgba(6, 106, 201, 0.1);
    color: var(--primary-green);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.article-title {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: normal;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--text-main);
}

.article-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 2;
}

/* ================================== */
/* === 8. Featured Image === */
/* ================================== */
.featured-image {
    max-width: 900px;
    margin: 0 auto 60px;
}

.featured-image-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 20px 60px -10px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

.featured-image-wrapper:hover img {
    transform: scale(1.02);
}

.featured-image-wrapper.dark-mode {
    background: #1a1a1a;
}

/* ================================== */
/* === 9. Article Content === */
/* ================================== */
.article-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

.article-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-top: 48px;
    margin-bottom: 20px;
    color: var(--text-main);
    position: relative;
    padding-bottom: 12px;
}

.article-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), transparent);
    border-radius: 2px;
}

.article-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--text-main);
}

.article-content p {
    margin-bottom: 16px;
    color: var(--text-main);
    line-height: 2;
}

.article-content ul,
.article-content ol {
    margin: 16px 0;
    padding-right: 24px;
    list-style: none;
}

.article-content ul li,
.article-content ol li {
    margin-bottom: 12px;
    position: relative;
    padding-right: 28px;
}

.article-content ul li::before {
    content: '';
    position: absolute;
    right: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--primary-green);
    border-radius: 50%;
}

.article-content ol {
    counter-reset: item;
}

.article-content ol li {
    counter-increment: item;
}

.article-content ol li::before {
    content: counter(item);
    position: absolute;
    right: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background: var(--primary-green);
    color: white;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ================================== */
/* === 10. Lead Paragraph === */
/* ================================== */
.lead {
    font-size: 1.1rem;
    color: var(--text-main);
    padding: 24px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--radius-md);
    border-right: 4px solid var(--primary-green);
    margin-top: 24px;
    line-height: 2;
}

/* ================================== */
/* === 11. Table of Contents === */
/* ================================== */
.toc {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 28px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 1);
    margin: 32px 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
}

.toc h2 {
    font-size: 1.1rem;
    margin-top: 0 !important;
    margin-bottom: 20px !important;
    padding-bottom: 0 !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.toc h2::after {
    display: none;
}

.toc h2 i {
    color: var(--primary-blue);
}

.toc ul {
    padding: 0;
    margin: 0;
}

.toc li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.toc li:last-child {
    border-bottom: none;
}

.toc li::before {
    display: none;
}

.toc a {
    color: var(--text-main);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.toc a::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primary-blue);
    border-radius: 50%;
    flex-shrink: 0;
}

.toc a:hover {
    color: var(--primary-blue);
}

/* ================================== */
/* === 12. Glass Tables === */
/* ================================== */
.glass-table-wrapper {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 1);
    overflow: hidden;
    margin: 24px 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    min-width: 400px;
}

th, td {
    padding: 16px 20px;
    text-align: right;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

th {
    background: rgba(6, 106, 201, 0.08);
    font-weight: 700;
    color: var(--text-main);
    white-space: nowrap;
}

tr:last-child td {
    border-bottom: none;
}

tr:hover td {
    background: rgba(6, 106, 201, 0.04);
}

/* ================================== */
/* === 13. Info Boxes === */
/* ================================== */
.info-box {
    padding: 20px 24px;
    border-radius: var(--radius-sm);
    margin: 24px 0;
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.info-box i {
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.info-box.blue {
    background: rgba(6, 106, 201, 0.08);
    border: 1px solid rgba(6, 106, 201, 0.2);
    color: #0369A1;
}

.info-box.green {
    background: rgba(20, 184, 122, 0.08);
    border: 1px solid rgba(20, 184, 122, 0.2);
    color: #15803D;
}

.info-box.gold {
    background: rgba(255, 214, 10, 0.15);
    border: 1px solid rgba(255, 214, 10, 0.3);
    color: #92400E;
}

/* ================================== */
/* === 14. Content Images === */
/* ================================== */
.content-image {
    margin: 32px 0;
    text-align: center;
}

.content-image .image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(245, 245, 247, 0.9), rgba(235, 235, 240, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 1);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.content-image .image-wrapper img {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    display: block;
}

.content-image .caption {
    margin-top: 12px;
    padding: 12px 16px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
}

/* ================================== */
/* === 15. Video Placeholder === */
/* ================================== */
.video-placeholder {
    margin: 32px 0;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, rgba(29, 29, 31, 0.95), rgba(29, 29, 31, 0.85));
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: white;
    position: relative;
    overflow: hidden;
}

.video-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.play-btn {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 2;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.play-btn:hover {
    transform: scale(1.1);
    background: var(--primary-green);
    border-color: var(--primary-green);
}

.video-placeholder span {
    font-size: 0.9rem;
    opacity: 0.7;
    z-index: 2;
}

/* ================================== */
/* === 16. FAQ Section === */
/* ================================== */
.faq-section {
    margin-top: 48px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.glass-accordion {
    background: white;
    border-radius: var(--radius-md);
    border: 1px solid #EAEAEA;
    overflow: hidden;
    transition: all 0.3s ease;
}

.glass-accordion:hover {
    border-color: #d1d1d1;
}

.glass-accordion summary {
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 12px;
    list-style: none;
    color: var(--text-main);
}

.glass-accordion summary::-webkit-details-marker {
    display: none;
}

.q-icon {
    width: 36px;
    height: 36px;
    background: #F2F2F7;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: 0.3s;
}

.glass-accordion[open] .q-icon {
    background: var(--primary-blue);
    color: white;
}

.glass-accordion summary .arrow {
    margin-right: auto;
    font-size: 0.75rem;
    transition: transform 0.3s ease;
    color: var(--text-secondary);
}

.glass-accordion[open] summary .arrow {
    transform: rotate(180deg);
    color: var(--primary-blue);
}

.glass-accordion[open] {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.05);
    border-color: transparent;
}

.faq-content {
    padding: 0 24px 24px;
    padding-right: 72px;
    color: var(--text-secondary);
    line-height: 2;
}

/* ================================== */
/* === 17. CTA Box === */
/* ================================== */
.cta-box {
    background: linear-gradient(135deg, #FF9500 0%, #FF2D55 100%);
    border-radius: var(--radius-lg);
    padding: 48px 32px;
    text-align: center;
    color: white;
    margin: 48px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 60px -12px rgba(255, 45, 85, 0.35);
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.cta-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
}

.cta-box p {
    font-size: 1rem;
    opacity: 0.95;
    margin-bottom: 24px;
    position: relative;
}

.cta-box .btn {
    background: white;
    color: #FF2D55;
    font-weight: 700;
    position: relative;
}

.cta-box .btn:hover {
    transform: scale(1.05);
}

/* ================================== */
/* === 18. Summary Box === */
/* ================================== */
.summary-box {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 28px;
    border-radius: var(--radius-md);
    border: 2px solid var(--primary-green);
    margin: 32px 0;
}

.summary-box h3 {
    margin-top: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-green);
}

.summary-box ul {
    margin-bottom: 0;
}

/* ================================== */
/* === 19. Author Box === */
/* ================================== */
.author-box {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 1);
    margin-top: 48px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: var(--text-main);
}

.author-info .role {
    font-size: 0.85rem;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.author-info p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

.author-info .links {
    margin-top: 12px;
    display: flex;
    gap: 12px;
}

.author-info .links a {
    color: var(--primary-blue);
    font-size: 0.85rem;
    font-weight: 500;
}

.author-info .links a:hover {
    text-decoration: underline;
}

/* ================================== */
/* === 20. Footer === */
/* ================================== */
.dark-footer {
    background: #0b0b0b;
    color: #86868B;
    padding: 60px 0 48px;
    border-top: 1px solid #1f1f1f;
    margin-top: 80px;
}

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

.logo-group.inverted .logo-icon {
    background: white;
    color: black;
}

.logo-group.inverted .logo-text .name {
    color: white;
}

.logo-group.inverted .logo-text .academy {
    color: #86868B;
}

.social-col {
    display: flex;
    gap: 12px;
}

.social-glass {
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: 0.3s;
    font-size: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-glass:hover {
    background: white;
    color: black;
    transform: translateY(-3px);
}

.copyright {
    margin-top: 12px;
    font-size: 0.8rem;
    opacity: 0.7;
}

/* ================================== */
/* === 21. Hero Section === */
/* ================================== */
.hero {
    padding: 80px 0 60px;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: normal;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--text-main);
}

.hero h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin: 20px 0 12px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.hero-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.9;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

/* ================================== */
/* === 22. Video Glass Card === */
/* ================================== */
.video-glass-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.video-glass-card img,
.video-glass-card video {
    width: 100%;
    display: block;
}

.play-button-glass {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary-green);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.play-button-glass:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: white;
}

/* ================================== */
/* === 23. Section Head === */
/* ================================== */
.section-head {
    text-align: center;
    margin-bottom: 48px;
}

.section-head h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 12px;
}

.section-head p {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ================================== */
/* === 24. Glass Card === */
/* ================================== */
.glass-card {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 1);
    padding: 36px 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
}

/* ================================== */
/* === 25. Check List === */
/* ================================== */
.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.95rem;
    color: var(--text-main);
}

.icon-circle {
    width: 28px;
    height: 28px;
    background: var(--primary-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

/* ================================== */
/* === 26. Audience Grid === */
/* ================================== */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.audience-cell {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--radius-md);
    padding: 24px 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 1);
    transition: all 0.3s ease;
}

.audience-cell:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.aud-icon {
    width: 48px;
    height: 48px;
    background: rgba(6, 106, 201, 0.1);
    color: var(--primary-green);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin: 0 auto 12px;
}

.aud-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 6px;
}

.aud-desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ================================== */
/* === 27. Spec Row === */
/* ================================== */
.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.spec-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.spec-label i {
    width: 32px;
    height: 32px;
    background: rgba(6, 106, 201, 0.1);
    color: var(--primary-blue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.spec-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
}

/* ================================== */
/* === 28. Timeline === */
/* ================================== */
.timeline-container {
    position: relative;
    padding-right: 40px;
}

.timeline-line {
    position: absolute;
    right: 12px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-green), var(--primary-blue));
    border-radius: 2px;
}

.timeline-row {
    position: relative;
    margin-bottom: 24px;
}

.marker {
    position: absolute;
    right: -40px;
    top: 24px;
    width: 24px;
    height: 24px;
    background: var(--primary-green);
    border-radius: 50%;
    border: 4px solid var(--bg-body);
}

.timeline-content {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--radius-md);
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 1);
}

.timeline-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 8px;
}

.pill-tag {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(6, 106, 201, 0.1);
    color: var(--primary-green);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 8px;
}

/* ================================== */
/* === 29. Instructor Card === */
/* ================================== */
.instructor-card {
    display: flex;
    gap: 40px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
}

.inst-img-wrapper {
    position: relative;
    width: 280px;
    flex-shrink: 0;
}

.inst-img-wrapper img {
    width: 100%;
    border-radius: var(--radius-md);
    object-fit: cover;
}

.floating-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: var(--primary-green);
    color: white;
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: 0 8px 24px var(--primary-green-glow);
}

.inst-details h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
}

.inst-details .role {
    font-size: 1rem;
    color: var(--primary-blue);
    margin-bottom: 16px;
}

.inst-details .bio {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 20px;
}

.creds-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.cred-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(6, 106, 201, 0.08);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-main);
}

.cred-pill i {
    color: var(--primary-blue);
}

/* ================================== */
/* === 30. Compare Grid === */
/* ================================== */
.compare-grid {
    display: flex;
    gap: 24px;
}

.compare-grid .glass-card {
    flex: 1;
    min-width: 300px;
}

/* ================================== */
/* === 31. Steps === */
/* ================================== */
.steps-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-main);
}

.step-circle {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-green);
    border: 2px solid rgba(6, 106, 201, 0.3);
}

.line {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-blue));
    border-radius: 2px;
}

/* ================================== */
/* === 32. Gradient Glass Box === */
/* ================================== */
.gradient-glass-box {
    background: linear-gradient(135deg, rgba(6, 106, 201, 0.10) 0%, rgba(122, 69, 232, 0.10) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--radius-lg);
    padding: 60px 40px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.gradient-glass-box h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 16px;
}

.gradient-glass-box > p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.icon-float {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary-green);
    margin: 0 auto 24px;
    box-shadow: 0 12px 40px rgba(6, 106, 201, 0.2);
}

/* ================================== */
/* === 33. Final CTA === */
/* ================================== */
.final-cta {
    padding: 80px 0;
    text-align: center;
}

.final-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 16px;
}

.final-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ================================== */
/* === 34. Stats Grid === */
/* ================================== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--radius-lg);
    padding: 32px 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ================================== */
/* === 35. RESPONSIVE - Tablet === */
/* ================================== */
@media (max-width: 900px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .instructor-card {
        flex-direction: column;
        padding: 32px;
        gap: 32px;
    }

    .inst-img-wrapper {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .compare-grid {
        flex-direction: column;
    }

    .glass-card {
        min-width: auto;
        max-width: none;
    }

    .timeline-container {
        padding-right: 0;
    }

    .timeline-line,
    .marker {
        display: none;
    }

    .audience-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

/* ================================== */
/* === 36. RESPONSIVE - Mobile === */
/* ================================== */
@media (max-width: 768px) {
    :root {
        --section-spacing: 60px;
    }

    body {
        font-size: 15px;
    }

    /* === MOBILE NAVIGATION === */
    .mobile-menu-btn {
        display: flex;
    }

    .nav-cta-desktop {
        display: none;
    }

    .nav-cta-mobile {
        display: inline-flex;
        width: 100%;
        margin-top: 16px;
        padding-top: 16px;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
    }

    .nav-cta-mobile .btn {
        width: 100%;
        justify-content: center;
    }

    .nav-links {
        margin-right: -16px;
        position: fixed;
        top: 0;
        right: 0;
        transform: translateX(100%);
        width: min(416px, 85vw);
        height: 100vh;
        height: 100dvh;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 80px 24px 32px;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
        transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        overflow-y: auto;
        z-index: 1001;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-item {
        padding: 16px 20px;
        border-radius: var(--radius-md);
        background: rgba(245, 245, 247, 0.6);
        margin-bottom: 10px;
        font-size: 0.95rem;
        text-align: center;
        transition: all 0.3s ease;
        border: 1px solid rgba(0, 0, 0, 0.03);
    }

    .nav-item:hover,
    .nav-item.active {
        background: var(--primary-green);
        color: white;
        transform: translateX(-4px);
    }

    body.menu-open {
        overflow: hidden;
    }

    /* === Navigation Bar === */
    .glass-nav {
        margin: 0 12px;
        top: 12px;
        padding: 10px 0;
    }

    .nav-content {
        padding: 0 8px;
    }

    .logo-text .name {
        font-size: 0.9rem;
    }

    .logo-text .academy {
        font-size: 0.75rem;
    }

    /* === Buttons === */
    .btn {
        padding: 10px 18px;
        font-size: 0.9rem;
    }

    .btn-lg {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    /* === Hero Section === */
    .hero {
        padding: 60px 0 48px;
    }

    .hero-title {
        font-size: 1.9rem;
        line-height: 1.35;
    }

    .hero h2 {
        font-size: 1.25rem;
        margin: 20px 0 10px;
    }

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

    .hero-desc {
        font-size: 0.92rem;
        margin-bottom: 28px;
        line-height: 1.9;
    }

    .hero-actions {
        gap: 10px;
        margin-bottom: 40px;
    }

    .video-glass-card {
        border-radius: var(--radius-md);
    }

    .play-button-glass {
        width: 60px;
        height: 60px;
        font-size: 22px;
    }

    /* === Section Heads === */
    .section-head {
        margin-bottom: 36px;
    }

    .section-head h2 {
        font-size: 1.6rem;
    }

    .section-head p {
        font-size: 0.92rem;
    }

    /* === Glass Cards === */
    .glass-card {
        padding: 28px 22px;
    }

    .check-list li {
        font-size: 0.9rem;
        margin-bottom: 14px;
        gap: 10px;
    }

    .icon-circle {
        width: 24px;
        height: 24px;
        font-size: 11px;
    }

    /* === Audience Grid === */
    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .audience-cell {
        padding: 16px 10px;
    }

    .aud-icon {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .aud-title {
        font-size: 0.8rem;
    }

    .aud-desc {
        display: none;
    }

    /* === Specs === */
    .spec-row {
        padding: 14px 18px;
    }

    .spec-label {
        font-size: 0.82rem;
        gap: 8px;
    }

    .spec-label i {
        width: 24px;
        height: 24px;
        font-size: 0.7rem;
    }

    .spec-value {
        font-size: 0.85rem;
    }

    /* === Timeline === */
    .timeline-content {
        padding: 20px;
    }

    .timeline-content h3 {
        font-size: 1rem;
    }

    .timeline-row {
        margin-bottom: 16px;
    }

    .pill-tag {
        font-size: 0.8rem;
        padding: 6px 14px;
    }

    /* === Instructor Card === */
    .instructor-card {
        padding: 24px;
        border-radius: var(--radius-lg);
    }

    .inst-details h3 {
        font-size: 1.5rem;
    }

    .inst-details .role {
        font-size: 0.9rem;
    }

    .inst-details .bio {
        font-size: 0.9rem;
    }

    .creds-row {
        flex-direction: column;
        gap: 12px;
    }

    .cred-pill {
        width: 100%;
        justify-content: center;
    }

    .floating-badge {
        bottom: -16px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        width: auto;
        max-width: 90%;
        padding: 12px 18px;
        white-space: nowrap;
    }

    /* === FAQ === */
    .glass-accordion summary {
        padding: 16px 20px;
        font-size: 0.9rem;
    }

    .faq-content {
        padding: 0 20px 16px;
        padding-right: 24px;
        font-size: 0.85rem;
    }

    /* === Gradient Glass Box === */
    .gradient-glass-box {
        padding: 48px 20px;
        border-radius: var(--radius-lg);
    }

    .gradient-glass-box h2 {
        font-size: 1.6rem;
    }

    .gradient-glass-box > p {
        font-size: 0.92rem;
        margin-bottom: 32px;
    }

    .icon-float {
        width: 60px;
        height: 60px;
        font-size: 26px;
    }

    /* === Steps === */
    .steps-row {
        flex-direction: column;
        gap: 20px;
    }

    .line {
        width: 2px;
        height: 30px;
        margin: 0;
    }

    .step-circle {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }

    .step {
        font-size: 0.85rem;
    }

    /* === Final CTA === */
    .final-cta {
        padding: 60px 0;
    }

    .final-content h2 {
        font-size: 1.8rem;
    }

    .final-content p {
        font-size: 0.95rem;
    }

    /* === Stats === */
    .stats-grid {
        gap: 14px;
        margin-top: 40px;
    }

    .stat-card {
        padding: 24px 12px;
        border-radius: var(--radius-md);
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.78rem;
    }

    /* === Footer === */
    .dark-footer {
        padding: 48px 0 36px;
    }

    .footer-grid {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .social-glass {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }

    /* === Article === */
    .article-title {
        font-size: 1.8rem;
    }

    .article-subtitle {
        font-size: 1rem;
    }

    .article-meta {
        gap: 12px;
    }

    .article-content {
        padding: 0 16px 60px;
    }

    .article-content h2 {
        font-size: 1.4rem;
    }

    .article-content h3 {
        font-size: 1.15rem;
    }

    .toc {
        padding: 20px;
    }

    th, td {
        padding: 12px 14px;
        font-size: 0.85rem;
    }

    .author-box {
        flex-direction: column;
        text-align: center;
    }

    .author-info .links {
        justify-content: center;
    }

    .cta-box {
        padding: 32px 20px;
    }

    .cta-box h3 {
        font-size: 1.3rem;
    }

    .logo-text {
        display: none;
    }

    /* === Featured Image Mobile === */
    .featured-image {
        width: 100vw;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
        border-radius: 0;
    }

    .featured-image-wrapper {
        border-radius: 0;
        border-left: none;
        border-right: none;
        box-shadow: none;
        background: transparent;
        height: auto;
        aspect-ratio: 9/12;
        max-height: 600px;
    }

    .featured-image-wrapper img {
        object-fit: contain;
        border-radius: 0;
    }

    .content-image .image-wrapper {
        max-width: 100%;
        background: transparent;
        box-shadow: none;
        border: none;
    }

    .content-image .image-wrapper img {
        border-radius: 12px;
        max-height: 600px;
    }
}

/* ================================== */
/* === 37. RESPONSIVE - Small Mobile === */
/* ================================== */
@media (max-width: 480px) {
    .article-title {
        font-size: 1.5rem;
    }

    .featured-image-wrapper {
        border-radius: var(--radius-md);
    }
}

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

    .hero h2 {
        font-size: 1.15rem;
    }

    .section-head h2 {
        font-size: 1.45rem;
    }

    .final-content h2 {
        font-size: 1.55rem;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
    }

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

    .mobile-menu-btn {
        width: 40px;
        height: 40px;
    }

    .mobile-menu-btn span {
        width: 18px;
    }

    .featured-image-wrapper {
        max-height: 50vh;
        border-radius: var(--radius-sm);
    }

    .featured-image-wrapper img {
        max-height: 50vh;
    }

    .content-image .image-wrapper img {
        max-height: 60vh;
    }
}

@media (max-width: 380px) {
    .nav-links {
        width: 100vw;
        padding: 70px 16px 24px;
    }
}