*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
}

/* ===== BRAND COLOR PALETTE (from SierraTec logo) ===== */
:root {
    --navy: #171A21;
    --navy-mid: #1f3b64;
    --navy-light: #1f3b64;
    --teal: #4b8ede;
    --teal-light: #6ba3e8;
    --teal-pale: #e8f1fb;
    --gold: #4b8ede;
    --gold-light: #6ba3e8;
    --gold-pale: #e8f1fb;
    --slate: #2c5282;
    --slate-light: #4b8ede;
    --white: #FFFFFF;
    --off-white: #f1f1f1;
    --gray-50: #f1f1f1;
    --gray-100: #E2E8F0;
    --gray-200: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-600: #475569;
    --gray-800: #1E293B;
    --text-primary: #171A21;
    --text-secondary: #475569;
    --text-muted: #94A3B8;
    --bg-primary: #FFFFFF;
    --bg-secondary: #f1f5fb;
    --bg-dark: #171A21;
    --border: #E2E8F0;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --shadow-sm: 0 1px 4px rgba(23, 26, 33, 0.06);
    --shadow-md: 0 4px 20px rgba(23, 26, 33, 0.10);
    --shadow-lg: 0 12px 48px rgba(23, 26, 33, 0.14);
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== UTILITY ===== */
.container {
    max-width:1440px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 88px 0;
}

.section-alt {
    background: var(--bg-secondary);
}

.section-dark {
    background: var(--navy);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 100px;
}

.badge-teal {
    background: var(--teal-pale);
    color: var(--teal);
}

.badge-gold {
    background: var(--gold-pale);
    color: #1f3b64;
}

.badge-navy {
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.85);
}

.section-label {
    margin-bottom: 16px;
}

.section-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    line-height: 1.15;
    color: var(--navy-mid);
    margin-bottom: 16px;
}

.section-heading.light {
    color: var(--white);
}

.section-subheading {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 560px;
    line-height: 1.7;
}

.section-subheading.light {
    color: rgba(255, 255, 255, 0.7);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    padding: 13px 28px;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--teal);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--teal-light);
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(75, 142, 222, 0.3);
}

.btn-gold {
    background: var(--gold);
    color: var(--white);
}

.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(75, 142, 222, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--gray-200);
}

.btn-outline:hover {
    border-color: var(--teal);
    color: var(--teal);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.35);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.tag {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 100px;
}

.tag-teal {
    background: var(--teal-pale);
    color: var(--teal);
}

.tag-gold {
    background: var(--gold-pale);
    color: #1f3b64;
}

.tag-slate {
    background: #EEF2F8;
    color: var(--slate);
}

.tag-red {
    background: #FEF2F2;
    color: #DC2626;
}

