/* === CANDIDI CUNICU.LI — STICKY TOP NAV === */
:root {
  --black:   #080a0f;
  --dark:    #0d1117;
  --dark2:   #161b22;
  --border:  #21262d;
  --white:   #e6edf3;
  --dim:     #8b949e;
  --accent:  #d4a843;
  --green:   #3fb950;
  --red:     #f85149;
  --blue:    #58a6ff;
  --header-h: 70px;
  --font-display: 'Cinzel', serif;
  --font-mono:    'Share Tech Mono', monospace;
  --font-body:    'Raleway', sans-serif;
}

/* === LIGHT MODE === */
[data-theme="light"] {
  --black:   #ffffff;
  --dark:    #f6f8fa;
  --dark2:   #eaeef2;
  --border:  #d0d7de;
  --white:   #1f2328;
  --dim:     #57606a;
  --accent:  #9a6700;
}
[data-theme="light"] .site-header {
  background: #fff;
  border-bottom-color: var(--border);
}
[data-theme="light"] .site-header.scrolled {
  background: rgba(255,255,255,.97);
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
}
[data-theme="light"] .hero {
  background: linear-gradient(135deg, #fff 0%, #f6f8fa 50%, #eaeef2 100%);
}
[data-theme="light"] .mobile-nav {
  background: #fff;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* === STICKY HEADER === */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--dark);
  border-bottom: 1px solid var(--border);
  transition: all .3s;
}
.site-header.scrolled {
  background: rgba(13,17,23,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0,0,0,.4);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
}

/* Logo */
.header-logo {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .03em;
  color: var(--white);
  transition: color .2s;
}
.header-logo:hover { color: var(--accent); }
.logo-bracket { color: var(--dim); }
.logo-tld { color: var(--accent); }
.logo-rabbit { font-size: 1.1rem; margin: 0 .1rem; }
.logo-dash { color: var(--dim); font-size: .8em; }

/* Desktop Nav */
.header-nav {
  display: flex;
  gap: .3rem;
}
.nav-link {
  font-family: var(--font-mono);
  font-size: .8rem;
  letter-spacing: .05em;
  color: var(--dim);
  padding: .5rem 1rem;
  border-radius: 4px;
  transition: all .2s;
}
.nav-link:hover {
  color: var(--accent);
  background: rgba(212,168,67,.06);
}
.nav-link.active {
  color: var(--accent);
  background: rgba(212,168,67,.1);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.lang-switch {
  font-family: var(--font-mono);
  font-size: .75rem;
  color: var(--dim);
  display: flex;
  align-items: center;
  gap: .4rem;
}
.lang-switch a { transition: color .2s; }
.lang-switch a:hover { color: var(--accent); }
.lang-active { color: var(--accent) !important; font-weight: 700; }
.lang-sep { color: var(--border); }

/* Theme Toggle */
.theme-toggle {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--dim);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all .2s;
}
.theme-toggle:hover {
  border-color: var(--accent);
  color: var(--accent);
}
[data-theme="light"] .theme-toggle .icon-moon { display: none; }
[data-theme="light"] .theme-toggle .icon-sun { display: block; }
[data-theme="dark"] .theme-toggle .icon-sun,
:root .theme-toggle .icon-sun { display: none; }
[data-theme="dark"] .theme-toggle .icon-moon,
:root .theme-toggle .icon-moon { display: block; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1002;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  transition: all .3s;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: var(--header-h);
  right: 0;
  transform: translateX(100%);
  width: 280px;
  height: calc(100vh - var(--header-h));
  height: calc(100dvh - var(--header-h));
  background: var(--dark);
  border-left: 1px solid var(--border);
  z-index: 999;
  transition: transform .3s ease;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.mobile-link {
  font-family: var(--font-mono);
  font-size: .95rem;
  color: var(--dim);
  padding: .75rem 1rem;
  border: 1px solid transparent;
  border-radius: 4px;
  transition: all .2s;
}
.mobile-link:hover {
  color: var(--accent);
  background: rgba(212,168,67,.06);
  border-color: var(--border);
}
.mobile-link.active {
  color: var(--accent);
  background: rgba(212,168,67,.1);
  border-color: rgba(212,168,67,.3);
}
.mobile-footer {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-lang {
  font-family: var(--font-mono);
  font-size: .8rem;
  color: var(--dim);
  display: flex;
  gap: .4rem;
}
.mobile-overlay {
  position: fixed;
  inset: 0;
  top: var(--header-h);
  background: rgba(0,0,0,.7);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all .3s;
}
.mobile-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* === MAIN CONTENT === */
.main-content {
  margin-top: var(--header-h);
  min-height: calc(100vh - var(--header-h));
  display: flex;
  flex-direction: column;
}

/* === HERO === */
.hero {
  min-height: calc(100vh - var(--header-h));
  background: linear-gradient(135deg, var(--black) 0%, #0d1117 50%, #080a0f 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 4rem 2rem;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(212,168,67,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,168,67,.03) 1px, transparent 1px);
  background-size: 50px 50px;
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
}
.hero-logo {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}
.hero-tagline {
  font-family: var(--font-mono);
  font-size: clamp(.8rem, 2vw, 1rem);
  color: var(--accent);
  letter-spacing: .15em;
  margin-bottom: 2rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero-title span { color: var(--accent); }
.hero-sub {
  font-size: 1.1rem;
  color: var(--dim);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* === BUTTONS === */
.btn {
  font-family: var(--font-mono);
  font-size: .85rem;
  letter-spacing: .08em;
  padding: .8rem 2rem;
  border: 2px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  display: inline-block;
  transition: all .25s;
}
.btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--black);
}
.btn-primary:hover {
  background: transparent;
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,168,67,.2);
}
.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--dim);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

/* === SECTIONS === */
.section {
  padding: 5rem 2rem;
  border-top: 1px solid var(--border);
}
.section-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.section-label {
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .2em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: .5rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
}

/* === SERVICE BLOCKS === */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-block {
  background: var(--dark2);
  border: 1px solid var(--border);
  padding: 2rem;
  border-radius: 6px;
  transition: all .25s;
}
.service-block:hover {
  border-color: rgba(212,168,67,.4);
  box-shadow: 0 0 30px rgba(212,168,67,.08);
  transform: translateY(-3px);
}
.service-block h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: .75rem;
}
.service-block p {
  font-size: .9rem;
  color: var(--dim);
  line-height: 1.6;
}

/* === FOOTER === */
.site-footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 700;
  color: var(--white);
}
.footer-text {
  font-family: var(--font-mono);
  font-size: .72rem;
  color: var(--dim);
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}
.footer-sep { color: var(--border); }
.footer-badge {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-mono);
  font-size: .7rem;
  color: var(--dim);
}
.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
  animation: pulse 2s ease infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.3} }

