/* ===== OnCloudWorks Custom Styles ===== */

:root {
  --ocw-primary: #7C3AED;
  --ocw-primary-dark: #6D28D9;
  --ocw-accent: #4C1D95;
  --ocw-dark: #0f0a1e;
  --ocw-gray: #475569;
  --ocw-light: #f8f7fc;
  --ocw-gradient: linear-gradient(135deg, #4C1D95 0%, #7C3AED 100%);
}

.text-primary {
  color: var(--ocw-primary) !important;
}

/* ===== Global ===== */
body {
  font-family: 'Inter', sans-serif;
  color: #334155;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--ocw-dark);
}

.section-padding {
  padding: 5rem 0;
}

.section-title {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--ocw-gray);
  max-width: 700px;
  margin: 0 auto 3rem;
}

.text-gradient {
  background: var(--ocw-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== Navbar ===== */
.navbar {
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97) !important;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  padding: 0.5rem 0;
}

.navbar-brand {
  padding: 0.25rem 0;
}

.navbar-logo {
  height: 50px;
  width: auto;
}

.nav-link {
  font-weight: 500;
  color: var(--ocw-dark) !important;
  margin: 0 0.25rem;
  transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--ocw-primary) !important;
}

/* ===== Hero Shared ===== */
.hero-tagline {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: var(--ocw-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
}

.btn-primary-gradient {
  background: var(--ocw-gradient);
  border: none;
  color: #fff;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.35);
  color: #fff;
}

.btn-outline-light-custom {
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  background: transparent;
  transition: all 0.2s;
}

.btn-outline-light-custom:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* Hero stats (used on training page hero) */
.hero-stats {
  margin-top: 1.5rem;
  display: flex;
  gap: 3rem;
}

.hero-stat h3 {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.25rem;
}

.hero-stat p {
  color: #64748b;
  font-size: 0.9rem;
  margin: 0;
}

/* ===== Problem Section ===== */
.problem-section {
  background: var(--ocw-light);
}

.problem-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  border: 1px solid #e2e8f0;
  transition: transform 0.2s, box-shadow 0.2s;
}