/* ===== ANNOUNCEMENT BAR ===== */
.ann-bar {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    text-align: center;
    padding: 9px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.ann-bar a {
    color: var(--teal-light);
    text-decoration: none;
    font-weight: 600;
}

.ann-bar a:hover {
    text-decoration: underline;
}

/* ===== NAVBAR ===== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 0 24px;
}

.navbar-inner {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 32px;
    height: 68px;
    padding: 0 24px;
}

.nav-logo {
    flex-shrink: 0;
}

.nav-logo img {
    height: 55px;
    display: block;
}

.nav-logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--navy);
    text-decoration: none;
    letter-spacing: -0.3px;
}

.nav-logo-text span {
    color: var(--teal);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    flex: 1;
}

.nav-links>li {
    position: relative;
}

.nav-links>li>a {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-800);
    text-decoration: none;
    transition: all var(--transition);
    white-space: nowrap;
}

.nav-links>li>a:hover {
    background: var(--gray-50);
    color: var(--teal);
}

.nav-links>li>a.active {
    color: var(--teal);
}

.dropdown-icon {
    width: 14px;
    height: 14px;
    transition: transform var(--transition);
}

.nav-links>li:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 8px;
    min-width: 220px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all var(--transition);
    z-index: 999;
}

.nav-links>li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    font-size: 13.5px;
    color: var(--gray-800);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.dropdown a:hover {
    background: var(--teal-pale);
    color: var(--teal);
}

.dropdown-icon-sm {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    background: var(--gray-50);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: var(--teal);
    flex-shrink: 0;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    margin-left: auto;
}

.nav-cart-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-800);
    text-decoration: none;
    border: 1px solid var(--border);
    transition: all var(--transition);
    cursor: pointer;
    background: transparent;
}

.nav-cart-btn:hover {
    border-color: var(--teal);
    color: var(--teal);
}

.nav-login-btn {
    padding: 8px 18px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    text-decoration: none;
    transition: all var(--transition);
    border: 1.5px solid var(--gray-200);
}

.nav-login-btn:hover {
    border-color: var(--navy);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: all var(--transition);
}

.mobile-menu {
    display: none;
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 20px 24px;
    position: absolute;
    z-index: 11;
    width: 100%;
    left: 0;
}

.mobile-menu.open {
    display: block;
}

.mobile-nav-links {
    list-style: none;
}

.mobile-nav-links li {
    border-bottom: 1px solid var(--gray-50);
}

.mobile-nav-links a {
    display: block;
    padding: 13px 0;
    font-size: 15px;
    font-weight: 500;
    color: var(--navy);
    text-decoration: none;
}

.mobile-menu-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.mobile-menu-actions .btn {
    flex: 1;
    justify-content: center;
}

/* ===== HERO ===== */
.hero {
    background: var(--navy);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 60% at 70% 50%, rgba(75, 142, 222, 0.18) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 20% 80%, rgba(75, 142, 222, 0.10) 0%, transparent 60%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(75, 142, 222, 0.15);
    border: 1px solid rgba(75, 142, 222, 0.3);
    color: var(--teal-light);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.hero-eyebrow::before {
    content: '';
    width: 7px;
    height: 7px;
    background: var(--teal-light);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.7);
    }
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(36px, 5.5vw, 62px);
    font-weight: 800;
    line-height: 1.08;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-title .accent {
    color: #4b8ede;
}

.hero-title .gold {
    color: var(--gold-light);
}

.hero-desc {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 52px;
    padding-top: 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
}

.hero-stat-num span {
    color: var(--teal-light);
}

.hero-stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 3px;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card-stack {
    position: relative;
    width: 100%;
    max-width: 420px;
}

.hero-main-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-xl);
    padding: 32px;
    backdrop-filter: blur(12px);
}

.hero-card-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--teal), #006B5E);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.hero-card-icon svg {
    width: 26px;
    height: 26px;
    color: white;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.hero-card-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}

.hero-card-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
}

.hero-card-progress {
    margin-top: 24px;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
}

.progress-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--teal), var(--teal-light));
}

.hero-floating-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 14px 18px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-floating-card.fc-1 {
    bottom: -30px;
    left: -30px;
}

.hero-floating-card.fc-2 {
    top: -18px;
    right: -24px;
}

.fc-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.fc-icon.teal {
    background: var(--teal-pale);
}

.fc-icon.gold {
    background: var(--gold-pale);
}

.fc-text-main {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
}

.fc-text-sub {
    font-size: 11px;
    color: var(--text-muted);
}

/* ===== WHY CHOOSE ===== */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-image-wrap {
    position: relative;
}

.why-image-wrap img {
    width: 100%;
    border-radius: var(--radius-xl);
    display: block;
}

.why-image-placeholder {
    width: 100%;
    aspect-ratio:4/3;
    background: linear-gradient(135deg, var(--navy) 0%, var(--slate) 50%, var(--teal) 100%);
    border-radius: var(--radius-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: white;
}

.why-image-placeholder svg {
    width: 64px;
    height: 64px;
    opacity: 0.6;
}
.categories-scroll .category-chip{flex-direction: row;}
.why-stat-badge {
    position: absolute;
    bottom: -28px;
    right: -20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 16px 22px;
    box-shadow: var(--shadow-lg);
    text-align: center;
        display: flex;
    align-items: center;
    gap: 1rem;
}

.why-stat-badge .num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--navy-mid);
    line-height: 1;
    text-align: left;
}

