/* ============================================
   APACE SOLUTIONS SDN BHD — Premium Academy Website
   Comprehensive, Authoritative, Modern Corporate
   ============================================ */

/* --- Reset & Variables --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0a1628;
  --navy-mid: #0f1f3d;
  --navy-light: #142240;
  --teal: #0a8f8f;
  --teal-dark: #067a7a;
  --teal-light: #0fb5b5;
  --teal-glow: #14d4d4;
  --teal-bg: rgba(10, 143, 143, 0.08);
  --teal-bg-solid: #e8f7f7;
  --gold: #d4a843;
  --gold-light: #f0d68a;
  --white: #ffffff;
  --off-white: #f7f9fc;
  --gray-50: #fafbfd;
  --gray-100: #eef1f6;
  --gray-200: #d5dbe6;
  --gray-300: #b8c1d1;
  --gray-400: #8d99ae;
  --gray-500: #6b7a90;
  --gray-600: #4a5568;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --red: #ef4444;
  --green: #10b981;
  --blue: #3b82f6;
  --purple: #8b5cf6;
  --orange: #f59e0b;

  --font-main: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 1200px;
  --max-width-narrow: 900px;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 3px rgba(10, 22, 40, 0.04), 0 1px 2px rgba(10, 22, 40, 0.06);
  --shadow: 0 4px 24px rgba(10, 22, 40, 0.07);
  --shadow-lg: 0 12px 48px rgba(10, 22, 40, 0.1);
  --shadow-xl: 0 20px 60px rgba(10, 22, 40, 0.14);
  --shadow-teal: 0 8px 32px rgba(10, 143, 143, 0.2);
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-main);
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: var(--teal); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--teal-light); }
img { max-width: 100%; display: block; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: var(--max-width-narrow); margin: 0 auto; padding: 0 24px; }

/* --- Animations --- */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(10, 143, 143, 0.3); }
  50% { box-shadow: 0 0 24px 4px rgba(10, 143, 143, 0.15); }
}
@keyframes slide-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes rotate-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes dash {
  to { stroke-dashoffset: 0; }
}
@keyframes count-up {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.animate-in {
  animation: slide-up 0.6s ease-out forwards;
  opacity: 0;
}

/* --- Navigation --- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(213, 219, 230, 0.5);
  padding: 0 24px;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow-sm);
}

.navbar .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}

.navbar-logo {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none;
}

.navbar-logo .logo-mark {
  width: 44px; height: 44px; position: relative;
}

.navbar-logo .logo-mark svg { width: 100%; height: 100%; }

.navbar-logo .logo-text {
  display: flex; flex-direction: column; line-height: 1.2;
}

.navbar-logo .logo-name {
  font-size: 1.15rem; font-weight: 800; color: var(--navy);
  letter-spacing: -0.3px;
}

.navbar-logo .logo-tagline {
  font-size: 0.65rem; font-weight: 500; color: var(--gray-400);
  text-transform: uppercase; letter-spacing: 2px;
}

.navbar-links { display: flex; align-items: center; gap: 4px; list-style: none; }

.navbar-links a {
  padding: 10px 18px; border-radius: var(--radius-sm); font-size: 0.88rem;
  font-weight: 500; color: var(--gray-500); transition: var(--transition);
  position: relative;
}

.navbar-links a:hover { color: var(--teal); background: var(--teal-bg); }

.navbar-links a.active {
  color: var(--teal); font-weight: 600;
}

.navbar-links a.active::after {
  content: ''; position: absolute; bottom: 2px; left: 50%; transform: translateX(-50%);
  width: 20px; height: 3px; background: var(--teal); border-radius: 3px;
}

.navbar-links .btn-nav {
  background: var(--navy); color: white !important; padding: 11px 24px;
  border-radius: var(--radius-sm); font-weight: 600; margin-left: 8px;
  box-shadow: 0 2px 8px rgba(10, 22, 40, 0.15);
}
.navbar-links .btn-nav:hover {
  background: var(--teal); color: white !important;
  transform: translateY(-1px); box-shadow: var(--shadow-teal);
}
.navbar-links .btn-nav::after { display: none; }

.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.menu-toggle span { display: block; width: 22px; height: 2px; background: var(--navy); margin: 5px 0; border-radius: 2px; transition: var(--transition); }

/* --- Hero Section --- */
.hero {
  padding: 160px 24px 100px;
  background: var(--navy);
  color: white;
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-bg-graphics {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}

.hero-bg-graphics .orb {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.5;
}

.hero-bg-graphics .orb-1 {
  width: 500px; height: 500px; top: -15%; right: -5%;
  background: radial-gradient(circle, rgba(10, 143, 143, 0.3) 0%, transparent 70%);
  animation: float 8s ease-in-out infinite;
}

.hero-bg-graphics .orb-2 {
  width: 350px; height: 350px; bottom: -10%; left: 5%;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.12) 0%, transparent 70%);
  animation: float 10s ease-in-out infinite 2s;
}