/* === PAGE SECTIONS === */
.page-hero {
  padding: 4rem 2rem 3rem;
  background: linear-gradient(180deg, var(--dark2) 0%, transparent 100%);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.page-hero .section-label {
  margin-bottom: .75rem;
}
.page-hero .section-title {
  margin-bottom: .5rem;
}
.page-hero p {
  color: var(--dim);
  max-width: 600px;
  margin: 0 auto;
}

/* === ABOUT SECTIONS (existing) === */
.about-sidebar { display: none; }
.contact-form-wrap { max-width: 600px; margin: 0 auto; }

/* === RESPONSIVE === */
@media(max-width:900px) {
  .desktop-nav { display: none; }
  .hamburger { display: flex; }
  .lang-switch { display: none; }
}
@media(max-width:600px) {
  :root { --header-h: 60px; }
  .header-inner { padding: 0 1rem; }
  .header-logo { font-size: .85rem; }
  .section { padding: 3rem 1rem; }
  .hero { padding: 3rem 1rem; }
  .mobile-nav { width: 100%; }
  .footer-inner { 
    flex-direction: column; 
    text-align: center;
    gap: .75rem;
  }
}

/* =============================================
   HOME PAGE SPECIFIC STYLES
   ============================================= */

/* === HERO EXTENDED === */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: calc(100vh - var(--header-h));
  padding: 4rem 2rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 30% 50%, rgba(212,168,67,.05) 0%, transparent 50%),
    linear-gradient(135deg, var(--black) 0%, #0d1117 50%, var(--black) 100%);
  z-index: 0;
}
.hero-img-bg {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 45%;
  z-index: 0;
  overflow: hidden;
}
.hero-img-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .35;
  mask-image: linear-gradient(to left, rgba(0,0,0,.6) 0%, transparent 80%);
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,.6) 0%, transparent 80%);
}
.hero-body {
  position: relative;
  z-index: 1;
  max-width: 700px;
}
.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .15em;
  color: var(--accent);
  margin-bottom: 1rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero-title .line2 {
  color: var(--accent);
  display: block;
}
.hero-sub {
  font-family: var(--font-mono);
  font-size: .85rem;
  color: var(--dim);
  margin-bottom: 2rem;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.hero-badge-row {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-mono);
  font-size: .7rem;
  color: var(--dim);
  margin-bottom: 2rem;
}

