/* ===================================================================
   AREWATECHUB — style.css
   Theme: White/Light background, Red #C41E28 primary
   =================================================================== */

/* ===== VARIABLES ===== */
:root {
  --red:        #C41E28;
  --red-dark:   #901822;
  --red-light:  #E8232F;
  --black:      #0A0A0A;
  --dark:       #111111;
  --dark-2:     #1A1A1A;
  --dark-3:     #222222;
  --gray-900:   #1E1E1E;
  --gray-800:   #2A2A2A;
  --gray-700:   #3A3A3A;
  --gray-600:   #555555;
  --gray-500:   #777777;
  --gray-400:   #999999;
  --gray-300:   #BBBBBB;
  --gray-200:   #DDDDDD;
  --gray-100:   #F0F0F0;
  --white:      #FFFFFF;

  /* Light theme surfaces */
  --bg:         #FFFFFF;
  --bg-soft:    #F8F8F8;
  --bg-alt:     #F2F2F2;
  --text:       #1A1A1A;
  --text-sub:   #555555;
  --border-col: #E5E5E5;

  --font-display: 'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --font-mono:    'Space Mono', monospace;

  --transition:   all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  --shadow-sm:    0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:    0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg:    0 24px 64px rgba(0,0,0,0.15);
  --shadow-red:   0 8px 32px rgba(196,30,40,0.25);

  --border:       1px solid var(--border-col);
  --border-red:   1px solid rgba(196,30,40,0.3);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg-alt); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 2px; }

/* ===== UTILITY ===== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section     { padding: 100px 0; }
.section-sm  { padding: 60px 0; }

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(196,30,40,0.08);
  border: var(--border-red);
  padding: 6px 14px;
  border-radius: 100px;
}
.tag::before { content: '//'; opacity: 0.6; }

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 16px;
  color: var(--text);
}
.section-subtitle {
  color: var(--text-sub);
  font-size: 1.1rem;
  max-width: 580px;
  line-height: 1.7;
}
.text-red   { color: var(--red); }
.text-gray  { color: var(--text-sub); }
.text-white { color: var(--white); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow-red);
}
.btn-primary:hover {
  background: var(--red-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(196,30,40,0.4);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border-col);
}
.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
  background: rgba(196,30,40,0.06);
}
.btn-ghost {
  background: transparent;
  color: var(--text-sub);
  padding: 14px 0;
}
.btn-ghost:hover { color: var(--text); }
.btn-sm  { padding: 10px 20px; font-size: 12px; }
.btn-lg  { padding: 18px 36px; font-size: 15px; }

/* ===== TOP BAR ===== */
.topbar {
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 10px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; }
.topbar-links { display: flex; gap: 28px; }
.topbar-links a {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.6); transition: var(--transition);
}
.topbar-links a:hover { color: var(--white); }
.topbar-links i { color: var(--red); font-size: 12px; }
.topbar-right { display: flex; gap: 16px; align-items: center; }
.topbar-social a {
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 11px; color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.topbar-social a:hover {
  border-color: var(--red); color: var(--red);
  background: rgba(196,30,40,0.1);
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.99);
  box-shadow: var(--shadow-md);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo img { height: 44px; width: auto; }
.logo-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}
.logo-text span { color: var(--red); }

.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 14px;
  font-size: 13.5px; font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  letter-spacing: 0.01em;
}
.nav-link:hover, .nav-link.active {
  color: var(--red);
  background: rgba(196,30,40,0.06);
}
.nav-link i { font-size: 10px; opacity: 0.5; }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius-md);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
  z-index: 100;
}
.nav-item:hover .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; font-size: 13px; color: var(--text-sub);
  border-radius: var(--radius-sm); transition: var(--transition);
}
.dropdown a:hover { background: rgba(196,30,40,0.07); color: var(--red); }
.dropdown a i { width: 18px; color: var(--red); font-size: 12px; }

.nav-actions { display: flex; align-items: center; gap: 12px; }

/* ===== HAMBURGER — always visible ===== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  padding: 6px;
  background: var(--red);
  border-radius: var(--radius-sm);
  border: none;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== MOBILE NAV OVERLAY ===== */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 80px 28px 40px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.mobile-nav.open { opacity: 1; visibility: visible; }