.hero-bg-graphics .orb-3 {
  width: 200px; height: 200px; top: 30%; left: 40%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  animation: float 6s ease-in-out infinite 1s;
}

.hero-grid-pattern {
  position: absolute; inset: 0; opacity: 0.03;
  background-image:
    linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero .container { position: relative; z-index: 2; }

.hero-content { max-width: 680px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(10, 143, 143, 0.15); border: 1px solid rgba(10, 143, 143, 0.25);
  padding: 8px 20px; border-radius: 100px;
  font-size: 0.78rem; font-weight: 600; color: var(--teal-glow);
  margin-bottom: 28px; letter-spacing: 0.5px;
  backdrop-filter: blur(8px);
}

.hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--teal-glow);
  animation: pulse-glow 2s ease-in-out infinite;
}

.hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  font-weight: 900; line-height: 1.08;
  margin-bottom: 12px; letter-spacing: -1.5px;
}

.hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--teal-glow) 0%, var(--teal-light) 50%, var(--gold-light) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 40px; max-width: 520px;
  font-weight: 400; line-height: 1.75;
}

.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 72px; }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 32px; border-radius: var(--radius-sm);
  font-size: 0.92rem; font-weight: 600;
  cursor: pointer; border: none; transition: var(--transition);
  text-decoration: none; position: relative; overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: white; box-shadow: 0 4px 16px rgba(10, 143, 143, 0.25);
}
.btn-primary:hover {
  color: white; transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(10, 143, 143, 0.35);
}

.btn-primary-lg {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: white; box-shadow: 0 4px 16px rgba(10, 143, 143, 0.25);
  padding: 18px 40px; font-size: 1rem; border-radius: 14px;
}
.btn-primary-lg:hover {
  color: white; transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(10, 143, 143, 0.35);
}

.btn-outline {
  background: transparent; color: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
}
.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.5); color: white;
  transform: translateY(-2px); background: rgba(255,255,255,0.05);
}

.btn-white {
  background: white; color: var(--navy); font-weight: 700;
  box-shadow: var(--shadow);
}
.btn-white:hover {
  background: var(--off-white); color: var(--navy);
  transform: translateY(-2px); box-shadow: var(--shadow-lg);
}

.btn-ghost {
  background: transparent; color: var(--teal); font-weight: 600;
  padding: 15px 24px;
}
.btn-ghost:hover { background: var(--teal-bg); color: var(--teal-dark); }

