:root {
  --primary: #2563EB;
  --primary-dark: #1d4ed8;
  --primary-light: #60a5fa;
  --primary-bg: #EFF6FF;
  --secondary: #3B82F6;
  --accent: #0EA5E9;
  --accent-light: #e0f2fe;
  --white: #ffffff;
  --bg-body: #F8FAFC;
  --bg-alt: #F1F5F9;
  --bg-gradient: linear-gradient(160deg, #f8fafc 0%, #eff6ff 100%);
  --bg-card: #FFFFFF;
  --border: #E2E8F0;
  --text: #1E293B;
  --text-secondary: #64748B;
  --text-muted: #94A3B8;
  --topbar-bg: #0B2E6D;
  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.05);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.06);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.06);
  --shadow-card: 0 2px 12px rgba(0,0,0,0.03), 0 8px 24px rgba(0,0,0,0.03);
  --shadow-hover: 0 12px 40px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.04);
  --shadow-btn: 0 4px 16px rgba(37,99,235,0.2);
  --shadow-btn-hover: 0 8px 28px rgba(37,99,235,0.3);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --radius-xl: 22px;
  --radius-2xl: 28px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --section-padding: 120px 0;
  --container-padding: 32px;
  --hero-height: 700px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 130px;
  overflow-x: clip;
}

body {
  font-family: var(--font-primary);
  color: var(--text);
  background: var(--bg-body);
  line-height: 1.7;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

.section-padding {
  padding: var(--section-padding);
}

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

.section-tag {
  display: inline-block;
  background: var(--primary-bg);
  color: var(--primary);
  font-size: 0.81rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--font-primary);
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 2.38rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.25;
  letter-spacing: -0.5px;
}

.section-header p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.highlight {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 12px;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  outline: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.2px;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-btn);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-btn-hover);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-btn);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-btn);
}

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.88rem;
  transition: var(--transition);
}

.btn-text:hover {
  gap: 16px;
  color: var(--primary-dark);
}

.btn-text i {
  font-size: 0.78rem;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-text:hover i {
  transform: translateX(5px);
}

#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

#loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-content {
  text-align: center;
}

.loader-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  margin: 0 auto 8px;
}

.loader-content p {
  font-family: var(--font-primary);
  color: var(--text-muted);
  font-size: 0.82rem;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  z-index: 9998;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px rgba(37,99,235,0.25);
}

#back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--white);
  color: var(--text);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(0.9);
  transition: var(--transition);
}

#back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

#back-to-top:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(37,99,235,0.25);
}

.whatsapp-float {
  position: fixed;
  bottom: 84px;
  right: 28px;
  width: 48px;
  height: 48px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 16px rgba(37,211,102,0.25);
  z-index: 99;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.08);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
}

/* ===== TOP BAR ===== */
#top-bar {
  background: #0B2E6D;
  height: 40px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1001;
}

#top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.top-bar-left span {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-bar-left span i {
  font-size: 12px;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-bar-right > span {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-right: 4px;
}

.top-bar-right a {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  border-radius: 4px;
  transition: var(--transition);
}

.top-bar-right a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

/* ===== HEADER ===== */
#header {
  position: sticky;
  top: 40px;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: box-shadow 0.3s ease;
}

#header.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.navbar {
  padding: 0;
  height: 90px;
  display: flex;
  align-items: center;
}

.navbar .container {
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  display: block;
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.logo-text-wrapper {
  display: flex;
  flex-direction: column;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: 0.8px;
}

.logo-tagline {
  font-size: 0.62rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-logo .logo-text {
  color: var(--white);
  font-size: 1.15rem;
  letter-spacing: 0.6px;
}

.footer-logo .logo-tagline {
  color: rgba(255,255,255,0.35);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding: 6px 0;
  transition: var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1), left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
  transform: translateX(-50%);
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link:hover::after {
  width: 60%;
}

.nav-link.active {
  color: var(--primary);
  font-weight: 600;
}

.nav-link.active::after {
  width: 60%;
}

.nav-btn {
  padding: 16px 32px;
  background: var(--primary);
  color: var(--white) !important;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.94rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  white-space: nowrap;
  margin-left: auto;
}

.nav-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(37,99,235,0.25);
}

.nav-btn::after {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 1001;
  padding: 4px;
}

.bar {
  width: 26px;
  height: 2.5px;
  background: var(--text);
  border-radius: 3px;
  transition: var(--transition);
}

.hamburger.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
  transform: translateX(-8px);
}