.mobile-nav-links {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
}
.mobile-nav-links a {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-sub);
  padding: 14px 0;
  border-bottom: var(--border);
  transition: var(--transition);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-nav-links a:hover { color: var(--red); padding-left: 8px; }
.mobile-nav-links a span { font-size: 13px; color: var(--red); }

.mobile-nav-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 44px; height: 44px;
  background: var(--red);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--white);
  cursor: pointer; transition: var(--transition);
  border: none;
}
.mobile-nav-close:hover { background: var(--red-dark); }

.mobile-nav-actions {
  margin-top: 32px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.mobile-nav-actions .btn { flex: 1; justify-content: center; min-width: 140px; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(196,30,40,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 5% 90%,  rgba(196,30,40,0.04) 0%, transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--border-col) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-col) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.4;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
.hero-line {
  position: absolute; left: 0; width: 4px; height: 100%;
  background: linear-gradient(to bottom, transparent, var(--red), transparent);
  animation: scanLine 4s linear infinite;
  opacity: 0.3;
}
@keyframes scanLine { 0% { left: -10px; } 100% { left: 110%; } }

.hero .container {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
}
.hero-content { max-width: 600px; }
.hero-eyebrow  { margin-bottom: 28px; animation: fadeUp 0.6s ease both; }
.hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  margin-bottom: 24px;
  animation: fadeUp 0.6s 0.1s ease both;
}
.hero-title .line { display: block; }
.hero-title .highlight {
  color: var(--red);
  position: relative;
}
.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0;
  width: 100%; height: 3px;
  background: var(--red);
  border-radius: 2px;
}
.hero-desc {
  font-size: 1.1rem;
  color: var(--text-sub);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 500px;
  animation: fadeUp 0.6s 0.2s ease both;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.6s 0.3s ease both;
}
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: var(--border);
  animation: fadeUp 0.6s 0.4s ease both;
  flex-wrap: wrap;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
}
.hero-stat-num span { color: var(--red); }
.hero-stat-label {
  font-size: 12px;
  color: var(--text-sub);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* Hero visual */
.hero-visual { position: relative; animation: fadeUp 0.6s 0.2s ease both; }
.hero-card-stack { position: relative; width: 100%; }
.hero-card {
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.hero-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--red), transparent);
}
.hero-card-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: rgba(196,30,40,0.12);
  border: var(--border-red);
  color: var(--red);
  font-size: 11px;
  font-family: var(--font-mono);
  padding: 4px 10px;
  border-radius: 100px;
}
.hero-card-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-sub);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.hero-card-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}
.hero-card-desc { font-size: 13px; color: var(--text-sub); line-height: 1.6; margin-bottom: 20px; }
.hero-card-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.hero-card-tag {
  font-size: 11px;
  background: var(--bg-alt);
  border: var(--border);
  padding: 4px 10px;
  border-radius: 100px;
  color: var(--text-sub);
}

.hero-floating {
  position: absolute;
  right: -20px; top: -20px;
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-md);
  z-index: 5;
  animation: float 3s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.hero-floating-icon {
  width: 40px; height: 40px;
  background: rgba(196,30,40,0.1);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--red);
}
.hero-floating-text { font-size: 13px; }
.hero-floating-text strong { display: block; font-family: var(--font-display); color: var(--text); }
.hero-floating-text span { color: var(--text-sub); font-size: 11px; }

.hero-floating-2 {
  position: absolute;
  left: -20px; bottom: 40px;
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  z-index: 5;
  animation: float 3s 1.5s ease-in-out infinite;
}
.pulse-dot {
  width: 8px; height: 8px;
  background: #22c55e; border-radius: 50%;
  display: inline-block; margin-right: 8px;
  animation: pulse 1.5s infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

/* ===== COHORT FLIER SECTION ===== */
.cohort-section {
  background: var(--bg-soft);
  border-top: 1px solid var(--border-col);
  border-bottom: 1px solid var(--border-col);
}
.cohort-hero-banner {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 48px;
  position: relative;
  margin-bottom: 48px;
}
.cohort-hero-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(196,30,40,0.18) 0%, transparent 70%);
}
.cohort-hero-banner::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--red), var(--red-light), transparent);
}
.chb-inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.chb-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red); color: var(--white);
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px;
  margin-bottom: 20px;
}
.chb-title {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  color: var(--white); font-weight: 900;
  line-height: 1.1; margin-bottom: 8px;
}
.chb-title span { color: var(--red); }
.chb-sub {
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); margin-bottom: 20px;
}
.chb-tagline {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255,255,255,0.8); line-height: 1.7;
  max-width: 560px; margin-bottom: 28px;
}
.chb-pills {
  display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px;
}
.chb-pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8);
  font-size: 12px; font-weight: 600;
  padding: 7px 14px; border-radius: 100px;
}
.chb-pill i { color: var(--red); font-size: 11px; }
.chb-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Cohort stats card on right */
.chb-stats-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  min-width: 200px;
  text-align: center;
  backdrop-filter: blur(8px);
}
.chb-stat { margin-bottom: 20px; }
.chb-stat:last-child { margin-bottom: 0; }
.chb-stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem; font-weight: 900;
  color: var(--red); line-height: 1; display: block;
}
.chb-stat-label {
  font-size: 11px; color: rgba(255,255,255,0.5);
  text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px;
}