.btn .arrow { transition: transform 0.3s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* --- Stats Bar (Hero) --- */
.stats-bar {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item {
  text-align: center; padding: 32px 20px;
  background: rgba(255, 255, 255, 0.03);
  position: relative;
  transition: var(--transition);
}

.stat-item:hover { background: rgba(255, 255, 255, 0.06); }

.stat-item:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 20%; bottom: 20%;
  width: 1px; background: rgba(255, 255, 255, 0.08);
}

.stat-number {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900; letter-spacing: -1px;
  background: linear-gradient(135deg, var(--teal-glow), var(--teal-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.8rem; color: rgba(255, 255, 255, 0.5);
  margin-top: 6px; font-weight: 500;
}

.stat-label-bm {
  font-size: 0.7rem; color: rgba(255, 255, 255, 0.3);
  font-style: italic; margin-top: 2px;
}

/* --- Section Styles --- */
.section { padding: 100px 24px; position: relative; }
.section-sm { padding: 60px 24px; }
.section-alt { background: var(--off-white); }
.section-dark { background: var(--navy); color: white; }

.section-header {
  text-align: center; max-width: 680px; margin: 0 auto 64px;
}

.section-header .overline {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.75rem; font-weight: 700;
  color: var(--teal); text-transform: uppercase; letter-spacing: 2.5px;
  margin-bottom: 16px;
}

.section-header .overline .line {
  width: 24px; height: 2px; background: var(--teal); border-radius: 2px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900; color: var(--navy); line-height: 1.15;
  margin-bottom: 18px; letter-spacing: -0.8px;
}

.section-dark .section-header h2 { color: white; }

.section-header p {
  font-size: 1.05rem; color: var(--gray-500); line-height: 1.75;
}

.section-dark .section-header p { color: rgba(255, 255, 255, 0.5); }

/* --- Trust Bar / Logos --- */
.trust-bar {
  padding: 40px 24px;
  border-bottom: 1px solid var(--gray-100);
}

.trust-bar .container {
  display: flex; align-items: center; justify-content: center;
  gap: 48px; flex-wrap: wrap;
}

.trust-badge {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 24px; border-radius: var(--radius-sm);
  background: var(--gray-50); border: 1px solid var(--gray-100);
}

.trust-badge .badge-icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 700;
}

.trust-badge .badge-text {
  font-size: 0.78rem; font-weight: 600; color: var(--gray-600);
  line-height: 1.3;
}

.trust-badge .badge-text span { display: block; font-weight: 400; color: var(--gray-400); font-size: 0.7rem; }

/* --- Sector Cards --- */
.sector-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
}

.sector-card {
  background: white; border-radius: var(--radius); padding: 0;
  border: 1px solid var(--gray-200); transition: var(--transition);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}

.sector-card:hover {
  transform: translateY(-6px); box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.sector-card-header {
  padding: 28px 32px 20px; position: relative;
}

.sector-card-header::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  transition: var(--transition);
}

.sector-card:hover .sector-card-header::before { height: 5px; }

.sector-card.manufacturing .sector-card-header::before { background: linear-gradient(90deg, #4f46e5, #7c3aed); }
.sector-card.finance .sector-card-header::before { background: linear-gradient(90deg, #059669, #10b981); }
.sector-card.healthcare .sector-card-header::before { background: linear-gradient(90deg, #dc2626, #f87171); }
.sector-card.law .sector-card-header::before { background: linear-gradient(90deg, #d97706, #fbbf24); }
.sector-card.public .sector-card-header::before { background: linear-gradient(90deg, #0284c7, #38bdf8); }

.sector-icon {
  width: 60px; height: 60px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 16px;
  position: relative;
}

.sector-icon::after {
  content: ''; position: absolute; inset: -4px; border-radius: 20px;
  opacity: 0.15;
}

.sector-icon.manufacturing { background: #eef2ff; color: #4f46e5; }
.sector-icon.finance { background: #ecfdf5; color: #059669; }
.sector-icon.healthcare { background: #fef2f2; color: #dc2626; }
.sector-icon.law { background: #fefce8; color: #d97706; }
.sector-icon.public { background: #f0f9ff; color: #0284c7; }

.sector-card h3 {
  font-size: 1.15rem; font-weight: 800; color: var(--navy);
  margin-bottom: 2px; letter-spacing: -0.3px;
}

.sector-card .bm-title {
  font-size: 0.82rem; color: var(--gray-400); font-style: italic;
  margin-bottom: 12px;
}

.sector-card-body { padding: 0 32px 28px; flex: 1; }

.sector-card-body p {
  font-size: 0.9rem; color: var(--gray-500); line-height: 1.7;
  margin-bottom: 16px;
}

.sector-tag-row { display: flex; flex-wrap: wrap; gap: 6px; }

.mini-tag {
  display: inline-block; padding: 4px 10px; border-radius: 6px;
  font-size: 0.72rem; font-weight: 600; background: var(--gray-50);
  color: var(--gray-500); border: 1px solid var(--gray-100);
}

.sector-card-footer {
  padding: 16px 32px; border-top: 1px solid var(--gray-100);
  display: flex; align-items: center; justify-content: space-between;
}

.sector-card-footer a {
  font-size: 0.85rem; font-weight: 600; color: var(--teal);
  display: flex; align-items: center; gap: 6px;
}

.sector-card-footer a:hover { gap: 10px; }

/* --- Feature List --- */
.feature-list { list-style: none; padding: 0; }
.feature-list li {
  padding: 10px 0 10px 32px; position: relative;
  font-size: 0.92rem; color: var(--gray-600);
}
.feature-list li::before {
  content: '';  position: absolute; left: 0; top: 14px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--teal-bg-solid);
  border: 2px solid var(--teal);
}
.feature-list li::after {
  content: '✓'; position: absolute; left: 3px; top: 12px;
  font-size: 0.7rem; color: var(--teal); font-weight: 800;
}

/* --- Big Number Cards --- */
.big-number-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.big-number-card {
  text-align: center; padding: 36px 20px; border-radius: var(--radius);
  background: white; border: 1px solid var(--gray-200);
  transition: var(--transition); position: relative; overflow: hidden;
}

.big-number-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.big-number-card .number {
  font-size: 2.4rem; font-weight: 900; color: var(--teal);
  line-height: 1.1; letter-spacing: -1px;
}

.big-number-card .label {
  font-size: 0.82rem; font-weight: 600; color: var(--gray-600);
  margin-top: 6px;
}

.big-number-card .sublabel {
  font-size: 0.72rem; color: var(--gray-400); font-style: italic;
  margin-top: 2px;
}

/* --- Program Phases --- */
.phase-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}

.phase-card {
  background: white; border-radius: var(--radius); padding: 36px 28px;
  border: 1px solid var(--gray-200); text-align: center;
  transition: var(--transition); position: relative; overflow: hidden;
}

.phase-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }

.phase-card.active {
  border-color: var(--teal);
  box-shadow: var(--shadow-teal);
}

.phase-card.active::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--teal-glow));
}

.phase-badge {
  display: inline-block; padding: 5px 16px; border-radius: 100px;
  font-size: 0.72rem; font-weight: 700; margin-bottom: 18px;
  text-transform: uppercase; letter-spacing: 1.5px;
}

.phase-badge.active { background: var(--teal-bg-solid); color: var(--teal); }
.phase-badge.planned { background: var(--gray-100); color: var(--gray-400); }

.phase-card h3 {
  font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 12px;
  min-height: 48px;
}

.phase-card .participants {
  font-size: 2.2rem; font-weight: 900;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 8px 0;
}

.phase-card .duration {
  font-size: 0.82rem; color: var(--gray-400); font-weight: 500;
}

/* --- Timeline --- */
.timeline { position: relative; padding: 20px 0; }

.timeline::before {
  content: ''; position: absolute; left: 24px; top: 0; bottom: 0;
  width: 3px; background: linear-gradient(to bottom, var(--teal), var(--gray-200));
  border-radius: 3px;
}

.timeline-item {
  position: relative; padding-left: 64px; margin-bottom: 40px;
}

.timeline-dot {
  position: absolute; left: 12px; top: 4px;
  width: 28px; height: 28px; border-radius: 50%;
  background: white; border: 3px solid var(--gray-300);
  display: flex; align-items: center; justify-content: center;
  z-index: 1;
}

.timeline-dot::after {
  content: ''; width: 10px; height: 10px; border-radius: 50%;
  background: var(--gray-300);
}

.timeline-item.active .timeline-dot {
  border-color: var(--teal); box-shadow: 0 0 0 6px rgba(10, 143, 143, 0.15);
}

.timeline-item.active .timeline-dot::after { background: var(--teal); }

.timeline-item h4 {
  font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 2px;
}

.timeline-item .time-label {
  font-size: 0.78rem; color: var(--teal); font-weight: 700; margin-bottom: 8px;
  text-transform: uppercase; letter-spacing: 1px;
}

.timeline-item p { font-size: 0.9rem; color: var(--gray-500); line-height: 1.7; }

/* --- Comparison Table --- */
.table-wrapper {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid var(--gray-200);
}

.comparison-table {
  width: 100%; border-collapse: collapse;
}

.comparison-table thead { background: linear-gradient(135deg, var(--navy), var(--navy-mid)); }

.comparison-table th {
  padding: 18px 24px; text-align: left;
  font-size: 0.82rem; font-weight: 700; color: rgba(255,255,255,0.9);
  letter-spacing: 0.8px; text-transform: uppercase;
}

.comparison-table th:first-child { border-radius: 0; }

.comparison-table td {
  padding: 16px 24px; font-size: 0.92rem;
  border-bottom: 1px solid var(--gray-100);
}

.comparison-table tbody tr:last-child td { border-bottom: none; }
.comparison-table tbody tr { transition: var(--transition-fast); }
.comparison-table tbody tr:hover { background: var(--teal-bg); }
.comparison-table tbody tr:nth-child(even) { background: var(--gray-50); }
.comparison-table tbody tr:nth-child(even):hover { background: var(--teal-bg); }

.comparison-table .highlight {
  color: var(--red); font-weight: 800;
}

.comparison-table .flag { font-size: 1.2rem; margin-right: 8px; }

/* --- Values / Feature Cards --- */
.values-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.value-card {
  text-align: center; padding: 44px 28px;
  background: white; border-radius: var(--radius);
  border: 1px solid var(--gray-200); transition: var(--transition);
  position: relative; overflow: hidden;
}

.value-card:hover {
  transform: translateY(-6px); box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.value-card .icon-wrap {
  width: 72px; height: 72px; margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--teal-bg-solid), rgba(10, 143, 143, 0.05));
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; position: relative;
}

.value-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.value-card p { font-size: 0.88rem; color: var(--gray-500); line-height: 1.7; }

/* --- Sustainability Cards --- */
.sustainability-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}

.sustainability-card {
  background: white; border-radius: var(--radius); padding: 36px 28px;
  border: 1px solid var(--gray-200); text-align: center; transition: var(--transition);
  position: relative; overflow: hidden;
}

.sustainability-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.sustainability-card .year-badge {
  display: inline-block; padding: 6px 18px; border-radius: 100px;
  font-size: 0.75rem; font-weight: 700; background: var(--teal-bg-solid); color: var(--teal);
  margin-bottom: 16px; letter-spacing: 0.5px;
}

.sustainability-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }

.sustainability-card .revenue {
  font-size: 2rem; font-weight: 900;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 8px 0;
}

.sustainability-card p { font-size: 0.85rem; color: var(--gray-500); }

/* --- About Info Box --- */
.about-intro {
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 56px;
  align-items: start;
}

.about-intro-left h2,
.about-intro-text h2 {
  font-size: 2.2rem; font-weight: 900; color: var(--navy);
  margin-bottom: 20px; line-height: 1.15; letter-spacing: -0.8px;
}

.about-intro-left p,
.about-intro-text p {
  font-size: 1rem; color: var(--gray-500); margin-bottom: 18px; line-height: 1.8;
}

.about-intro-right {
  display: flex; flex-direction: column;
}

.info-box {
  background: white; border-radius: var(--radius); padding: 36px;
  border: 1px solid var(--gray-200); box-shadow: var(--shadow);
  position: sticky; top: 100px;
}

.info-item {
  padding: 14px 0; border-bottom: 1px solid var(--gray-100); font-size: 0.9rem;
}

.info-item:last-child { border-bottom: none; }

.info-label {
  font-weight: 700; color: var(--navy); font-size: 0.82rem;
  text-transform: uppercase; letter-spacing: 0.5px;
  display: block; margin-bottom: 4px;
}

.info-value {
  color: var(--gray-500); font-weight: 500;
  display: block;
}

.info-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0; border-bottom: 1px solid var(--gray-100); font-size: 0.9rem;
}

.info-row:last-child { border-bottom: none; }

/* --- Contact --- */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.4rem; font-weight: 800; color: var(--navy); margin-bottom: 28px;
  letter-spacing: -0.3px;
}

.contact-detail {
  display: flex; gap: 18px; margin-bottom: 28px;
}

.contact-detail .icon-circle {
  width: 52px; height: 52px; min-width: 52px; border-radius: 14px;
  background: linear-gradient(135deg, var(--teal-bg-solid), rgba(10, 143, 143, 0.05));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}

.contact-detail h4 { font-size: 0.92rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.contact-detail p { font-size: 0.88rem; color: var(--gray-500); line-height: 1.6; }

.contact-form-wrapper {
  background: white; padding: 44px; border-radius: var(--radius);
  box-shadow: var(--shadow-lg); border: 1px solid var(--gray-200);
}

.form-group { margin-bottom: 22px; }

.form-group label {
  display: block; font-size: 0.82rem; font-weight: 700;
  color: var(--gray-700); margin-bottom: 8px;
  text-transform: uppercase; letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 14px 18px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--gray-200); font-size: 0.92rem;
  font-family: var(--font-main); transition: var(--transition);
  background: var(--gray-50); color: var(--gray-700);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(10, 143, 143, 0.08);
  background: white;
}

.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

/* --- CTA Banner --- */
.cta-banner {
  padding: 100px 24px; text-align: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, var(--navy-light) 100%);
  color: white; position: relative; overflow: hidden;
}

.cta-banner::before {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(10, 143, 143, 0.15) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}

.cta-banner h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900; margin-bottom: 12px; letter-spacing: -0.8px;
  position: relative; z-index: 1;
}

.cta-banner p {
  font-size: 1.05rem; color: rgba(255, 255, 255, 0.5);
  margin-bottom: 36px; max-width: 500px; margin-left: auto; margin-right: auto;
  position: relative; z-index: 1;
}

.cta-banner .btn-group {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  position: relative; z-index: 1;
}

/* --- FAQ --- */
.faq-grid { max-width: 800px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--gray-200); overflow: hidden;
}

.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 0; cursor: pointer; user-select: none;
  font-size: 1rem; font-weight: 700; color: var(--navy);
  transition: var(--transition);
}

.faq-question:hover { color: var(--teal); }

.faq-question .toggle {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--gray-50); border: 1px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--gray-400); transition: var(--transition);
  flex-shrink: 0;
}