.why-stat-badge .label {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
    text-transform: uppercase;
}

.why-feature {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.why-feature:last-child {
    border-bottom: none;
}

.why-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: var(--teal-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--teal);
    transition: all 0.3s ease-in-out 0s;
}

.why-feature-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.why-feature-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 4px;
}

.why-feature-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== COURSE CARDS ===== */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.course-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.course-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--teal);
}

.course-card-thumb {
    aspect-ratio: 16/9;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, var(--navy), var(--slate-light));
}

.course-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.course-card:hover .course-card-thumb img {
    transform: scale(1.04);
}

.course-card-thumb-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
}

.course-card-thumb-placeholder svg {
    width: 40px;
    height: 40px;
}

.course-card-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.course-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.course-card-body .margin-b{margin-bottom: 1.2rem; color: rgba(10, 47, 107, .6);}

.course-card-category {
    font-size: 11px;
    font-weight: 600;
    color: var(--teal);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
}
.course-card-body .top{display: flex; gap: 1rem; justify-content: space-between; margin-bottom: 12px;}
.course-card-body .top .rating{
    color: var(--navy-mid); font-weight: 700; font-size: 1rem;
}
.course-card-body .course-card-meta{margin-top: 1rem;}
.course-card-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--navy-mid);
    line-height: 1.35;
    margin-bottom: 12px;
    flex: 1;
}

.course-card-instructor {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0;
}

.instructor-avatar {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal), var(--slate));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
    overflow: hidden;
}

.instructor-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.instructor-name {
    font-size: 12px;
    color: var(--text-secondary);
}

.course-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}

.course-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--text-muted);
}

.course-meta-item svg {
    width: 13px;
    height: 13px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.course-price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
}

.course-price .from {
    font-size: 11px;
    font-weight: 400;
    color: var(--text-muted);
}

/* ===== BOOTCAMP SECTION ===== */
.bootcamp-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    transition: all var(--transition);
    text-decoration: none;
    color: inherit;
}

.bootcamp-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.bootcamp-card-thumb {
    width: 200px;
    flex-shrink: 0;
    position: relative;
    background: linear-gradient(135deg, var(--navy), var(--slate-light));
    overflow: hidden;
}

.bootcamp-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bootcamp-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.bootcamp-meta-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.bootcamp-card-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: 12px;
}

.bootcamp-info-row {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.bootcamp-info-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-secondary);
}

.bootcamp-info-item svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}
/* .why-choose-sierratec{
    padding-top: 0;
} */
.why-choose-sierratec .services-grid{
    grid-template-columns: repeat(4, 1fr);
}
.why-choose-sierratec .services-grid .service-card{flex-direction: column; transition: all 0.3s ease-in-out 0s;}
.why-choose-sierratec .services-grid .service-card:hover{    transform: translateY(-4px); box-shadow: 0 10px 30px -10px color-mix(in oklab, var(--brand-blue) 30%, transparent);}
.why-choose-sierratec .services-grid .service-card:hover .why-feature-icon{background-color: var(--teal); color: #fff;}


.bootcamp-price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--teal);
    margin-left: auto;
}

