/* ===== HAZY NETWORK - MAIN STYLESHEET ===== */
/* Brand Colors: Blue #29A9E1 | Dark #4A4A4A */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@600;700;800&display=swap');

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

:root {
  --blue: #29A9E1;
  --blue-dark: #1A8FC5;
  --blue-light: #E8F6FD;
  --navy: #0A2540;
  --dark: #4A4A4A;
  --gray: #6B7280;
  --light-gray: #F3F4F6;
  --white: #FFFFFF;
  --border: #E5E7EB;
  --shadow: 0 4px 24px rgba(41,169,225,0.12);
  --shadow-lg: 0 8px 40px rgba(10,37,64,0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(41,169,225,0.4); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }
.btn-dark { background: var(--navy); color: var(--white); }
.btn-dark:hover { background: #0d3060; transform: translateY(-2px); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(10,37,64,0.1); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo img { height: 42px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 15px;
  color: var(--dark);
  transition: all var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--blue); background: var(--blue-light); }
.nav-cta { margin-left: 12px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, #0f3460 50%, #164e8a 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2329A9E1' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(41,169,225,0.2);
  border: 1px solid rgba(41,169,225,0.4);
  color: var(--blue);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}
.hero-badge span { color: #fff; }
.hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-title .highlight { color: var(--blue); }
.hero-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--blue);
}
.hero-stat-label { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 2px; }
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-logo-wrap {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 48px;
  animation: float 4s ease-in-out infinite;
}
.hero-logo-wrap img { width: 280px; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

/* ===== SECTION COMMON ===== */
section { padding: 90px 0; }
.section-label {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.25;
}
.section-subtitle {
  font-size: 17px;
  color: var(--gray);
  max-width: 600px;
  line-height: 1.7;
}
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 0 auto; }

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--navy);
  padding: 40px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item { padding: 16px; }
.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--blue);
  display: block;
}
.stat-label { font-size: 14px; color: rgba(255,255,255,0.7); margin-top: 4px; }

/* ===== COURSES SECTION ===== */
.courses-section { background: var(--light-gray); }
.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.course-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.course-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--blue);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.course-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.course-card:hover::before { transform: scaleX(1); }
.course-icon {
  width: 56px;
  height: 56px;
  background: var(--blue-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}
.course-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.course-desc { font-size: 14px; color: var(--gray); line-height: 1.6; margin-bottom: 20px; }
.course-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  background: var(--blue-light);
  color: var(--blue-dark);
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
}

/* ===== ABOUT SECTION ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-text p {
  color: var(--gray);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}
.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px;
  background: var(--blue-light);
  border-radius: 10px;
}
.highlight-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.highlight-text { font-size: 13px; font-weight: 600; color: var(--navy); }
.about-visual {
  position: relative;
}
.about-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.about-card-header {
  background: linear-gradient(135deg, var(--navy), #0f3460);
  padding: 36px;
  text-align: center;
}
.about-card-header img { width: 160px; margin: 0 auto; }
.about-card-body { padding: 28px; }
.about-card-body p { font-size: 14px; color: var(--gray); line-height: 1.7; }
.global-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--blue);
  color: var(--white);
  padding: 14px 20px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 13px;
  box-shadow: var(--shadow);
  text-align: center;
}
.global-badge span { display: block; font-size: 22px; font-weight: 800; }

/* ===== WHY CHOOSE US ===== */
.why-section { background: var(--light-gray); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.why-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin: 0 auto 20px;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(41,169,225,0.35);
}
.why-title { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.why-desc { font-size: 14px; color: var(--gray); line-height: 1.7; }

/* ===== TRAINING METHODS ===== */
.methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.method-card {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.method-card:hover { box-shadow: var(--shadow); border-color: var(--blue); }
.method-icon {
  width: 52px;
  height: 52px;
  background: var(--blue-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  color: var(--blue);
}
.method-content { flex: 1; }
.method-title { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.method-desc { font-size: 14px; color: var(--gray); line-height: 1.6; }

/* ===== CORPORATE PARTNERS ===== */
.partners-section { background: var(--navy); padding: 60px 0; }
.partners-title {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 36px;
}
.partners-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}
.partner-chip {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.85);
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  transition: all var(--transition);
}
.partner-chip:hover { background: var(--blue); border-color: var(--blue); color: var(--white); }

/* ===== CTA BANNER ===== */
.cta-section {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  padding: 80px 0;
  text-align: center;
}
.cta-section .section-title { color: var(--white); margin-bottom: 12px; }
.cta-section .section-subtitle { color: rgba(255,255,255,0.85); margin: 0 auto 36px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.footer {
  background: #060f1e;
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand img { height: 40px; margin-bottom: 16px; }
.footer-desc { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.8; max-width: 280px; }
.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.social-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 16px;
  transition: all var(--transition);
}
.social-btn:hover { background: var(--blue); color: var(--white); }
.footer-col h4 { font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--blue); }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 14px; }
.footer-contact-icon { font-size: 16px; color: var(--blue); flex-shrink: 0; margin-top: 2px; }
.footer-contact-text { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.5; }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.35); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0f3460 100%);
  padding: 140px 0 80px;
  text-align: center;
}
.page-hero .hero-title { font-size: clamp(30px, 4vw, 46px); }
.page-hero .section-label { margin-bottom: 16px; }
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-top: 16px;
}
.breadcrumb a { color: var(--blue); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* ===== TRAINING CATALOG ===== */
.catalog-section { background: var(--light-gray); }
.catalog-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.tab-btn {
  padding: 10px 22px;
  border-radius: 50px;
  border: 2px solid var(--border);
  background: var(--white);
  font-weight: 600;
  font-size: 14px;
  color: var(--gray);
  cursor: pointer;
  transition: all var(--transition);
}
.tab-btn:hover, .tab-btn.active { background: var(--blue); border-color: var(--blue); color: var(--white); }
.catalog-panel { display: none; }
.catalog-panel.active { display: block; }
.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}
.cert-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.cert-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--blue); }
.cert-card img { height: 72px; width: auto; margin: 0 auto 14px; object-fit: contain; }
.cert-card p { font-size: 13px; font-weight: 600; color: var(--navy); line-height: 1.4; }

