/* ─── Scroll Progress ────────────────────────────────── */
.scroll-progress {
    position: absolute;
    bottom: 0; right: 0;
    width: 0%; height: 3px;
    background: linear-gradient(to left, var(--primary-purple), #a855f7);
    z-index: 10005;
    transition: width 0.1s ease-out;
}

/* ─── Nav Wrapper ────────────────────────────────────── */
.nav-wrapper {
    position: sticky;
    top: 0; z-index: 1000;
    background: var(--bg-white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
[data-theme="dark"] .nav-wrapper { background: #0f172a; border-bottom: 1px solid #1e293b; }

header { padding: 0.75rem 0; }
header nav { display: flex; justify-content: space-between; align-items: center; }

.logo { display: flex; align-items: center; gap: 0.75rem; font-size: 1.35rem; font-weight: 900; color: var(--text-navy); text-decoration: none; }
[data-theme="dark"] .logo { color: white; }
.logo-icon { width: 40px; height: 40px; background: var(--primary-red); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.1rem; }

.main-nav-links { display: flex; gap: 2rem; list-style: none; margin: 0 2rem; }
.main-nav-links a { 
    color: var(--text-muted); 
    text-decoration: none; 
    font-weight: 700; 
    font-size: 0.95rem; 
    transition: var(--transition); 
    position: relative;
    padding: 5px 0;
}
.main-nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--primary-purple);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}
.main-nav-links a:hover::after, 
.main-nav-links a.active::after { 
    width: 100%; 
}
.main-nav-links a:hover, .main-nav-links a.active { color: var(--primary-purple); }
[data-theme="dark"] .main-nav-links a { color: #94a3b8; }

.nav-actions-group { display: flex; align-items: center; gap: 1.5rem; }
.nav-actions-dynamic { display: flex; align-items: center; gap: 1rem; }
/* From Uiverse.io by alexruix - Modified */
/* Premium Sun-to-Moon Morph Switcher */
.switch {
  font-size: 14.45px;
  position: relative;
  display: inline-block;
  width: 3.5em;
  height: 2em;
  --switch-bg-light: linear-gradient(135deg, #94deff 0%, #65b5de 100%);
  --switch-bg-dark: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
  --mask-color: #191743; /* Matches the dark gradient on the right side */
}

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

/* The background track of the switcher */
.switch__background {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 30px;
  background: var(--switch-bg-light);
  border: 1.5px solid #b3e5fc;
  transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] .switch__background {
  background: var(--switch-bg-dark);
  border-color: #312e81;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.4);
}

/* The moving sun/moon container knob */
.switch__icon {
  display: block;
  position: absolute;
  top: 0.15em;
  left: 0.15em;
  width: 1.7em;
  height: 1.7em;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
  filter: drop-shadow(0 2px 4px rgba(99, 102, 241, 0.15));
}

[data-theme="dark"] .switch__icon {
  filter: drop-shadow(0 2px 6px rgba(99, 102, 241, 0.3));
}

/* Move knob to the right side on checked / dark mode */
input.switch__input:checked ~ .switch__icon {
  transform: translateX(1.5em);
}

.switch__icon-part {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

.switch__icon-part--1,
.switch__icon-part--2,
.switch__icon-part--3 {
  border-radius: 50%;
}

/* Sun core - Minimalist modern glowing sun */
.switch__icon-part--1 {
  background-color: #ffd000; /* Pure, bright sun yellow for contrast on blue */
  top: calc(50% - 0.7em);
  left: calc(50% - 0.7em);
  width: 1.4em;
  height: 1.4em;
  z-index: 2;
  /* Prepare inner shadow transition, no outer glow */
  box-shadow: 0 0 0px transparent, inset 0 0 0 0 #ffd000;
}

[data-theme="dark"] .switch__icon-part--1 {
  background-color: transparent; /* Makes the center transparent so the track gradient shows through! */
  /* Remove outer glow and create a perfectly scaled solid crescent moon */
  box-shadow: 0 0 0px transparent, inset 0.48em -0.48em 0px 0px #fef08a;
}

/* Hide the old mask completely */
.switch__icon-part--2 {
  display: none;
}

[data-theme="dark"] .switch__icon-part--2 {
  display: none;
}

/* Hide outer helper scale in both modes */
.switch__icon-part--3 {
  width: 1.7em;
  height: 1.7em;
  transform: scale(0);
  z-index: 1;
}

/* Hide all rays for a minimalist design */
.switch__icon-part--3 ~ .switch__icon-part {
  display: none;
}

.wallet-badge {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: #faf5ff;
    padding: 0.3rem 0.8rem;
    border-radius: 10px;
    border: 1px solid #e9d5ff;
}
[data-theme="dark"] .wallet-badge {
    background: #2e1065;
    border-color: #581c87;
}
[data-theme="dark"] .wallet-badge i,
[data-theme="dark"] .wallet-badge span {
    color: #dbd1ff !important;
}

/* ─── Hamburger Button & Mobile Drawer ─────────────── */
.hamburger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    color: var(--text-navy);
    font-size: 1.5rem;
    padding: 10px;
    transition: var(--transition);
}
[data-theme="dark"] .hamburger-btn { color: white; }

.nav-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.nav-drawer-overlay.active { opacity: 1; pointer-events: auto; }

.nav-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    height: 100dvh;
    background: var(--bg-white);
    z-index: 999999;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}
[data-theme="dark"] .nav-drawer { background: #0f172a; border-left: 1px solid #1e293b; }
.nav-drawer.active { transform: translateX(0); }

.nav-drawer-header {
    display: flex;
    justify-content: flex-end;
    padding: 1rem;
    border-bottom: 1px solid var(--border);
}
.nav-drawer-close {
    background: none;
    border: none;
    cursor: pointer;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-navy);
    font-size: 1.5rem;
}
[data-theme="dark"] .nav-drawer-close { color: white; }

.nav-drawer-links { list-style: none; padding: 0; flex: 1; }
.nav-drawer-links li { border-bottom: 1px solid var(--border); }
.nav-drawer-links a {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    min-height: 48px;
    color: var(--text-navy);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
}
.nav-drawer-links a:hover,
.nav-drawer-links a.active {
    color: var(--primary-purple);
    background: rgba(99,102,241,0.05);
}
[data-theme="dark"] .nav-drawer-links a { color: #e2e8f0; }
[data-theme="dark"] .nav-drawer-links a:hover,
[data-theme="dark"] .nav-drawer-links a.active {
    color: var(--primary-purple);
    background: rgba(99,102,241,0.1);
}

body.nav-drawer-open { overflow: hidden; }
body.nav-drawer-open .nav-wrapper { z-index: 999999; }

@media (max-width: 1150px) {
    .main-nav-links { display: none; }
    .hamburger-btn { display: flex; }
    
    .hero-actions { flex-direction: column; width: 100%; }
    .hero-actions .btn { width: 100%; justify-content: center; display: flex; align-items: center; }
}

@media (max-width: 690px) {
    .nav-actions-group { gap: 0.75rem; }
    .nav-actions-dynamic { display: none !important; }
}

/* ─── Hero ───────────────────────────────────────────── */
.hero {
    position: relative;
    padding: 8rem 0;
    background: var(--bg-white);
}

[data-theme="dark"] .hero { background: var(--sector-bg-dark, #0f172a); }
[data-theme="dark"] .final-cta { background: var(--sector-bg-dark) !important; }
[data-theme="dark"] #sectors-container section[id^="sector-"] { background: var(--sector-bg-dark, #0f172a) !important; }

.hero .container {
    position: relative;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 5rem;
}

.hero-content { text-align: right; }

@keyframes slideUpFadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes popInScale {
    from { opacity: 0; transform: scale(0.9) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.hero-content h1 {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-navy);
    opacity: 0;
}

.animate-hero .hero-content h1 {
    animation: slideUpFadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.1s;
}

[data-theme="dark"] .hero-content h1 { color: white; }

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 600px;
    line-height: 1.7;
    opacity: 0;
    white-space: pre-wrap;
}

.animate-hero .hero-content p {
    animation: slideUpFadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.3s;
}

.hero-actions { 
    display: flex; 
    gap: 1.5rem; 
    opacity: 0;
}

.animate-hero .hero-actions {
    animation: slideUpFadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.5s;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    width: 480px;
    height: 480px;
    opacity: 0;
    margin-top: 3rem;
}

.animate-hero .hero-image-wrapper {
    animation: popInScale 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.4s;
}

.circle-bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
    border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: none;
    animation: blobMorph 10s ease-in-out infinite alternate;
    z-index: 1;
}

[data-theme="dark"] .circle-bg {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
}

@keyframes blobMorph {
    0% { border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%; }
    100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
}

.hero-image img {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(12%);
    height: 140%;
    width: auto;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

/* The masked image (bottom part) */
.hero-img-masked {
    z-index: 2;
}

/* The popout image (head part) */
.hero-img-popout {
    z-index: 10;
    clip-path: polygon(0 0, 100% 0, 100% 48%, 0 48%); 
}

.hero-image-wrapper:hover img {
    transform: translateX(-50%) translateY(10%) scale(1.08);
}

@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@400&display=swap');

@media (max-width: 992px) {
    .hero { padding: 6rem 0; }
    .hero .container {
        display: flex;
        flex-direction: column-reverse;
        gap: 3rem;
    }
    .hero-content { text-align: center; }
    .hero-content p { max-width: 100%; margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-image-wrapper { width: 380px; height: 380px; }
}
@media (max-width: 768px) {
    .hero { padding: 5rem 0; }
    .hero-content h1 { font-size: 2.5rem; }
    .hero-image-wrapper { width: 320px; height: 320px; }
}
@media (max-width: 576px) {
    .hero .container { gap: 2rem; }
    .hero-content h1 { font-size: 2rem; }
    .hero-content p { max-width: 100%; }
    .hero-image-wrapper { width: 280px; height: 280px; }
}
@media (max-width: 480px) {
    .hero { padding: 4rem 0; }
    .hero-actions { flex-direction: column; width: 100%; }
    .hero-actions .btn { width: 100%; text-align: center; }
}

/* ─── Section Titles ─────────────────────────────────── */
.section-title-premium { text-align: center; margin-bottom: 5rem; position: relative; display: flex; flex-direction: column; align-items: center; }
.section-title-premium h2 { font-size: 2.75rem; font-weight: 800; color: #1e1b4b; display: flex; align-items: center; justify-content: center; gap: 1rem; position: relative; z-index: 2; }
.section-title-premium h2::before { content: "<"; font-family: 'Fira Code', monospace; color: #38bdf8; font-weight: 400; opacity: 0.7; }
.section-title-premium h2::after { content: " />"; font-family: 'Fira Code', monospace; color: #38bdf8; font-weight: 400; opacity: 0.7; }
.section-title-premium h2 span { color: #6366f1; }

[data-theme="dark"] .section-title-premium h2 { color: white; }

/* ─── Responsive Typography ─────────────────────────── */
@media (max-width: 768px) {
    .hero-content h1 { font-size: 3.5rem; }
    .section-title-premium h2 { font-size: 2.25rem; }
}
@media (max-width: 480px) {
    .hero-content h1 { font-size: 2.5rem; }
    .section-title-premium h2 { font-size: 1.75rem; }
}

@media (max-width: 768px) {
    .section-title-premium h2 { font-size: 1.8rem; gap: 0.5rem; }
}
@media (max-width: 576px) {
    .section-title-premium { margin-bottom: 3rem; }
    .section-title-premium h2 { font-size: 1.35rem; }
}

/* ─── Course Grid ────────────────────────────────────── */
.course-section-full { width: 100%; padding-top: 5rem; padding-bottom: 5rem; max-width: 1200px; margin: 0 auto; }
.course-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; width: 100%; align-items: start; }
@media (max-width: 1200px) { .course-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .course-grid { grid-template-columns: 1fr; } }
[data-theme="dark"] .carousel-outer-wrapper { background: var(--slide-bg-dark, #1e293b); }

/* ─── Grades Grid ────────────────────────────────────── */
.grades-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
@media (max-width: 1024px) { .grades-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .grades-grid { grid-template-columns: 1fr; } }

/* ─── Features Grid ──────────────────────────────────── */
.features-grid-new { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem; }
.features-grid-new > div:nth-child(1) .f-icon-circle i { animation-delay: 0s; }
.features-grid-new > div:nth-child(2) .f-icon-circle i { animation-delay: 0.7s; }
.features-grid-new > div:nth-child(3) .f-icon-circle i { animation-delay: 1.4s; }
.features-grid-new > div:nth-child(4) .f-icon-circle i { animation-delay: 2.1s; }
@media (max-width: 1024px) { .features-grid-new { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .features-grid-new { grid-template-columns: repeat(2, 1fr); } }

/* ─── Footer ─────────────────────────────────────────── */
.main-footer { background: #f8fafc; padding: 5rem 0 2rem; border-top: 1px solid #e2e8f0; margin-top: 5rem; }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3rem; margin-bottom: 4rem; }
.footer-col h4 { color: #991b1b; font-size: 1.2rem; font-weight: 800; margin-bottom: 2rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 1rem; }
.footer-links a { color: #475569; text-decoration: none; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); font-weight: 600; display: flex; align-items: center; gap: 0.75rem; }
.footer-links a:hover { color: var(--primary-red); transform: translateX(-8px); }
.social-icon { font-size: 1.2rem; transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.footer-links a:hover .social-icon { transform: scale(1.2) rotate(8deg); }
.fb-icon { color: #1877f2; } .ig-icon { color: #e4405f; } .wa-icon { color: #25d366; } .yt-icon { color: #ff0000; } .tk-icon { color: #1e293b; } .tg-icon { color: #0088cc; }
[data-theme="dark"] .tk-icon { color: #ffffff; }
.footer-btn-help { border: 1px solid #cbd5e1; padding: 1rem; text-align: center; border-radius: 8px; color: #64748b; text-decoration: none; display: block; font-weight: 700; transition: var(--transition); }
.footer-btn-help:hover { background: #f8fafc; border-color: #94a3b8; }

.info-page { padding: 3rem 0 5rem; min-height: 60vh; }
.info-page-header { text-align: center; margin-bottom: 3rem; }
.info-page-header h1 { font-size: 2.5rem; font-weight: 900; color: var(--text-navy, #1e1b4b); margin-bottom: 1rem; }
[data-theme="dark"] .info-page-header h1 { color: #f8fafc; }
.info-page-intro { font-size: 1.1rem; color: #64748b; max-width: 700px; margin: 0 auto auto; line-height: 1.8; }

.info-page-layout { display: flex; gap: 2.5rem; align-items: flex-start; margin-top: 2rem; }
.info-tabs-sidebar { flex: 0 0 260px; position: sticky; top: 2rem; }
.info-tabs-list { list-style: none; padding: 0.5rem; margin: 0; display: flex; flex-direction: column; gap: 0.35rem; background: #fff; border: 1px solid #e2e8f0; border-radius: 14px; box-shadow: 0 1px 3px rgba(0,0,0,0.04); }
[data-theme="dark"] .info-tabs-list { background: #1e293b; border-color: #334155; }
.info-tab-item { padding: 0.75rem 1rem; cursor: pointer; font-weight: 700; font-size: 0.9rem; color: #64748b; transition: all 0.2s ease; border-radius: 10px; position: relative; }
.info-tab-item:hover { background: #f1f5f9; color: var(--text-navy, #1e1b4b); }
.info-tab-item.active { background: #fef2f2; color: var(--primary-red, #f43f5e); }
[data-theme="dark"] .info-tab-item { color: #94a3b8; }
[data-theme="dark"] .info-tab-item:hover { background: #0f172a; color: #f1f5f9; }
[data-theme="dark"] .info-tab-item.active { background: rgba(244,63,94,0.1); color: #fca5a5; }

.info-content { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 1.25rem; }
.info-content-placeholder { text-align: center; color: #94a3b8; padding: 3rem; font-size: 1.1rem; }

.info-section-card { padding: 1.5rem 2rem; background: #f8fafc; border-radius: 12px; border: 1px solid #e2e8f0; transition: all 0.2s ease; }
.info-section-card:hover { border-color: #cbd5e1; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
[data-theme="dark"] .info-section-card { background: #1e293b; border-color: #334155; }
[data-theme="dark"] .info-section-card:hover { border-color: #475569; }
.info-section-card-heading { font-size: 1.15rem; font-weight: 800; color: var(--text-navy, #1e1b4b); margin-bottom: 0.75rem; }
[data-theme="dark"] .info-section-card-heading { color: #f1f5f9; }
.info-section-card-content p { color: #475569; line-height: 1.8; font-size: 0.95rem; }
[data-theme="dark"] .info-section-card-content p { color: #cbd5e1; }

@media (max-width: 768px) {
  .info-page-layout { flex-direction: column; gap: 1rem; }
  .info-tabs-sidebar { flex: none; width: 100%; position: static; }
  .info-tabs-list { flex-direction: row; overflow-x: auto; border-radius: 10px; padding: 0.35rem; }
  .info-tab-item { white-space: nowrap; font-size: 0.8rem; flex-shrink: 0; }
  .info-tab-item.active { box-shadow: inset 0 -2px 0 var(--primary-red, #f43f5e); }
}
.footer-bottom { padding-top: 2rem; border-top: 1px solid #e2e8f0; text-align: center; color: #1e1b4b; font-weight: 800; }
[data-theme="dark"] .main-footer { background: #0f172a; border-color: #1e293b; }
[data-theme="dark"] .footer-bottom { border-color: #1e293b; color: white; }
/* 📱 Social Media Icons (Footer) 📱 */
.social-mobile { display: none !important; }
.social-desktop { display: block !important; }

@media (max-width: 1024px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-col { text-align: center; align-items: center !important; }
    .footer-links a { justify-content: center; }
    .social-icon { font-size: 1.5rem; }
    .main-footer { padding: 3rem 0 2rem; }
    .footer-bottom { padding-bottom: 5rem; font-size: 0.9rem; line-height: 1.6; }
    .social-desktop { display: none !important; }
    .social-mobile { display: flex !important; }
}

.social-icons-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: white;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    text-decoration: none !important;
}

/* Brand Colors */
.yt-circle { color: #ff0000; }
.fb-circle { color: #1877f2; }
.ig-circle { color: #e1306c; }
.wa-circle { color: #25d366; }
.tk-circle { color: #000000; }
.tg-circle { color: #0088cc; }

.social-circle:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    color: white !important;
}

/* Brand Backgrounds on Hover */
.yt-circle:hover { background: #ff0000; }
.fb-circle:hover { background: #1877f2; }
.ig-circle:hover { background: #e1306c; }
.wa-circle:hover { background: #25d366; }
.tk-circle:hover { background: #000000; }
.tg-circle:hover { background: #0088cc; }

[data-theme="dark"] .social-circle {
    background: #1e293b;
}

[data-theme="dark"] .tk-circle {
    color: #f1f5f9;
}

[data-theme="dark"] .tk-circle:hover {
    background: #475569;
}

@media (max-width: 600px) {
    .social-icons-row {
        justify-content: center;
        gap: 0.8rem;
    }
}

/* ─── Responsive Whitespace Reductions ────────────── */
@media (max-width: 768px) {
    .course-section-full { padding-top: 3rem; padding-bottom: 3rem; }
    .final-cta { padding: 2rem 0 3rem; }
    [data-theme="dark"] .final-cta { padding: 2rem 0 3rem; }
}
@media (max-width: 480px) {
    .course-section-full { padding-top: 2rem; padding-bottom: 2rem; }
    .hero { padding: 3rem 0; }
    [data-theme="dark"] .hero { padding: 3rem 0; }
    .course-grid { gap: 1.5rem; }
    .features-grid-new { gap: 1rem; }
    .final-cta { padding: 2rem 0 2rem; }
    [data-theme="dark"] .final-cta { padding: 2rem 0 2rem; }
}
@media (max-width: 400px) {
    .hero-content h1 { font-size: 1.6rem; }
    [data-theme="dark"] .hero-content h1 { font-size: 1.6rem; }
    .btn-hero { padding: 0.75rem 1.5rem; font-size: 1rem; }
}

/* ─── Global Sector Spacing Reductions ────────────── */
#sectors-container section[id^="sector-"] {
    padding: 3.5rem 0 !important;
}

@media (max-width: 768px) {
    #sectors-container section[id^="sector-"] {
        padding: 2.5rem 0 !important;
    }
}

@media (max-width: 480px) {
    #sectors-container section[id^="sector-"] {
        padding: 1.5rem 0 !important;
    }
}

/* ─── Ultra-Wide / TV Scaling ──────────────────────── */
@media (min-width: 1600px) {
    .container {
        margin: 0 auto;
    }
}
@media (min-width: 2000px) {
    .container {
        max-width: 1600px;
        margin: 0 auto;
    }
    .hero .container {
        gap: 8rem;
    }
    .hero-content h1 {
        font-size: 6rem;
    }
}