.faq-item.open .faq-question .toggle {
  background: var(--teal-bg-solid); color: var(--teal);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
}

.faq-item.open .faq-answer { max-height: 300px; }

.faq-answer p {
  padding: 0 0 24px; font-size: 0.92rem; color: var(--gray-500);
  line-height: 1.75;
}

/* --- Footer --- */
.footer {
  background: var(--navy); color: rgba(255, 255, 255, 0.4);
  padding: 72px 24px 36px; position: relative;
}

.footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(10, 143, 143, 0.3), transparent);
}

.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 56px;
}

.footer-brand h3 {
  color: white; font-size: 1.2rem; font-weight: 800; margin-bottom: 14px;
  letter-spacing: -0.3px;
}

.footer-brand p { font-size: 0.85rem; line-height: 1.7; max-width: 300px; }

.footer-brand .reg { font-size: 0.72rem; margin-top: 12px; color: rgba(255,255,255,0.25); }

.footer-col h4 {
  color: rgba(255,255,255,0.7); font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 20px;
}

.footer-col a {
  display: block; font-size: 0.85rem; color: rgba(255, 255, 255, 0.4);
  padding: 5px 0; transition: var(--transition);
}

.footer-col a:hover { color: var(--teal-light); transform: translateX(4px); }

.footer-divider {
  border: none; border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 28px;
}

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem; flex-wrap: wrap; gap: 12px;
}