/* ===== STATS BAR ===== */
.stats-bar {
    background: var(--navy);
    padding: 48px 0;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.stat-item {
    text-align: center;
    padding: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item:last-child {
    border-right: none;
}

.stat-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-num span {
    color: var(--teal-light);
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* ===== SUBSCRIBE/PRICING ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pricing-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 36px 32px;
    position: relative;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    background: var(--navy);
    border-color: var(--navy);
    transform: scale(1.04);
}

.pricing-card.featured:hover {
    transform: scale(1.04) translateY(-4px);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 100px;
    white-space: nowrap;
}

.pricing-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 26px;
}

.pricing-icon.bronze {
    background: #FFF0E0;
}

.pricing-icon.gold {
    background: var(--gold-pale);
}

.pricing-icon.silver {
    background: var(--gray-50);
}

.pricing-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.pricing-card.featured .pricing-name {
    color: var(--white);
}

.pricing-tagline {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.pricing-card.featured .pricing-tagline {
    color: rgba(255, 255, 255, 0.5);
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 28px;
}

.pricing-amount {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
}

.pricing-card.featured .pricing-amount {
    color: var(--white);
}

.pricing-per {
    font-size: 14px;
    color: var(--text-muted);
}

.pricing-card.featured .pricing-per {
    color: rgba(255, 255, 255, 0.5);
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
    flex: 1;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-50);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-card.featured .pricing-features li {
    color: rgba(255, 255, 255, 0.7);
    border-bottom-color: rgba(255, 255, 255, 0.06);
}

.check-icon {
    width: 18px;
    height: 18px;
    color: var(--teal);
    flex-shrink: 0;
    margin-top: 1px;
}

.pricing-card.featured .check-icon {
    color: var(--teal-light);
}

/* ===== INSTRUCTOR FINDER ===== */
.finder-section {
    background: var(--navy);
    position: relative;
    overflow: hidden;
    padding: 88px 0;
}
.finder-section .section-heading.light{}

.finder-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(75, 142, 222, 0.2) 0%, transparent 70%);
    right: -100px;
    top: -100px;
    pointer-events: none;
}

.finder-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.finder-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 32px;
    position: relative;
    backdrop-filter: blur(8px);
}

.finder-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.finder-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal), var(--slate));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
    font-weight: 700;
}

.finder-instructor-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
}

.finder-instructor-role {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.finder-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.finder-tag {
    font-size: 11px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 100px;
    background: rgba(75, 142, 222, 0.15);
    color: var(--teal-light);
    border: 1px solid rgba(75, 142, 222, 0.25);
}

.finder-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.stars {
    color: var(--gold-light);
    font-size: 14px;
}

.finder-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all var(--transition);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.testimonial-card::before {
    content: '"';
    font-family: 'Space Grotesk', sans-serif;
    font-size: 80px;
    font-weight: 800;
    color: var(--teal-pale);
    line-height: 1;
    position: absolute;
    top: 10px;
    right: 20px;
}

.testimonial-body {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--teal), var(--slate));
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.2;
}

.testimonial-role {
    font-size: 12px;
    color: var(--text-muted);
}

/* ===== INSTRUCTORS ===== */
.instructors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.instructor-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    text-align: center;
    transition: all var(--transition);
    text-decoration: none;
    color: inherit;
}

.instructor-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--teal);
}

.instructor-card-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    margin: 0 auto 14px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--teal), var(--slate));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    color: white;
}

.instructor-card-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.instructor-card-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.instructor-card-role {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.instructor-card-btn {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--teal);
    border: 1.5px solid var(--teal);
    padding: 6px 14px;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all var(--transition);
}

.instructor-card-btn:hover {
    background: var(--teal);
    color: var(--white);
}

/* ===== PRODUCTS ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.product-card-thumb {
    aspect-ratio: 3/2;
    background: linear-gradient(135deg, var(--navy), var(--slate-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
}

.product-card-thumb svg {
    width: 44px;
    height: 44px;
}

.product-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card-category {
    font-size: 11px;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
}

.product-card-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.35;
    margin-bottom: 10px;
    flex: 1;
}

.product-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}

.product-stars {
    display: flex;
    gap: 2px;
    color: var(--gold);
    font-size: 13px;
}

.product-price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--teal);
}

/* ===== BECOME INSTRUCTOR ===== */
.become-section {
    background: linear-gradient(135deg, var(--teal-pale) 0%, var(--white) 60%, #e8f1fb00 100%);
    padding: 88px 0;
}

.become-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.become-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.become-card-main {
    background: var(--navy);
    border-radius: var(--radius-xl);
    padding: 36px;
    max-width: 320px;
    width: 100%;
}

.become-card-main .icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: rgba(75, 142, 222, 0.15);
    border: 1px solid rgba(75, 142, 222, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--teal-light);
}