.hamburger.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.hero-section {
  height: var(--hero-height);
  min-height: var(--hero-height);
  display: flex;
  flex-direction: column;
  position: relative;
  background: linear-gradient(160deg, #ffffff 0%, #f8fafc 30%, #eff6ff 100%);
  overflow: hidden;
  padding: 48px 0;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -5%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -15%;
  left: -5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14,165,233,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.hero-floating {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.12;
}

.hero-floating-1 {
  width: 120px;
  height: 120px;
  background: var(--primary-light);
  top: 20%;
  left: 5%;
  animation: floatAnim 8s ease-in-out infinite;
}

.hero-floating-2 {
  width: 80px;
  height: 80px;
  background: var(--accent);
  bottom: 25%;
  right: 15%;
  animation: floatAnim 10s ease-in-out infinite reverse;
}

.hero-floating-3 {
  width: 60px;
  height: 60px;
  background: var(--primary);
  top: 60%;
  left: 50%;
  animation: floatAnim 7s ease-in-out infinite;
}

@keyframes floatAnim {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.05); }
}

.hero-section .container {
  flex: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
  align-content: start;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-bg);
  color: var(--primary);
  font-size: 0.81rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.25rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-buttons .btn-primary {
  background: var(--primary);
  color: var(--white);
}

.hero-buttons .btn-secondary {
  border-color: var(--primary);
  color: var(--primary);
}

.hero-buttons .btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
}

.hero-trusted {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}

.hero-trusted-label {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 500;
  white-space: nowrap;
}

.hero-trusted-logos {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.trusted-logo-card {
  background: var(--white);
  padding: 8px 18px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.trusted-logo-card span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
}

.trusted-logo-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  border-color: var(--primary-light);
}

.trusted-logo-card:hover span {
  color: var(--primary);
}

.hero-trusted-logo {
  font-size: 1.1rem;
  color: var(--text-muted);
  opacity: 0.35;
  transition: opacity 0.3s ease;
  font-weight: 600;
  font-family: var(--font-heading);
  letter-spacing: 1px;
}

.hero-trusted-logo:hover {
  opacity: 0.6;
}

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

.hero-img-wrapper {
  width: 100%;
  max-width: 560px;
  aspect-ratio: 4/3;
  border-radius: 24px;
  background: var(--primary-bg);
  border: 1px solid rgba(226,232,240,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.04), 0 8px 24px rgba(0,0,0,0.02);
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 24px;
}

.bg-white-section { background: var(--white); }
.bg-light-section { background: var(--bg-body); }
.bg-alt-section { background: var(--bg-alt); }
.bg-gradient-section { background: var(--bg-gradient); }

.about-section { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-image {
  display: flex;
  justify-content: center;
}

.about-img-wrapper {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4/3;
  border-radius: var(--radius-2xl);
  background: linear-gradient(135deg, var(--primary-bg), var(--accent-light));
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.about-img-placeholder {
  font-size: 3.5rem;
  color: var(--primary);
  opacity: 0.15;
}

.about-content p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 32px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  color: var(--text);
  font-weight: 500;
}

.highlight-item i {
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
}

.services-section { background: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg-card);
  padding: 40px 32px;
  border-radius: 18px;
  border-top: 4px solid var(--primary);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(37,99,235,0.12);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: var(--primary-bg);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.7rem;
  color: var(--primary);
  transition: var(--transition);
  flex-shrink: 0;
}

.service-card:hover .service-icon {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,99,235,0.2);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.13rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.4;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
  flex: 1;
}

.training-section { background: var(--bg-alt); }

.training-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.training-card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
  position: relative;
  box-shadow: var(--shadow-card);
}

.training-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(37,99,235,0.08);
}

.training-icon {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.3rem;
  color: var(--white);
  box-shadow: 0 4px 12px rgba(37,99,235,0.2);
}

.training-card h3 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.training-card p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.training-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--primary-bg);
  color: var(--primary);
  font-size: 0.65rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
}

.process-section { background: var(--white); }

.process-timeline {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 46px;
  left: 8%;
  right: 8%;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  border-radius: 2px;
}