.footer-bottom a { color: rgba(255,255,255,0.35); }
.footer-bottom a:hover { color: var(--teal-light); }

/* --- Decorative Shapes --- */
.deco-circle {
  position: absolute; border-radius: 50%; pointer-events: none;
}

/* --- Course Detail Page --- */
.course-detail-section { padding: 60px 0; border-bottom: 1px solid var(--gray-100); }
.course-detail-section:last-child { border-bottom: none; }

.course-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  align-items: start;
}

.course-layout.reverse { direction: rtl; }
.course-layout.reverse > * { direction: ltr; }

.course-content .sector-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; border-radius: 100px;
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; margin-bottom: 18px;
}

.course-content h2 {
  font-size: 1.7rem; font-weight: 900; color: var(--navy);
  margin-bottom: 4px; letter-spacing: -0.5px;
}

.course-content .bm-name {
  font-size: 0.92rem; color: var(--gray-400); font-style: italic;
  margin-bottom: 18px;
}

.course-content .desc {
  font-size: 0.95rem; color: var(--gray-500); margin-bottom: 20px; line-height: 1.75;
}

.who-box {
  padding: 18px 22px; background: var(--teal-bg); border-radius: var(--radius-sm);
  border-left: 4px solid var(--teal); font-size: 0.88rem; color: var(--navy); line-height: 1.65;
}