/* Cohort 3-column info */
.cohort-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

/* Batches card */
.cohort-card {
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.cohort-card-title {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--red); margin-bottom: 20px;
  display: flex; align-items: center; gap: 8px;
}
.batch-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 0;
  border-bottom: var(--border);
}
.batch-item:last-child { border-bottom: none; }
.batch-label {
  font-family: var(--font-display); font-size: 13px;
  font-weight: 700; color: var(--red);
  min-width: 60px;
}
.batch-dates { font-size: 14px; color: var(--text); font-weight: 500; }

/* Fees card */
.fee-item {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  padding: 13px 0;
  border-bottom: var(--border);
}
.fee-item:last-child { border-bottom: none; }
.fee-name {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--text-sub); font-weight: 500;
}
.fee-name i { color: var(--red); font-size: 14px; width: 18px; }
.fee-amount { font-family: var(--font-display); font-size: 15px; font-weight: 800; color: var(--text); }
.fee-note { font-size: 11px; color: var(--text-sub); margin-top: 2px; }

/* Skills card */
.skill-item {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 0;
  border-bottom: var(--border);
  font-size: 13px; color: var(--text); font-weight: 500;
}
.skill-item:last-child { border-bottom: none; }
.skill-num {
  width: 24px; height: 24px;
  background: var(--red); color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; flex-shrink: 0;
}

/* Schedule & scholarships row */
.cohort-bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 24px;
}
.schedule-card {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 28px 28px;
  color: var(--white);
}
.schedule-row {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.schedule-row:last-child { border-bottom: none; }
.schedule-day { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.5); min-width: 150px; text-transform: uppercase; letter-spacing: 0.08em; }
.schedule-time { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--red); }

.scholarship-card {
  background: var(--white);
  border: 2px solid var(--red);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-red);
}
.scholarship-type { margin-bottom: 18px; }
.scholarship-type:last-child { margin-bottom: 0; }
.sch-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(196,30,40,0.08); color: var(--red);
  font-size: 10px; font-weight: 700; font-family: var(--font-mono);
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 100px;
  margin-bottom: 8px;
}
.sch-detail { font-size: 13px; color: var(--text-sub); line-height: 1.65; }
.sch-detail strong { color: var(--text); display: block; margin-bottom: 2px; }