/* === TERMINAL BOX === */
.hero-terminal-wrap {
  max-width: 680px;
}
.terminal-box {
  background: #0d1117;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  font-family: var(--font-mono);
  font-size: .78rem;
  box-shadow: 0 10px 40px rgba(0,0,0,.4);
}
.terminal-bar {
  background: #161b22;
  padding: .5rem .75rem;
  display: flex;
  align-items: center;
  gap: .4rem;
  border-bottom: 1px solid var(--border);
}
.t-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.t-dot.red { background: #f85149; }
.t-dot.yellow { background: #d29922; }
.t-dot.green { background: #3fb950; }
.t-title {
  margin-left: auto;
  font-size: .65rem;
  color: var(--dim);
}
.terminal-body {
  padding: 1rem;
  line-height: 1.6;
  color: var(--white);
  min-height: 260px; height: auto; overflow: visible;
}
.t-prompt {
  color: var(--green);
}
.t-cmd {
  color: var(--white);
}
.t-cursor {
  color: var(--accent);
  animation: blink 1s step-end infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }
.t-out {
  color: var(--dim);
  margin-top: .5rem;
  white-space: pre-wrap;
}

/* === HOME SECTIONS === */
.home-section {
  padding: 5rem 2rem;
  border-top: 1px solid var(--border);
  max-width: 1100px;
  margin: 0 auto;
}
.home-section .section-label {
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .2em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: .5rem;
}
.home-section .section-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
}

/* === SERVICES GRID === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}
.service-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  padding: 1.75rem;
  border-radius: 6px;
  transition: all .25s;
}
.service-card:hover {
  border-color: rgba(212,168,67,.4);
  box-shadow: 0 0 25px rgba(212,168,67,.08);
  transform: translateY(-3px);
}
.service-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: .6rem;
}
.service-card p {
  font-size: .85rem;
  color: var(--dim);
  line-height: 1.6;
}

/* === ABOUT GRID === */
.about-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  align-items: center;
}
.about-img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  border: 1px solid var(--border);
  opacity: .9;
}
.about-text p {
  color: var(--dim);
  font-size: .95rem;
  line-height: 1.7;
}

/* === ACSCA GRID === */
.acca-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 3rem;
  align-items: start;
}
.acca-features {
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.acca-feat {
  font-family: var(--font-mono);
  font-size: .8rem;
  color: var(--dim);
}
.acca-logos {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.acca-logo {
  height: 60px;
  width: auto;
  border-radius: 6px;
  border: 1px solid var(--border);
  opacity: .85;
}
.owl-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.owl-img {
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: 8px;
  border: 1px solid var(--border);
  opacity: .85;
  transition: opacity .3s;
}
.owl-img:hover {
  opacity: 1;
}

/* === DOWNLOADS === */
.downloads-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.dl-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  padding: 1.5rem;
  border-radius: 6px;
  transition: all .25s;
}
.dl-card:hover {
  border-color: rgba(212,168,67,.3);
}
.dl-icon {
  font-size: 1.5rem;
  margin-bottom: .75rem;
}
.dl-title {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: .4rem;
}
.dl-desc {
  font-size: .8rem;
  color: var(--dim);
  margin-bottom: .75rem;
}
.dl-tags {
  display: flex;
  gap: .4rem;
  margin-bottom: 1rem;
}
.dl-tag {
  font-family: var(--font-mono);
  font-size: .65rem;
  background: var(--dark);
  border: 1px solid var(--border);
  padding: .2rem .5rem;
  border-radius: 3px;
  color: var(--dim);
}
.dl-btn {
  font-size: .75rem;
  padding: .5rem 1rem;
}
.dl-warning {
  margin-top: 2rem;
  padding: 1rem;
  background: rgba(248,81,73,.08);
  border: 1px solid rgba(248,81,73,.2);
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: .78rem;
  color: var(--red);
  text-align: center;
}

/* === RESPONSIVE HOME === */
@media(max-width:900px) {
  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about-img {
    max-width: 250px;
    margin: 0 auto;
  }
  .acca-grid {
    grid-template-columns: 1fr;
  }
  .owl-stack {
    flex-direction: row;
    justify-content: center;
  }
  .owl-img {
    max-width: 150px;
  }
  .hero-img-bg {
    width: 100%;
    opacity: .1;
  }
}
@media(max-width:600px) {
  .home-section {
    padding: 3rem 1rem;
  }
  .hero {
    padding: 2.5rem 1rem;
  }
  .hero-terminal-wrap {
    max-width: 100%;
  }
  .terminal-box {
    font-size: .7rem;
  }
  .acca-logos {
    flex-direction: column;
    align-items: center;
  }
  .owl-stack {
    flex-direction: column;
    align-items: center;
  }
  .owl-img {
    max-width: 200px;
  }
}

/* =============================================
   PAGE HEADER (academy)
   ============================================= */
.page-header {
  padding: 3rem 2rem 2rem;
  background: linear-gradient(180deg, var(--dark2) 0%, transparent 100%);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.page-eyebrow {
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .2em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: .5rem;
}
.page-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: .5rem;
}
.page-title span { color: var(--accent); }
.page-sub {
  color: var(--dim);
  max-width: 600px;
  margin: 0 auto;
}

/* =============================================
   ACADEMY PAGE
   ============================================= */
.academy-page {
  max-width: 1000px;
  margin: 0 auto;
  padding: 3rem 2rem;
}
.academy-hero-wrap {
  width: 100%;
  height: 360px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--border);
  margin-bottom: 2rem;
}
.academy-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