.who-box strong { color: var(--teal); font-weight: 700; }

.course-modules-card {
  background: var(--gray-50); border-radius: var(--radius); padding: 36px;
  border: 1px solid var(--gray-200);
}

.course-modules-card h4 {
  font-size: 0.8rem; font-weight: 700; color: var(--gray-400);
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 16px;
}

.module-list { list-style: none; padding: 0; counter-reset: mod; }
.module-list li {
  padding: 14px 0 14px 44px; position: relative;
  font-size: 0.9rem; color: var(--gray-600); counter-increment: mod;
  border-bottom: 1px solid var(--gray-100);
}
.module-list li:last-child { border-bottom: none; }
.module-list li::before {
  content: counter(mod, decimal-leading-zero);
  position: absolute; left: 0; top: 14px;
  font-size: 0.78rem; font-weight: 900; color: var(--teal);
  width: 28px; height: 28px; border-radius: 8px;
  background: var(--teal-bg-solid);
  display: flex; align-items: center; justify-content: center;
}

.skill-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }

.skill-tag {
  display: inline-block; padding: 6px 14px; border-radius: 8px;
  font-size: 0.78rem; font-weight: 600; background: white;
  border: 1px solid var(--gray-200); color: var(--gray-600);
  transition: var(--transition-fast);
}