/* Benefits row */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 24px;
}
.benefit-item {
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.benefit-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(196,30,40,0.2); }
.benefit-icon {
  width: 48px; height: 48px;
  background: rgba(196,30,40,0.08);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--red);
  margin: 0 auto 14px;
  transition: var(--transition);
}
.benefit-item:hover .benefit-icon { background: var(--red); color: var(--white); }
.benefit-title { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.benefit-desc { font-size: 12px; color: var(--text-sub); line-height: 1.55; }

/* Time schedule card */
.time-sched-banner {
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  border-radius: var(--radius-lg);
  padding: 32px;
  color: var(--white);
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.tsb-left h3 { font-size: 1.2rem; margin-bottom: 6px; }
.tsb-left p { font-size: 13px; color: rgba(255,255,255,.75); }
.tsb-times { display: flex; gap: 24px; flex-wrap: wrap; }
.tsb-time-item { text-align: center; }
.tsb-time-item .day { font-size: 11px; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 4px; }
.tsb-time-item .hrs { font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; }

/* ===== SERVICES SECTION ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border-col);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 60px;
}
.service-card {
  background: var(--white);
  padding: 40px 32px;
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--red);
  transition: width 0.4s ease;
}
.service-card:hover::after { width: 100%; }
.service-card:hover { background: var(--bg-soft); }
.service-icon {
  width: 52px; height: 52px;
  background: rgba(196,30,40,0.08);
  border: var(--border-red);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--red);
  margin-bottom: 24px; transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--red); color: var(--white); border-color: var(--red); }
.service-card h3 { font-size: 1.15rem; margin-bottom: 12px; color: var(--text); }
.service-card p { font-size: 14px; color: var(--text-sub); line-height: 1.7; margin-bottom: 24px; }
.service-link {
  font-size: 12px; font-family: var(--font-mono);
  color: var(--red); letter-spacing: 0.08em; text-transform: uppercase;
  display: flex; align-items: center; gap: 8px;
  transition: var(--transition);
}
.service-link:hover { gap: 14px; }

/* ===== ABOUT SECTION ===== */
.about-section { background: var(--bg-soft); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual { position: relative; }
.about-img-wrap {
  border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/5; position: relative;
}
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.about-img-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(196,30,40,0.15), transparent 50%);
}
.about-stat-card {
  position: absolute; right: -32px; bottom: 60px;
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.about-stat-card .num {
  font-family: var(--font-display);
  font-size: 2.5rem; font-weight: 800;
  color: var(--red); letter-spacing: -0.04em;
}
.about-stat-card .label {
  font-size: 11px; color: var(--text-sub);
  text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px;
}
.about-badge {
  position: absolute; top: 30px; right: -20px;
  background: var(--red); color: var(--white);
  font-family: var(--font-display); font-size: 12px; font-weight: 700;
  padding: 8px 16px; border-radius: 100px;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.about-content .tag { margin-bottom: 24px; }
.about-content h2 { margin-bottom: 20px; }
.about-content p { color: var(--text-sub); line-height: 1.8; margin-bottom: 16px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 32px 0; }
.about-feature { display: flex; align-items: flex-start; gap: 12px; }
.about-feature-icon {
  width: 36px; height: 36px;
  background: rgba(196,30,40,0.08);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--red); font-size: 14px; flex-shrink: 0;
}
.about-feature-text { font-size: 14px; color: var(--text-sub); line-height: 1.5; }
.about-feature-text strong { display: block; color: var(--text); margin-bottom: 2px; font-size: 14px; }

/* ===== WORKSPACE SECTION ===== */
.workspace-section { background: var(--bg); }
.plans-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border-col);
  border-radius: var(--radius-lg);
  overflow: hidden; margin-top: 60px;
}
.plan-card {
  background: var(--white); padding: 36px 28px;
  position: relative; transition: var(--transition);
  display: flex; flex-direction: column;
}
.plan-card.featured {
  background: var(--red);
  border: none;
  z-index: 2;
}
.plan-card.featured .plan-name,
.plan-card.featured .plan-price,
.plan-card.featured h3,
.plan-card.featured p { color: rgba(255,255,255,0.95); }
.plan-card.featured .plan-price span { color: rgba(255,255,255,0.7); }
.plan-card.featured .plan-feature { color: rgba(255,255,255,0.85); border-bottom: 1px solid rgba(255,255,255,0.15); }
.plan-card.featured .plan-feature i { color: rgba(255,255,255,0.9); }
.plan-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--dark); color: var(--white);
  font-size: 10px; font-family: var(--font-mono);
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 100px; white-space: nowrap;
}
.plan-name {
  font-family: var(--font-display); font-size: 13px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--red); margin-bottom: 8px;
}
.plan-price {
  font-family: var(--font-display); font-size: 2rem;
  font-weight: 800; letter-spacing: -0.03em; margin-bottom: 4px;
  color: var(--text);
}
.plan-price span { font-size: 14px; font-weight: 400; color: var(--text-sub); }
.plan-desc { font-size: 13px; color: var(--text-sub); margin-bottom: 24px; line-height: 1.6; }
.plan-features { flex: 1; margin-bottom: 28px; }
.plan-feature {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 8px 0; border-bottom: var(--border);
  font-size: 13px; color: var(--text-sub);
}
.plan-feature:last-child { border-bottom: none; }
.plan-feature i { color: var(--red); font-size: 11px; margin-top: 3px; flex-shrink: 0; }
.plan-free-badge {
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  color: #22c55e;
  font-size: 10px; font-family: var(--font-mono);
  padding: 2px 8px; border-radius: 100px; margin-left: auto;
}