.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.problem-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.problem-icon.red { background: #fef2f2; color: #ef4444; }
.problem-icon.amber { background: #fffbeb; color: #f59e0b; }
.problem-icon.orange { background: #fff7ed; color: #f97316; }

.problem-card h5 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.problem-card p {
  color: var(--ocw-gray);
  font-size: 0.95rem;
  margin: 0;
}

.approach-text {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--ocw-dark);
  max-width: 750px;
  margin: 2.5rem auto 0;
  padding: 1.5rem 2rem;
  border-left: 4px solid var(--ocw-primary);
  background: #fff;
  border-radius: 0 8px 8px 0;
}

/* ===== Services ===== */
.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  height: 100%;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--ocw-gradient);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-number {
  font-size: 3rem;
  font-weight: 800;
  background: var(--ocw-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 1rem;
}

.service-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.service-card .service-subtitle {
  font-size: 0.85rem;
  color: var(--ocw-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--ocw-gray);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== Why Choose Us ===== */
.why-section {
  background: var(--ocw-dark);
  color: #fff;
}

.why-section .section-title {
  color: #fff;
}

.why-section .section-subtitle {
  color: #94a3b8;
}

.why-card {
  text-align: center;
  padding: 2rem 1.5rem;
}

.why-icon {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: rgba(124, 58, 237, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.75rem;
  color: var(--ocw-primary);
}

.why-card h5 {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.why-card p {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== Who We Serve ===== */
.audience-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  border: 1px solid #e2e8f0;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.audience-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.audience-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(76, 29, 149, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.5rem;
  color: var(--ocw-primary);
}

.audience-card h5 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.audience-card p {
  color: var(--ocw-gray);
  font-size: 0.9rem;
  margin: 0;
}

/* ===== CTA Section ===== */
.cta-section {
  background: var(--ocw-gradient);
  padding: 5rem 0;
}

.cta-section h2 {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  max-width: 650px;
  margin: 0 auto 2rem;
}

.btn-cta-white {
  background: #fff;
  color: var(--ocw-primary);
  font-weight: 700;
  padding: 1rem 2.5rem;
  border-radius: 8px;
  font-size: 1.05rem;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-cta-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  color: var(--ocw-primary-dark);
}

/* ===== Footer ===== */
.footer {
  background: var(--ocw-dark);
  padding: 4rem 0 2rem;
  color: #94a3b8;
}

.footer h5 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

.footer-brand {
  margin-bottom: 1rem;
}

.footer-logo {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer p {
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--ocw-primary);
}

.footer-bottom {
  border-top: 1px solid #2d1f54;
  padding-top: 2rem;
  margin-top: 3rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #1a1145;
  color: #94a3b8;
  margin-right: 0.5rem;
  transition: all 0.2s;
  text-decoration: none;
}

.footer-social a:hover {
  background: var(--ocw-primary);
  color: #fff;
}

/* ===== Animations ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Utility Classes (replaces inline styles) ===== */
.body-text {
  color: var(--ocw-gray);
  line-height: 1.8;
}

.dark-section-text {
  color: #94a3b8;
  line-height: 1.8;
  font-size: 1.05rem;
}

.section-divider {
  border-color: #e2e8f0;
}

.quote-icon {
  font-size: 3rem;
  color: var(--ocw-primary);
  opacity: 0.3;
}

.quote-text {
  font-size: 1.5rem;
  line-height: 1.6;
  margin: 1rem 0 2rem;
}

.big-stat-number {
  font-size: 2.5rem;
  font-weight: 800;
}

.big-stat-label {
  color: #94a3b8;
  font-size: 0.9rem;
}

.fact-card-alt-icon {
  font-size: 2rem;
  color: var(--ocw-primary);
}

.fact-card-alt-desc {
  color: var(--ocw-gray);
  font-size: 0.9rem;
}

.step-desc {
  color: var(--ocw-gray);
  font-size: 0.9rem;
}

.footer-legal-link {
  color: #64748b;
  text-decoration: none;
}

.footer-legal-link:hover {
  color: var(--ocw-primary);
}

/* ===== Inner Page Navbar ===== */
.navbar-inner {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

/* ===== Page Hero (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, #0f0a1e 0%, #1a1145 50%, #0f0a1e 100%);
  padding: 10rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.page-hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1rem;
  max-width: 700px;
}

.page-hero-title .highlight {
  background: var(--ocw-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero-text {
  font-size: 1.15rem;
  color: #94a3b8;
  line-height: 1.7;
  max-width: 600px;
}

/* ===== Light Section BG ===== */
.bg-light-section {
  background: var(--ocw-light);
}

/* ===== About: Fact Cards ===== */
.fact-card {
  background: var(--ocw-light);
  border-radius: 12px;
  padding: 1.75rem;
  text-align: center;
  border: 1px solid #e2e8f0;
}

.fact-number {
  font-size: 2.25rem;
  font-weight: 800;
  background: var(--ocw-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fact-label {
  color: var(--ocw-gray);
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

/* ===== About: Team Cards ===== */
.team-card {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  height: 100%;
  border: 1px solid #e2e8f0;
  transition: transform 0.2s, box-shadow 0.2s;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.team-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(76, 29, 149, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.75rem;
  color: var(--ocw-primary);
}

.team-card h5 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.team-card p {
  color: var(--ocw-gray);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

/* ===== About: Pillar Cards ===== */
.pillar-card {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  height: 100%;
  border: 1px solid #e2e8f0;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--ocw-gradient);
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.pillar-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(76, 29, 149, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--ocw-primary);
  margin-bottom: 1.25rem;
}

.pillar-card h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.pillar-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pillar-list li {
  padding: 0.5rem 0;
  color: var(--ocw-gray);
  font-size: 0.95rem;
  border-bottom: 1px solid #f1f5f9;
  line-height: 1.6;
}

.pillar-list li:last-child {
  border-bottom: none;
}

/* ===== About: Academia Cards ===== */
.academia-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
}

.academia-card h5 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.academia-card p {
  color: #94a3b8;
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.6;
}

/* ===== About: Differentiator Cards ===== */
.diff-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  height: 100%;
  border: 1px solid #e2e8f0;
  transition: transform 0.2s, box-shadow 0.2s;
}

.diff-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.diff-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(76, 29, 149, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.5rem;
  color: var(--ocw-primary);
}

.diff-card h5 {
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
}

.diff-card p {
  color: var(--ocw-gray);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.6;
}

/* ===== About: Quote Block ===== */
.quote-block {
  padding: 2rem;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.08), rgba(76, 29, 149, 0.08));
  color: var(--ocw-primary);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(124, 58, 237, 0.15);
}

/* ===== About: Fact Card Alt ===== */
.fact-card-alt {
  background: #fff;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  border: 1px solid #e2e8f0;
  transition: transform 0.2s;
}

.fact-card-alt:hover {
  transform: translateY(-3px);
}

.fact-card-alt h4 {
  font-size: 1.1rem;
}

/* ===== Services Page: Badge & Features ===== */
.svc-badge {
  display: inline-block;
  font-size: 3.5rem;
  font-weight: 800;
  background: var(--ocw-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.svc-tagline {
  font-size: 1rem;
  color: var(--ocw-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.25rem;
}

.svc-features-card {
  background: var(--ocw-light);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid #e2e8f0;
}

.svc-features-card h5 {
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}

.svc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.svc-list li {
  padding: 0.6rem 0;
  color: var(--ocw-gray);
  font-size: 0.95rem;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  line-height: 1.5;
}

.svc-list li:last-child {
  border-bottom: none;
}

.svc-list li i {
  color: var(--ocw-primary);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Services: Step items */
.svc-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.svc-step:last-child {
  border-bottom: none;
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ocw-gradient);
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
}

/* ===== Training: Phase Cards ===== */
.phase-card {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  height: 100%;
  border: 1px solid #e2e8f0;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}

.phase-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.phase-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--ocw-gradient);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.phase-card h4 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.phase-card p {
  color: var(--ocw-gray);
  font-size: 0.95rem;
  line-height: 1.7;
}

.phase-tag {
  display: inline-block;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.08), rgba(76, 29, 149, 0.08));
  color: var(--ocw-primary);
  font-weight: 600;
  font-size: 0.8rem;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  margin-top: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== Training: Cert Cards ===== */
.cert-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  height: 100%;
  transition: transform 0.2s, box-shadow 0.2s;
}

.cert-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.cert-header {
  background: var(--ocw-gradient);
  color: #fff;
  padding: 1rem 1.5rem;
  font-weight: 700;
  font-size: 1.05rem;
}

.cert-header-pro {
  background: linear-gradient(135deg, #7C3AED 0%, #4C1D95 100%);
}

.cert-body {
  padding: 1.5rem;
}

.cert-modules {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cert-modules li {
  padding: 0.5rem 0;
  color: var(--ocw-gray);
  font-size: 0.95rem;
  border-bottom: 1px solid #f1f5f9;
  padding-left: 1.25rem;
  position: relative;
}

.cert-modules li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ocw-primary);
}

.cert-modules li:last-child {
  border-bottom: none;
}

/* ===== Training: Format Cards ===== */
.format-card {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  height: 100%;
  border: 1px solid #e2e8f0;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.format-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.format-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(76, 29, 149, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.5rem;
  color: var(--ocw-primary);
}

.format-card h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.format-best {
  color: var(--ocw-primary);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
}

.format-features {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.format-features li {
  padding: 0.45rem 0;
  color: var(--ocw-gray);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.format-features li i {
  color: var(--ocw-primary);
}

/* ===== Training: Lab Cards ===== */
.lab-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
}

.lab-card h5 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.lab-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lab-list li {
  padding: 0.5rem 0;
  color: #94a3b8;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  line-height: 1.6;
}

.lab-list li:last-child {
  border-bottom: none;
}

/* ===== Training: Enterprise Features ===== */
.enterprise-feature {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.enterprise-feature:last-child {
  border-bottom: none;
}

.ent-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(76, 29, 149, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--ocw-primary);
  flex-shrink: 0;
}

.enterprise-feature h5 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.enterprise-feature p {
  color: var(--ocw-gray);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
}

/* ===== Training: ROI Card ===== */
.roi-card {
  background: var(--ocw-light);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  border: 1px solid #e2e8f0;
}

.roi-card h4 {
  font-size: 1.2rem;
}

.roi-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1rem 0;
  border-bottom: 1px solid #e2e8f0;
}

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

.roi-value {
  font-size: 2rem;
  font-weight: 800;
  background: var(--ocw-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  min-width: 80px;
}

.roi-label {
  color: var(--ocw-gray);
  font-size: 1rem;
  font-weight: 500;
}

/* ===== Training: Comparison Card ===== */
.comparison-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid #e2e8f0;
}

.compare-row {
  display: flex;
  border-bottom: 1px solid #f1f5f9;
}

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

.compare-header {
  background: var(--ocw-light);
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--ocw-gray);
}

.compare-col {
  flex: 1;
  padding: 0.85rem 0.75rem;
  font-size: 0.9rem;
  color: var(--ocw-gray);
}

.compare-col:first-child {
  font-weight: 600;
  color: var(--ocw-dark);
}

.highlight-col {
  color: var(--ocw-primary);
  font-weight: 600;
}

/* ===== Responsive ===== */

/* Tablet */
@media (max-width: 991.98px) {
  .page-hero-title { font-size: 2.25rem; }
  .hero-stats { gap: 2rem; }
  .section-title { font-size: 1.85rem; }
  .svc-badge { font-size: 2.5rem; }
  .enterprise-feature { gap: 1rem; }
}

/* Mobile */
@media (max-width: 767.98px) {
  .navbar-logo { height: 44px; }
  .page-hero-title { font-size: 1.75rem; }
  .page-hero { padding: 7rem 0 3rem; }
  .page-hero-text { font-size: 1rem; }
  .hero-tagline { font-size: 0.9rem; letter-spacing: 2px; }
  .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
  .hero-stat h3 { font-size: 1.5rem; }
  .section-padding { padding: 3rem 0; }
  .section-title { font-size: 1.5rem; }
  .section-subtitle { font-size: 1rem; margin-bottom: 2rem; }
  .cta-section { padding: 3.5rem 0; }
  .cta-section h2 { font-size: 1.5rem; }
  .cta-section p { font-size: 1rem; }
  .btn-cta-white { padding: 0.75rem 1.75rem; font-size: 0.95rem; }
  .btn-primary-gradient { padding: 0.7rem 1.5rem; font-size: 0.95rem; }
  .btn-outline-light-custom { padding: 0.7rem 1.5rem; font-size: 0.95rem; }
  .compare-col { padding: 0.5rem 0.35rem; font-size: 0.75rem; }
  .roi-value { font-size: 1.5rem; min-width: 60px; }
  .roi-label { font-size: 0.85rem; }
  .big-stat-number { font-size: 2rem; }
  .quote-text { font-size: 1.15rem; }
  .fact-card { padding: 1.25rem; }
  .fact-number { font-size: 1.75rem; }
  .pillar-card, .service-card, .phase-card, .format-card { padding: 2rem 1.5rem; }
  .team-card { padding: 2rem 1.5rem; }
  .diff-card { padding: 1.5rem 1.25rem; }
  .footer { padding: 3rem 0 1.5rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

/* Small mobile */
@media (max-width: 575.98px) {
  .page-hero-title { font-size: 1.5rem; }
  .page-hero { padding: 6.5rem 0 2.5rem; }
  .navbar-logo { height: 36px; }
  .hero-stats { gap: 1rem; }
  .hero-stat h3 { font-size: 1.25rem; }
  .hero-stat p { font-size: 0.8rem; }
  .comparison-card { padding: 1rem; }
  .compare-header { font-size: 0.7rem; }
  .svc-features-card { padding: 1.5rem; }
  .roi-card { padding: 1.5rem; }
}