.become-card-main .icon-wrap svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.become-mini-stat {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px;
}

.become-mini-stat.ms-1 {
    bottom: -10px;
    right: -10px;
}

.become-mini-stat.ms-2 {
    top: 10px;
    right: -30px;
}

/* ===== NEWSLETTER ===== */
.newsletter-section {
    background: var(--navy);
    padding: 72px 0;
    text-align: center;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 480px;
    margin: 32px auto 0;
}

.newsletter-input {
    flex: 1;
    padding: 14px 20px;
    border-radius: var(--radius-md);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.07);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    outline: none;
    transition: border-color var(--transition);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.newsletter-input:focus {
    border-color: var(--teal);
}

/* ===== ORGANIZATIONS ===== */
.orgs-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.org-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px 32px;
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: inherit;
    transition: all var(--transition);
}

.org-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--teal);
}

.org-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal), var(--navy));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.org-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
}

.org-count {
    font-size: 13px;
    color: var(--text-muted);
}

/* ===== CATEGORIES ===== */
.categories-scroll {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.category-chip {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px 12px;
    text-decoration: none;
    color: inherit;
    transition: all var(--transition);
    /* text-align: center; */
}

.category-chip:hover {
    border-color: var(--teal);
    background: var(--teal-pale);
    transform: translateY(-2px);
}

.category-chip:hover .cat-icon {
    background: var(--teal);
    color: white;
}

.cat-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: var(--gray-50);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all var(--transition);
    color: var(--teal);
}

.cat-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.cat-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy-mid);
    line-height: 1.8;
}

.cat-count {
    font-size: 12px;
    color: var(--text-muted);
}

/* ===== SERVICES ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition);
    text-decoration: none;
    color: inherit;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.service-card:hover {
    border-color: var(--teal);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.service-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: var(--teal-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--teal);
}

.service-icon svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.service-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.service-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.65;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--teal);
    text-decoration: none;
}

.service-link svg {
    width: 14px;
    height: 14px;
    transition: transform var(--transition);
}

.service-card:hover .service-link svg {
    transform: translateX(4px);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--navy);
    padding: 72px 0 0;
    color: rgba(255, 255, 255, 0.65);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    display: block;
    text-decoration: none;
}

.footer-brand-name span {
    color: var(--teal-light);
}

.footer-desc {
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 24px;
    max-width: 280px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all var(--transition);
    font-size: 14px;
}

.social-btn:hover {
    background: var(--teal);
    border-color: var(--teal);
    color: white;
}

.social-btn svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.footer-col-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--teal);
    /* opacity: 0; */
    flex-shrink: 0;
    transition: opacity var(--transition);
}

.footer-links a:hover {
    color: var(--teal-light);
}

.footer-links a:hover::before {
    opacity: 1;
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--teal-light);
}

/* ===== SECTION HEADER ===== */
.section-header {
    margin-bottom: 48px;
}

.section-header.centered {
    text-align: center;
}