/* ===== COURSES ===== */
.courses-section { background: var(--bg-soft); }
.courses-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 60px; }
.courses-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.course-card {
  background: var(--white); border: var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: var(--transition); position: relative;
}
.course-card:hover { transform: translateY(-4px); border-color: rgba(196,30,40,0.3); box-shadow: var(--shadow-md); }
.course-thumb { aspect-ratio: 16/9; overflow: hidden; position: relative; background: var(--bg-alt); }
.course-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.course-card:hover .course-thumb img { transform: scale(1.05); }
.course-thumb-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.5), transparent); }
.course-level {
  position: absolute; top: 12px; right: 12px;
  font-size: 10px; font-family: var(--font-mono);
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 100px;
  background: rgba(196,30,40,0.9); color: var(--white);
}
.course-body { padding: 24px; }
.course-cat { font-size: 11px; color: var(--red); font-family: var(--font-mono); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 10px; }
.course-card h3 { font-size: 1.1rem; margin-bottom: 10px; line-height: 1.4; color: var(--text); }
.course-card p { font-size: 13px; color: var(--text-sub); line-height: 1.6; margin-bottom: 20px; }
.course-meta { display: flex; gap: 16px; font-size: 12px; color: var(--text-sub); }
.course-meta span { display: flex; align-items: center; gap: 6px; }
.course-meta i { color: var(--red); }