/* Content card (markdown wrapper) */
.content-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}
.content-card p { color: var(--dim); line-height: 1.7; margin-bottom: .75rem; }
.content-card ul, .content-card ol { color: var(--dim); padding-left: 1.5rem; margin-bottom: .75rem; }
.content-card li { margin-bottom: .3rem; line-height: 1.6; }
.content-card strong { color: var(--white); font-weight: 600; }
.content-card em { color: var(--accent); font-style: italic; }

/* Module cards */
.academy-modules {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.module-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.75rem;
  transition: all .25s;
}
.module-card:hover {
  border-color: rgba(212,168,67,.4);
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(212,168,67,.08);
}
.module-num {
  font-family: var(--font-mono);
  font-size: .65rem;
  letter-spacing: .15em;
  color: var(--accent);
  margin-bottom: .5rem;
}
.module-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: .6rem;
}
.module-desc {
  font-size: .85rem;
  color: var(--dim);
  line-height: 1.6;
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-section {
  max-width: 950px;
  margin: 0 auto;
  padding: 3rem 2rem;
}
.about-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.about-info-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.5rem;
  text-align: center;
  transition: all .25s;
}
.about-info-card:hover {
  border-color: rgba(212,168,67,.4);
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(212,168,67,.06);
}
.about-info-card .card-icon { font-size: 1.8rem; margin-bottom: .75rem; }
.about-info-card .card-title {
  font-family: var(--font-display);
  font-size: .95rem;
  color: var(--white);
  margin-bottom: .3rem;
}
.about-info-card .card-text { font-size: .82rem; color: var(--dim); line-height: 1.5; }

.about-content-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2.5rem;
  margin-bottom: 2rem;
}
.about-content-card h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.about-content-card p {
  color: var(--dim);
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: .75rem;
}
.about-owl-row {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.about-owl-row .owl-img { max-width: 220px; }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-section-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 2rem;
}
.contact-video-wrap {
  width: 100%;
  height: 280px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--border);
  margin-bottom: 2.5rem;
  position: relative;
}
.contact-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.contact-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(8,10,15,.8) 100%);
  pointer-events: none;
}
.contact-info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.contact-info-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.25rem;
  text-align: center;
}
.ci-label {
  font-family: var(--font-mono);
  font-size: .63rem;
  letter-spacing: .15em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: .4rem;
}
.ci-value { font-size: .9rem; color: var(--white); line-height: 1.5; }
.ci-value a { color: var(--accent); }
.ci-value a:hover { text-decoration: underline; }

.contact-form-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2.5rem;
}
.contact-form-card h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: .5rem;
}
.contact-form-card > p {
  color: var(--dim);
  font-size: .9rem;
  margin-bottom: 1.5rem;
}
.contact-form { width: 100%; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .1em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: .4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: .75rem 1rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: .9rem;
  transition: border-color .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.form-group select { cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note {
  font-family: var(--font-mono);
  font-size: .7rem;
  color: var(--dim);
  margin-top: 1rem;
}

@media(max-width:600px) {
  .academy-hero-wrap { height: 220px; }
  .about-content-card, .contact-form-card { padding: 1.5rem; }
  .contact-video-wrap { height: 200px; }
}