.subcategory-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin: 32px 0 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.subcategory-title::before { content: ''; display: block; width: 4px; height: 20px; background: var(--blue); border-radius: 2px; }

/* ===== UPCOMING BATCHES ===== */
.batch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.batch-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
  border-left: 4px solid var(--blue);
  transition: all var(--transition);
}
.batch-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.batch-date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blue-light);
  color: var(--blue-dark);
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
}
.batch-title { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.batch-meta { font-size: 13px; color: var(--gray); display: flex; gap: 16px; margin-top: 14px; }
.batch-meta span { display: flex; align-items: center; gap: 5px; }

/* ===== WEBINAR CTA ===== */
.webinar-section {
  background: linear-gradient(135deg, #0f3460, var(--navy));
  padding: 72px 0;
}
.webinar-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.webinar-title {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}
.webinar-subtitle { font-size: 16px; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 28px; }
.webinar-form-wrap {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.webinar-form-wrap h3 { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 20px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.7); margin-bottom: 6px; }
.form-group input, .form-group select {
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 14px;
  outline: none;
  transition: border-color var(--transition);
}
.form-group input::placeholder { color: rgba(255,255,255,0.4); }
.form-group input:focus, .form-group select:focus { border-color: var(--blue); }
.form-group select option { background: var(--navy); color: var(--white); }
.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--blue);
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--transition);
  margin-top: 8px;
}
.form-submit:hover { background: var(--blue-dark); transform: translateY(-2px); }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.contact-info-card {
  background: linear-gradient(135deg, var(--navy), #0f3460);
  border-radius: var(--radius-lg);
  padding: 44px;
  color: var(--white);
}
.contact-info-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 10px; }
.contact-info-card > p { font-size: 15px; color: rgba(255,255,255,0.7); margin-bottom: 36px; }
.contact-detail { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.contact-detail-icon {
  width: 44px; height: 44px;
  background: rgba(41,169,225,0.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: var(--blue);
  flex-shrink: 0;
}
.contact-detail-text h4 { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
.contact-detail-text p { font-size: 15px; color: var(--white); }
.contact-socials { margin-top: 36px; }
.contact-socials h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.5); margin-bottom: 14px; }
.contact-socials-btns { display: flex; gap: 10px; }
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.contact-form-wrap h3 { font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 28px; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form .form-group label { color: var(--dark); font-weight: 600; }
.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--light-gray);
  color: var(--dark);
  font-size: 14px;
  outline: none;
  transition: border-color var(--transition);
  font-family: 'Inter', sans-serif;
}
.contact-form .form-group textarea { height: 120px; resize: vertical; }
.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus { border-color: var(--blue); background: var(--white); }
.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder { color: #aaa; }

/* ===== PROJECTS ===== */
.project-highlight {
  background: var(--blue-light);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  margin-bottom: 48px;
  border: 1px solid rgba(41,169,225,0.2);
}
.project-highlight p { font-size: 18px; color: var(--dark); max-width: 680px; margin: 0 auto; line-height: 1.8; }
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.project-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.project-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.project-icon { font-size: 36px; margin-bottom: 16px; }
.project-name { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.project-detail { font-size: 14px; color: var(--gray); line-height: 1.7; }
.project-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 600;
  color: #10b981;
}
.project-status.ongoing { color: var(--blue); }

/* ===== ABOUT PAGE ADDITIONS ===== */
.team-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.value-card {
  text-align: center;
  padding: 36px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--white);
  transition: all var(--transition);
}
.value-card:hover { box-shadow: var(--shadow); border-color: var(--blue); }
.value-icon { font-size: 38px; margin-bottom: 16px; }
.value-title { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.value-text { font-size: 14px; color: var(--gray); line-height: 1.6; }

.video-section { background: var(--light-gray); }
.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* ===== SUCCESS NOTIFICATIONS ===== */
.success-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #10b981;
  color: white;
  padding: 14px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  z-index: 9999;
  transform: translateY(80px);
  opacity: 0;
  transition: all 0.4s ease;
}
.success-toast.show { transform: translateY(0); opacity: 1; }

/* ===== MOBILE MENU ===== */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 16px;
    gap: 4px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; width: 100%; }
  .nav-cta { display: none; }

  .hero-content { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-visual { display: none; }
  .hero-stats { justify-content: center; gap: 24px; }
  .hero-actions { justify-content: center; }

  .stats-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-highlights { grid-template-columns: 1fr; }
  .global-badge { position: static; margin-top: 20px; display: inline-block; }
  .why-grid { grid-template-columns: 1fr; }
  .methods-grid { grid-template-columns: 1fr; }
  .webinar-inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; }
  .catalog-tabs { justify-content: center; }
}

/* ===== ANIMATIONS ===== */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== ACTIVE PAGE ===== */
.nav-active { color: var(--blue) !important; background: var(--blue-light) !important; }