.process-step {
  text-align: center;
  position: relative;
  background: var(--white);
  padding: 24px 16px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}

.process-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.step-number {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  margin: 0 auto 14px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 12px rgba(37,99,235,0.2);
}

.step-icon {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.process-step h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.process-step p {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.whychoose-section { background: var(--bg-gradient); }

.whychoose-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.whychoose-card {
  text-align: center;
  padding: 40px 32px;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border);
  transition: var(--transition);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.whychoose-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(37,99,235,0.08);
}

.whychoose-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.4rem;
  color: var(--primary);
  transition: var(--transition);
}

.whychoose-card:hover .whychoose-icon {
  background: var(--primary);
  color: var(--white);
  transform: rotateY(180deg);
  box-shadow: 0 8px 24px rgba(37,99,235,0.2);
}

.whychoose-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}

.whychoose-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.industries-section { background: var(--white); }

.industries-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}

.industry-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--bg-body);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.industry-card:nth-child(n+7) {
  grid-column: span 2;
  max-width: 200px;
  justify-self: center;
}

.industry-card:nth-child(7) { grid-column: 1 / span 2; }
.industry-card:nth-child(8) { grid-column: 3 / span 2; }
.industry-card:nth-child(9) { grid-column: 5 / span 2; }

.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  background: var(--white);
}

.industry-card i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 10px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.industry-card:hover i {
  transform: scale(1.15);
}

.industry-card h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.stats-section {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}

.stat-item,
.stat-card {
  text-align: center;
  background: var(--white);
  padding: 40px 24px;
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.stat-item:hover,
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.stat-icon {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
  line-height: 1.2;
}

.stat-label {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.testimonials-section { background: var(--bg-alt); }

.testimonials-slider {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  flex: 0 0 100%;
  padding: 48px 40px;
  background: var(--white);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border);
  text-align: center;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: var(--shadow-card);
}

.testimonial-card.active {
  opacity: 1;
  position: relative;
}

.testimonial-stars {
  color: var(--warning);
  margin-bottom: 20px;
  font-size: 1rem;
}

.testimonial-card > p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.author-avatar {
  font-size: 2.6rem;
  color: var(--primary);
}

.testimonial-author h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

.testimonial-author span {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
}

.testimonial-btn {
  width: 42px;
  height: 42px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-secondary);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.testimonial-btn:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(37,99,235,0.2);
}

.testimonial-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  background: var(--border);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--primary);
  width: 28px;
  border-radius: 10px;
}

.gallery-section { background: var(--white); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery-item {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
}

.gallery-placeholder {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--bg-alt), var(--border));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 2rem;
  transition: var(--transition);
  cursor: pointer;
}

.gallery-placeholder span {
  font-size: 0.9rem;
  font-weight: 500;
}

.gallery-item:hover .gallery-placeholder {
  transform: scale(1.06);
  color: var(--primary);
}

.cta-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #1a237e 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(37,99,235,0.08), transparent 60%),
              radial-gradient(circle at 70% 50%, rgba(14,165,233,0.06), transparent 60%);
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}

.cta-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.55);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn-primary {
  background: var(--white);
  color: var(--text);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.cta-buttons .btn-primary:hover {
  background: rgba(255,255,255,0.92);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.15);
}

.cta-buttons .btn-secondary {
  border-color: rgba(255,255,255,0.2);
  color: var(--white);
}

.cta-buttons .btn-secondary:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.35);
}