/* ===== WHY US ===== */
.why-section { background: var(--bg); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-list { margin-top: 36px; }
.why-item { display: flex; gap: 20px; padding: 24px 0; border-bottom: var(--border); transition: var(--transition); }
.why-item:last-child { border-bottom: none; }
.why-item:hover .why-num { color: var(--red); }
.why-num {
  font-family: var(--font-mono); font-size: 11px; color: var(--gray-300);
  letter-spacing: 0.1em; text-transform: uppercase;
  min-width: 32px; padding-top: 2px; transition: var(--transition);
}
.why-text h4 { font-size: 1rem; margin-bottom: 8px; color: var(--text); }
.why-text p { font-size: 14px; color: var(--text-sub); line-height: 1.7; }

.why-visual { position: relative; }
.why-code-block {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md); overflow: hidden;
  font-family: var(--font-mono); font-size: 13px;
}
.code-header {
  background: var(--dark-3); border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 12px 16px; display: flex; align-items: center; gap: 8px;
}
.code-dot { width: 10px; height: 10px; border-radius: 50%; }
.code-dot:nth-child(1) { background: #ff5f57; }
.code-dot:nth-child(2) { background: #febc2e; }
.code-dot:nth-child(3) { background: #28c840; }
.code-filename { font-size: 11px; color: var(--gray-500); margin-left: 8px; }
.code-body { padding: 24px; line-height: 2; color: var(--gray-300); }
.code-line { display: flex; gap: 16px; }
.code-num { color: var(--gray-700); min-width: 20px; text-align: right; }
.code-keyword { color: #c792ea; }
.code-string { color: #c3e88d; }
.code-comment { color: var(--gray-600); font-style: italic; }
.code-var { color: #82aaff; }
.code-fn { color: #f78c6c; }

/* ===== FAQ ===== */
.faq-section { background: var(--bg-soft); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.faq-list { margin-top: 40px; }
.faq-item { border-bottom: var(--border); }
.faq-question {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0;
  font-family: var(--font-display); font-size: 1rem; font-weight: 600;
  color: var(--text); text-align: left;
  transition: var(--transition); gap: 16px; background: transparent; border: none; cursor: pointer;
}
.faq-question:hover { color: var(--red); }
.faq-question i { font-size: 14px; color: var(--red); flex-shrink: 0; transition: var(--transition); }
.faq-item.open .faq-question i { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
.faq-item.open .faq-answer { max-height: 200px; padding-bottom: 20px; }
.faq-answer p { font-size: 14px; color: var(--text-sub); line-height: 1.8; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--bg); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; }
.testimonial-card {
  background: var(--white); border: var(--border);
  border-radius: var(--radius-lg); padding: 32px;
  position: relative; transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.testimonial-card:hover { border-color: rgba(196,30,40,0.25); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-card::before {
  content: '"';
  position: absolute; top: 20px; right: 24px;
  font-size: 80px; line-height: 1;
  color: rgba(196,30,40,0.08); font-family: Georgia, serif;
}
.testimonial-stars { display: flex; gap: 4px; margin-bottom: 16px; }
.testimonial-stars i { color: #f59e0b; font-size: 12px; }
.testimonial-text { font-size: 14px; color: var(--text-sub); line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--red); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 16px; flex-shrink: 0;
  color: var(--white);
}
.testimonial-info h5 { font-size: 14px; font-weight: 700; color: var(--text); }
.testimonial-info span { font-size: 12px; color: var(--red); }

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--dark);
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(196,30,40,0.2) 0%, transparent 70%);
}
.cta-inner {
  position: relative; z-index: 2;
  text-align: center; max-width: 640px; margin: 0 auto;
}
.cta-inner h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 20px; color: var(--white); }
.cta-inner p { color: rgba(255,255,255,0.7); font-size: 1.1rem; margin-bottom: 40px; line-height: 1.7; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== NEWSLETTER ===== */
.newsletter-section { background: var(--bg-soft); border-top: var(--border); border-bottom: var(--border); }
.newsletter-inner {
  display: flex; justify-content: space-between; align-items: center;
  gap: 60px; padding: 60px;
  background: var(--white); border: var(--border); border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
}
.newsletter-text h3 { font-size: 1.8rem; margin-bottom: 8px; color: var(--text); }
.newsletter-text p { color: var(--text-sub); font-size: 15px; }
.newsletter-form { display: flex; gap: 12px; min-width: 400px; }
.newsletter-form input {
  flex: 1; background: var(--bg-soft); border: var(--border);
  border-radius: var(--radius-sm); padding: 14px 20px;
  color: var(--text); font-size: 14px; outline: none; transition: var(--transition);
}
.newsletter-form input:focus { border-color: var(--red); }
.newsletter-form input::placeholder { color: var(--text-sub); }

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  border-top: var(--border);
  padding: 80px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 60px; padding-bottom: 60px; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer-logo img { height: 40px; filter: brightness(0) invert(1); opacity: 0.85; }
.footer-about p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.8; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: rgba(255,255,255,0.5); transition: var(--transition);
}
.footer-social a:hover { background: var(--red); border-color: var(--red); color: var(--white); }
.footer-col h4 {
  font-size: 13px; font-family: var(--font-mono);
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--white); margin-bottom: 24px;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 14px; color: rgba(255,255,255,0.5);
  transition: var(--transition); display: flex; align-items: center; gap: 8px;
}
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-contact-item { display: flex; gap: 12px; margin-bottom: 16px; }
.footer-contact-item i { color: var(--red); margin-top: 3px; font-size: 14px; flex-shrink: 0; }
.footer-contact-item span { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.6; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: rgba(255,255,255,0.35);
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom a { color: var(--red); }

/* ===== PAGE HERO ===== */
.page-hero {
  padding: 120px 0 80px;
  position: relative; background: var(--bg-soft); overflow: hidden;
  border-bottom: var(--border);
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 20% 50%, rgba(196,30,40,0.06) 0%, transparent 60%);
}
.page-hero .container { position: relative; z-index: 2; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-sub); margin-bottom: 24px; }
.breadcrumb a { color: var(--text-sub); transition: var(--transition); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb i { font-size: 10px; color: var(--border-col); }
.page-hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 20px; color: var(--text); }
.page-hero p { font-size: 1.15rem; color: var(--text-sub); max-width: 560px; line-height: 1.7; }

/* ===== DIGITAL ACADEMY PAGE ===== */
.programs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 60px; }
.program-card {
  background: var(--white); border: var(--border);
  border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition);
}
.program-card:hover { border-color: rgba(196,30,40,0.3); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.program-header {
  background: var(--red); padding: 32px;
  position: relative; overflow: hidden;
}
.program-header::before {
  content: ''; position: absolute; right: -20px; top: -20px;
  width: 120px; height: 120px; background: rgba(255,255,255,0.06); border-radius: 50%;
}
.program-duration {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: rgba(255,255,255,0.15); padding: 4px 12px;
  border-radius: 100px; display: inline-block; margin-bottom: 16px; color: var(--white);
}
.program-header h3 { font-size: 1.5rem; margin-bottom: 8px; color: var(--white); }
.program-header p { font-size: 14px; opacity: 0.85; line-height: 1.6; color: var(--white); }
.program-body { padding: 32px; background: var(--white); }
.program-detail {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 0; border-bottom: var(--border); font-size: 14px; color: var(--text);
}
.program-detail:last-of-type { border-bottom: none; margin-bottom: 24px; }
.program-detail i { color: var(--red); margin-top: 2px; font-size: 13px; flex-shrink: 0; }
.program-detail strong {
  display: block; color: var(--text-sub);
  font-size: 11px; font-weight: 400; font-family: var(--font-mono);
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 2px;
}

/* ===== WORKSPACE PAGE ===== */
.workspace-features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 80px; }
.workspace-feature {
  text-align: center; padding: 32px 24px;
  background: var(--white); border: var(--border);
  border-radius: var(--radius-lg); transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.workspace-feature:hover { border-color: rgba(196,30,40,0.25); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.workspace-feature-icon {
  width: 56px; height: 56px;
  background: rgba(196,30,40,0.08); border: var(--border-red);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: var(--red);
  margin: 0 auto 20px; transition: var(--transition);
}
.workspace-feature:hover .workspace-feature-icon { background: var(--red); color: var(--white); }
.workspace-feature h4 { font-size: 1rem; margin-bottom: 8px; color: var(--text); }
.workspace-feature p { font-size: 13px; color: var(--text-sub); line-height: 1.6; }

.workspace-plans-full { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.workspace-plan {
  background: var(--white); border: var(--border);
  border-radius: var(--radius-lg); padding: 36px;
  transition: var(--transition); display: flex; flex-direction: column; position: relative;
  box-shadow: var(--shadow-sm);
}
.workspace-plan.highlight { background: var(--bg-soft); border-color: var(--red); box-shadow: var(--shadow-red); }
.workspace-plan:hover:not(.highlight) { border-color: rgba(196,30,40,0.25); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.wp-badge {
  position: absolute; top: -14px; left: 24px;
  background: var(--red); color: var(--white);
  font-size: 10px; font-family: var(--font-mono); letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 100px;
}

/* ===== CONTACT PAGE ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; }
.contact-info-item { display: flex; gap: 20px; margin-bottom: 36px; }
.contact-info-icon {
  width: 48px; height: 48px;
  background: rgba(196,30,40,0.08); border: var(--border-red);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--red); flex-shrink: 0;
}
.contact-info-text h4 { font-size: 15px; margin-bottom: 6px; color: var(--text); }
.contact-info-text p, .contact-info-text a {
  font-size: 14px; color: var(--text-sub); line-height: 1.7; display: block;
}
.contact-info-text a:hover { color: var(--red); }
.contact-form-wrap {
  background: var(--white); border: var(--border);
  border-radius: var(--radius-lg); padding: 48px;
  box-shadow: var(--shadow-sm);
}
.contact-form-wrap h3 { font-size: 1.5rem; margin-bottom: 8px; color: var(--text); }
.contact-form-wrap > p { color: var(--text-sub); font-size: 14px; margin-bottom: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 12px; font-family: var(--font-mono);
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-sub); margin-bottom: 8px;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; background: var(--bg-soft); border: var(--border);
  border-radius: var(--radius-sm); padding: 14px 18px;
  color: var(--text); font-size: 14px; outline: none; transition: var(--transition);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--red); background: rgba(196,30,40,0.03);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--gray-400); }
.form-group select option { background: var(--white); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ===== ABOUT PAGE ===== */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 60px; }
.team-card {
  background: var(--white); border: var(--border);
  border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.team-card:hover { transform: translateY(-4px); border-color: rgba(196,30,40,0.25); box-shadow: var(--shadow-md); }
.team-img { aspect-ratio: 1; background: var(--bg-alt); position: relative; overflow: hidden; }
.team-img img { width: 100%; height: 100%; object-fit: cover; }
.team-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 3rem; font-weight: 800;
  color: var(--red); background: linear-gradient(135deg, var(--bg-alt), var(--white));
}
.team-info { padding: 20px; }
.team-info h4 { font-size: 1rem; margin-bottom: 4px; color: var(--text); }
.team-info span { font-size: 12px; color: var(--red); font-family: var(--font-mono); }

/* ===== IMPACT / STATS ===== */
.impact-section { background: var(--red); position: relative; overflow: hidden; }
.impact-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}
.impact-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px; background: rgba(255,255,255,0.15);
  border-radius: var(--radius-lg); overflow: hidden; position: relative; z-index: 2;
}
.impact-item {
  background: rgba(0,0,0,0.15);
  padding: 48px 32px; text-align: center; backdrop-filter: blur(4px);
}
.impact-num {
  font-family: var(--font-display); font-size: 3.5rem; font-weight: 800;
  letter-spacing: -0.04em; display: block; line-height: 1;
  margin-bottom: 8px; color: var(--white);
}
.impact-label {
  font-size: 13px; opacity: 0.8;
  text-transform: uppercase; letter-spacing: 0.08em;
  font-family: var(--font-mono); color: var(--white);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== SCROLL UP BTN ===== */
#scrollUp {
  position: fixed; bottom: 32px; right: 32px;
  width: 44px; height: 44px;
  background: var(--red); color: var(--white);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; opacity: 0; visibility: hidden;
  transition: var(--transition); cursor: pointer; z-index: 999; border: none;
  box-shadow: var(--shadow-red);
}
#scrollUp.show { opacity: 1; visibility: visible; }
#scrollUp:hover { transform: translateY(-4px); }

/* ===================================================================
   RESPONSIVE
   =================================================================== */

/* ─── Tablet (1024px) ─── */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; gap: 0; }
  .hero-visual { display: none; }
  .hero-content { max-width: 100%; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-grid  { grid-template-columns: 1fr; gap: 48px; }
  .faq-grid  { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .plans-grid { grid-template-columns: repeat(2, 1fr); }
  .courses-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .programs-grid { grid-template-columns: 1fr; }
  .workspace-features { grid-template-columns: repeat(2, 1fr); }
  .workspace-plans-full { grid-template-columns: 1fr 1fr; }
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .cohort-info-grid { grid-template-columns: 1fr 1fr; }
  .cohort-bottom-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .chb-inner { grid-template-columns: 1fr; gap: 28px; }
  .chb-stats-card { display: flex; gap: 24px; min-width: unset; }
  .chb-stat { margin-bottom: 0; }
}

/* ─── Mobile (768px) ─── */
@media (max-width: 768px) {
  /* Hide desktop nav, show hamburger */
  .nav-menu  { display: none; }
  .nav-actions { display: none; }
  .topbar { display: none; }
  .hamburger { display: flex; }

  /* Layout fixes */
  .services-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
  .courses-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .newsletter-inner { flex-direction: column; padding: 32px 24px; gap: 28px; }
  .newsletter-form { min-width: unset; width: 100%; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .courses-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .about-stat-card { right: 12px; }
  .about-badge { right: 12px; }
  .form-row { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .workspace-features { grid-template-columns: 1fr; }
  .workspace-plans-full { grid-template-columns: 1fr; }
  .impact-grid { grid-template-columns: 1fr 1fr; }
  .contact-form-wrap { padding: 24px 20px; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .section { padding: 70px 0; }

  /* Cohort page mobile */
  .cohort-hero-banner { padding: 28px 22px; }
  .cohort-info-grid { grid-template-columns: 1fr; }
  .cohort-bottom-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .chb-inner { grid-template-columns: 1fr; }
  .chb-stats-card { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }
  .chb-stat { margin-bottom: 0; }
  .time-sched-banner { flex-direction: column; gap: 18px; text-align: center; }
}

/* ─── Small Mobile (480px) ─── */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-title { font-size: 2.4rem; }
  .hero-actions { flex-direction: column; }
  .btn-lg { padding: 16px 24px; }
  .cta-actions { flex-direction: column; align-items: center; }
  .team-grid { grid-template-columns: 1fr; }
  .impact-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 16px; }

  /* Mobile nav font size */
  .mobile-nav-links a { font-size: 1.4rem; }
  .mobile-nav-actions { flex-direction: column; }
  .mobile-nav-actions .btn { width: 100%; }

  /* Hamburger always clear */
  .hamburger { width: 36px; height: 36px; }
}