.skill-tag:hover { border-color: var(--teal); color: var(--teal); }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .phase-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .sustainability-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}

@media (max-width: 900px) {
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .about-intro { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .course-layout, .course-layout.reverse { grid-template-columns: 1fr; direction: ltr; }
  .info-box { position: static; }
}

@media (max-width: 768px) {
  .navbar-links { display: none; }
  .menu-toggle { display: block; }
  .navbar-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 76px; left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    padding: 16px 24px 24px; box-shadow: var(--shadow-lg);
    border-bottom: 1px solid var(--gray-200);
    gap: 4px;
  }
  .navbar-links.open .btn-nav { margin-left: 0; text-align: center; justify-content: center; }

  .hero { min-height: auto; padding: 130px 24px 60px; }
  .section { padding: 72px 24px; }
  .sector-grid { grid-template-columns: 1fr; }
  .trust-bar .container { gap: 16px; }
  .trust-badge { flex: 1 1 calc(50% - 16px); min-width: 200px; }
}

@media (max-width: 480px) {
  .stats-bar { grid-template-columns: 1fr 1fr; gap: 1px; border-radius: var(--radius); }
  .stat-item { padding: 24px 12px; }
  .hero-buttons { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .big-number-grid { grid-template-columns: 1fr 1fr; }
}