.footer-section {
  background: var(--topbar-bg);
  color: rgba(255,255,255,0.6);
  padding: 80px 0 0;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo .logo-img {
  height: 44px;
  object-fit: contain;
}

.footer-logo .logo-icon {
  width: 34px;
  height: 34px;
  font-size: 1rem;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.8;
  opacity: 0.55;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.footer-col ul li {
  margin-bottom: 9px;
}

.footer-col ul li a {
  font-size: 0.85rem;
  opacity: 0.55;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  opacity: 1;
  color: var(--primary-light);
  padding-left: 5px;
}

.footer-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
}

.footer-contact li i {
  color: var(--accent);
  font-size: 0.85rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.footer-contact li span {
  font-size: 0.85rem;
  opacity: 0.55;
}

.footer-newsletter {
  text-align: center;
  padding: 36px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-newsletter h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 16px;
  font-weight: 600;
}

.newsletter-form {
  display: flex;
  max-width: 420px;
  margin: 0 auto;
  gap: 8px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 18px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  color: var(--white);
  font-family: var(--font-primary);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
}

.newsletter-form input::placeholder {
  color: rgba(255,255,255,0.25);
}

.newsletter-form input:focus {
  border-color: var(--primary);
  background: rgba(255,255,255,0.06);
}

.newsletter-form .btn-primary {
  padding: 12px 24px;
  font-size: 0.9rem;
  border-radius: 12px;
}

.footer-bottom {
  text-align: center;
  padding: 28px 0 24px;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-bottom p {
  font-size: 0.8rem;
  opacity: 0.35;
  margin-bottom: 8px;
  letter-spacing: 0.2px;
}

.footer-bottom .dev-credit {
  font-size: 0.78rem;
  opacity: 0.25;
  letter-spacing: 0.5px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.03);
  display: inline-block;
}

.footer-bottom .dev-credit span {
  opacity: 0.7;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
}

.page-hero {
  background: var(--white);
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  border-bottom: 1px solid var(--border);
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, var(--primary-bg) 0%, transparent 100%);
  opacity: 0.4;
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero-content h1 {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.page-hero-content p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto;
}

.story-section { background: var(--white); }

.story-content {
  max-width: 760px;
  margin: 0 auto;
}

.story-content p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 20px;
}

.vision-mission { background: var(--bg-alt); }

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.vm-card {
  padding: 48px 40px;
  border-radius: var(--radius-2xl);
  text-align: center;
  transition: var(--transition);
}

.vm-card.vision {
  background: var(--primary-bg);
  border: 1px solid rgba(37,99,235,0.08);
}

.vm-card.mission {
  background: var(--accent-light);
  border: 1px solid rgba(14,165,233,0.08);
}

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

.vm-icon {
  font-size: 2.4rem;
  margin-bottom: 20px;
}

.vm-card.vision .vm-icon { color: var(--primary); }
.vm-card.mission .vm-icon { color: var(--accent); }

.vm-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
}

.vm-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.values-section { background: var(--white); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  text-align: center;
  padding: 40px 32px;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border);
  transition: var(--transition);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

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

.value-icon {
  width: 58px;
  height: 58px;
  background: var(--primary-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.3rem;
  color: var(--primary);
}

.value-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.leadership-section { background: var(--bg-alt); }

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.leader-card {
  text-align: center;
  padding: 40px 32px;
  background: var(--white);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border);
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}

.leader-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.leader-avatar {
  font-size: 4.5rem;
  color: var(--border);
  margin-bottom: 16px;
}

.leader-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.leader-role {
  display: block;
  color: var(--primary);
  font-weight: 500;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.leader-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.leader-social {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.leader-social a {
  width: 34px;
  height: 34px;
  background: var(--bg-body);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.leader-social a:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.achievements-section { background: var(--white); }

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.achievement-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border);
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}

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

.achievement-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.achievement-card h3 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.achievement-card p {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.timeline-section { background: var(--bg-alt); }

.timeline {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary), var(--accent), transparent);
  border-radius: 2px;
  opacity: 0.35;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
  text-align: right;
}

.timeline-year {
  flex: 0 0 90px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  padding: 6px 14px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  text-align: center;
  margin: 0 28px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 12px rgba(37,99,235,0.2);
}

.timeline-content {
  flex: 1;
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.timeline-content h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.timeline-content p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.services-page-section { background: var(--bg-body); }

.services-detail-grid {
  display: grid;
  gap: 24px;
}

.service-detail-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  padding: 40px 32px;
  background: var(--white);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border);
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}

.service-detail-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.service-detail-icon {
  width: 72px;
  height: 72px;
  background: var(--primary-bg);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--primary);
}

.service-detail-content h2 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}

.service-detail-content > p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.service-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text);
}

.service-features li i {
  color: var(--primary);
  font-size: 0.85rem;
}

.training-methodology { background: var(--white); }

.methodology-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.methodology-card {
  text-align: center;
  padding: 40px 32px;
  background: var(--white);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border);
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}

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

.methodology-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.methodology-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}

.methodology-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.training-courses { background: var(--bg-alt); }

.courses-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.course-card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
  position: relative;
  box-shadow: var(--shadow-card);
}

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