.section-header.centered .section-subheading {
    margin-left: auto;
    margin-right: auto;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {

 .nav-links {
        display: none;
    }
     .hamburger {
        display: flex;
    }


    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .instructors-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .categories-scroll {
        grid-template-columns: repeat(4, 1fr);
    }

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item:nth-child(2) {
        border-right: none;
    }

    .stat-item:nth-child(3) {
        border-right: 1px solid rgba(255, 255, 255, 0.08);
    }

    .pricing-card.featured {
        transform: scale(1.02);
    }
}

@media (max-width: 768px) {
    .navbar-inner{
        padding: 0; justify-content: space-between;
    }
    .why-choose-sierratec .services-grid{
            grid-template-columns: repeat(2, 1fr);
    }
    
    .section {
        padding: 60px 0;
    }

    .hero {
        padding: 70px 0 60px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-visual {
        display: none;
    }

    .hero-stats {
        gap: 24px;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .why-image-wrap {
        order: -1;
    }

    .why-stat-badge {
        right: 0;
    }

    .courses-grid {
        grid-template-columns: 1fr;
    }

    .bootcamp-card {
        flex-direction: column;
    }

    .bootcamp-card-thumb {
        width: 100%;
        height: 200px;
    }

    .finder-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .instructors-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .become-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .become-visual {
        order: -1;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .categories-scroll {
        grid-template-columns: repeat(3, 1fr);
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

   

    .nav-actions .nav-login-btn,
    .nav-actions .btn {
        display: none;
    }

   

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .newsletter-form {
        flex-direction: column;
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {

     .why-choose-sierratec .services-grid{
            grid-template-columns: repeat(1, 1fr);
    }
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 32px;
    }

    .categories-scroll {
        grid-template-columns: repeat(1, 1fr);
    }

    .instructors-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stats-row {
        grid-template-columns: 1fr 1fr;
    }

    .orgs-row {
        flex-direction: column;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

.delay-1 {
    animation-delay: 0.1s;
    opacity: 0;
}

.delay-2 {
    animation-delay: 0.2s;
    opacity: 0;
}

.delay-3 {
    animation-delay: 0.3s;
    opacity: 0;
}

.delay-4 {
    animation-delay: 0.4s;
    opacity: 0;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}




/* ==========================
   Video Section
========================== */

.video-section {
    position: relative;
    overflow: hidden;
    padding: 0;
}

.video-section-wrap {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(23, 26, 33, 0.88) 0%,
        rgba(31, 59, 100, 0.80) 100%
    );
    z-index: 1;
        opacity: 0.8;
}

.video-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 88px 24px;
}

.section-label.center {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.section-heading.light {
    max-width: 700px;
    margin: 0 auto 16px;
    color: #ffffff;
}

.video-description {
    max-width: 480px;
    margin: 0 auto 40px;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
}

/* Play Button */

.video-play-btn {
    width: 80px;
    height: 80px;
    border: 4px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    background: var(--teal);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 12px rgba(75, 142, 222, 0.2);
}

.video-play-btn:hover {
    transform: scale(1.1);
}

.video-duration {
    margin-top: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
}

/* Stats */

.video-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 52px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: "Space Grotesk", sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
}

.stat-number span {
    color: var(--teal-light);
}

.stat-label {
    margin-top: 4px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

/* ==========================
   Responsive
========================== */

@media (max-width: 768px) {

    .video-content {
        padding: 72px 20px;
    }

    .video-stats {
        gap: 24px;
    }

    .stat-number {
        font-size: 26px;
    }

    .video-play-btn {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 480px) {

    .video-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .video-section-wrap {
        min-height: auto;
    }

    .video-content {
        padding: 64px 20px;
    }
}




/* ==========================
   Video Modal
========================== */

.video-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;

    align-items: center;
    justify-content: center;

    background: rgba(0, 0, 0, 0.88);

    padding: 20px;
}

.video-modal.active {
    display: flex;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
}

.video-modal-close {
    position: absolute;
    top: -44px;
    right: 0;

    background: transparent;
    border: none;

    color: #fff;
    font-size: 28px;
    cursor: pointer;

    padding: 8px;
    transition: opacity 0.3s ease;
}

.video-modal-close:hover {
    opacity: 0.7;
}

.video-iframe-wrapper {
    position: relative;
    overflow: hidden;

    width: 100%;
    height: 0;

    padding-bottom: 56.25%; /* 16:9 */

    border-radius: var(--radius-lg);
}

.video-iframe {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    border: none;
}

/* ==========================
   Mobile
========================== */

@media (max-width: 768px) {
    .video-modal-content {
        width: 100%;
    }

    .video-modal-close {
        top: -38px;
        font-size: 24px;
    }
}