.course-icon {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.3rem;
  color: var(--white);
  box-shadow: 0 4px 12px rgba(37,99,235,0.2);
}

.course-card h3 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}

.course-details p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-bottom: 4px;
  line-height: 1.6;
}

.course-details p strong {
  color: var(--text);
}

.course-badge {
  display: inline-block;
  margin-top: 12px;
  padding: 3px 12px;
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 50px;
  background: var(--primary-bg);
  color: var(--primary);
}

.faq-section { background: var(--white); }

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 8px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.06);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  background: var(--white);
}

.faq-question h3 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  flex: 1;
  line-height: 1.5;
}

.faq-toggle {
  font-size: 1rem;
  color: var(--primary);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  margin-left: 12px;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  padding: 0 24px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.placement-steps { background: var(--white); }

.placement-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.placement-step-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border);
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}

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

.step-num {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 auto 16px;
  box-shadow: 0 4px 12px rgba(37,99,235,0.2);
}

.placement-step-card h3 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.placement-step-card p {
  font-size: 0.84rem;
  color: var(--text-secondary);
}

.partners-section { background: var(--bg-alt); }

.partners-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.partner-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}

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

.partner-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.partner-card h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.partner-card span {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.success-stories { background: var(--white); }

.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.story-card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border);
  transition: var(--transition);
  text-align: center;
  box-shadow: var(--shadow-card);
}

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

.story-avatar {
  font-size: 3.5rem;
  color: var(--border);
  margin-bottom: 16px;
}

.story-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.story-role {
  display: block;
  font-size: 0.82rem;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 12px;
}

.story-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
  font-style: italic;
}

.story-stats {
  display: flex;
  justify-content: center;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.story-stats span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.internship-section { background: var(--bg-alt); }

.internship-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.internship-card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}

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

.internship-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.internship-card h3 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.internship-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.campus-recruitment { background: var(--white); }

.campus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.campus-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border);
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}

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

.campus-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.campus-card h3 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.campus-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.contact-section { background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.contact-info h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}

.contact-info > p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 32px;
}

.contact-details {
  display: grid;
  gap: 24px;
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  gap: 16px;
}

.contact-item-icon {
  flex: 0 0 48px;
  height: 48px;
  background: var(--primary-bg);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--primary);
}

.contact-item h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}

.contact-item p {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.contact-social h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
}

.contact-form-wrapper {
  background: var(--bg-body);
  padding: 40px;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border);
}

.contact-form-wrapper h2 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 24px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-primary);
  font-size: 0.92rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.06);
}

.form-group select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 0.95rem;
}

.form-message {
  margin-top: 14px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  display: none;
}

.form-message.success {
  display: block;
  background: rgba(16,185,129,0.06);
  color: #059669;
  border: 1px solid rgba(16,185,129,0.12);
}

.form-message.error {
  display: block;
  background: rgba(239,68,68,0.06);
  color: #dc2626;
  border: 1px solid rgba(239,68,68,0.12);
}

.map-section {
  padding: 0;
}

.map-container {
  width: 100%;
  height: 360px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-alt);
}

::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

::selection {
  background: rgba(37,99,235,0.1);
  color: var(--text);
}

/* ===== STRUCTURAL WRAPPERS ===== */
.service-card-top {
  display: none;
}

.service-card-accent {
  display: none;
}

.service-card-inner,
.leader-card-inner,
.value-card-inner,
.achievement-card-inner,
.timeline-content-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.value-card-inner,
.achievement-card-inner {
  align-items: center;
  text-align: center;
}

.service-card-inner {
  gap: 0;
}

/* ===== TIMELINE MARKER ===== */
.timeline-marker {
  position: absolute;
  left: 50%;
  top: 20px;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  background: var(--primary);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--primary);
  z-index: 1;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  margin-bottom: 16px;
}

.breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  justify-content: center;
  padding: 0;
}

.breadcrumb li {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.breadcrumb li:not(:last-child)::after {
  content: '/';
  margin-left: 8px;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--primary);
  font-weight: 500;
}

.breadcrumb a:hover {
  color: var(--primary-dark);
}

/* ===== FORM INPUT ICON ===== */
.form-group {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.9rem;
  z-index: 1;
  pointer-events: none;
  line-height: 1;
}

.form-group input,
.form-group select {
  padding-left: 44px;
}

.form-group textarea {
  padding-left: 44px;
}
