/* ============================================
   THE TOUCHSTONE ACADEMY — styles.css
   Theme: Premium Light Mode — White & Blue
   Brand: Navy #0B1F3B + Electric Blue #2B7FD4
   ============================================ */

/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600;9..40,700&display=swap');

/* ===== CSS VARIABLES — LIGHT THEME ===== */
:root {
  /* Backgrounds */
  --bg-primary: #FFFFFF;
  --bg-secondary: #F8FAFF;
  --bg-tertiary: #EFF6FF;
  --bg-card: #FFFFFF;
  --bg-dark: #0B1F3B;

  /* Brand Blues */
  --blue-900: #0B1F3B;
  --blue-800: #1A3F6B;
  --blue-700: #1D4ED8;
  --blue-600: #2563EB;
  --blue-500: #2B7FD4;
  --blue-400: #60A5FA;
  --blue-300: #93C5FD;
  --blue-200: #BFDBFE;
  --blue-100: #DBEAFE;
  --blue-50: #EFF6FF;

  /* Text */
  --text-primary: #0F172A;
  --text-secondary: #1E293B;
  --text-tertiary: #475569;
  --text-muted: #94A3B8;
  --text-on-dark: #FFFFFF;

  /* Gradients */
  --grad-blue: linear-gradient(135deg, #1A3F6B 0%, #2B7FD4 100%);
  --grad-hero: linear-gradient(155deg, #EFF6FF 0%, #FFFFFF 50%, #F0F9FF 100%);
  --grad-btn: linear-gradient(135deg, #1A3F6B 0%, #2B7FD4 40%, #60A5FA 70%, #2B7FD4 100%);

  /* Primary RGB for rgba() */
  --primary-rgb: 43, 127, 212;
  --navy-rgb: 11, 31, 59;

  /* Borders */
  --border: rgba(43, 127, 212, 0.14);
  --border-strong: rgba(43, 127, 212, 0.28);
  --border-default: rgba(15, 23, 42, 0.07);
  --border-dark: rgba(255, 255, 255, 0.08);

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.07), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 10px 20px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 40px -5px rgba(0, 0, 0, 0.09), 0 8px 12px -6px rgba(0, 0, 0, 0.05);
  --shadow-blue: 0 20px 40px -8px rgba(43, 127, 212, 0.28);

  /* Easing */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.68, -0.55, 0.265, 1.55);

  /* Layout */
  --announcement-height: 42px;
  --navbar-height: 74px;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
}

/* Accessibility: Visible Focus States */
:focus-visible {
  outline: 2px solid var(--blue-400);
  outline-offset: 4px;
}

ul {
  list-style: none;
}

/* ===== GLOBAL UTILITY ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-500);
  margin-bottom: 14px;
  padding: 4px 12px;
  background: rgba(var(--primary-rgb), 0.08);
  border: 1px solid var(--border);
  border-radius: 100px;
}

.section-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.18;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.section-title em {
  font-style: italic;
  color: var(--blue-500);
}

.serif-italic-font em,
.serif-italic-font i {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-tertiary);
  max-width: 560px;
  line-height: 1.75;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .section-label {
  display: inline-block;
}

.section-header .section-subtitle {
  margin: 0 auto;
}

/* ===== GLASS / CARD ===== */
.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow-md);
  transition: all 0.4s var(--ease-out-expo);
}

.glass-card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-blue);
  transform: translateY(-4px);
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--grad-btn);
  background-size: 200% 200%;
  animation: gradient-shift 4s ease infinite;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 15px 30px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  box-shadow:
    0 0 0 1px rgba(var(--primary-rgb), 0.4),
    0 4px 24px rgba(var(--primary-rgb), 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow:
    0 0 0 2px rgba(var(--primary-rgb), 0.6),
    0 8px 40px rgba(var(--primary-rgb), 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--blue-800);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 10px;
  border: 1.5px solid var(--border-strong);
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  text-decoration: none;
}

.btn-outline:hover {
  border-color: var(--blue-500);
  background: rgba(var(--primary-rgb), 0.06);
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
  color: var(--blue-500);
}

.btn-large {
  font-size: 1.05rem;
  padding: 18px 36px;
}

/* ===== ANIMATIONS ===== */
@keyframes gradient-shift {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  25% {
    transform: translateY(-14px) rotate(1deg);
  }

  50% {
    transform: translateY(-6px) rotate(-1deg);
  }

  75% {
    transform: translateY(-20px) rotate(0.5deg);
  }
}

@keyframes pulse-glow {

  0%,
  100% {
    opacity: 0.4;
    transform: scale(1);
  }

  50% {
    opacity: 0.7;
    transform: scale(1.04);
  }
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scale-in {
  from {
    opacity: 0;
    transform: scale(0.92);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes scroll-wheel {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(8px);
    opacity: 0;
  }
}

@keyframes badge-dot-pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.4);
    opacity: 0.7;
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
  transition-delay: var(--delay, 0s);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== PARTICLES (subtle on light) ===== */
.particles-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(var(--primary-rgb), 0.18);
  border-radius: 50%;
  animation: float-particle 22s infinite ease-in-out;
  will-change: transform, opacity;
}

@keyframes float-particle {

  0%,
  100% {
    transform: translate(0, 0);
    opacity: 0.15;
  }

  25% {
    transform: translate(60px, -60px);
    opacity: 0.3;
  }

  50% {
    transform: translate(-30px, -120px);
    opacity: 0.2;
  }

  75% {
    transform: translate(-60px, -60px);
    opacity: 0.25;
  }
}

@media (max-width: 768px) {
  .particle:nth-child(n+20) {
    display: none;
  }
}

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1010;
  background: #0B1F3B;
  color: #fff;
  text-align: center;
  padding: 10px 60px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: var(--announcement-height);
}

/* ===== PAGE VIEWS ===== */
.page-view {
  display: none;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
  min-height: calc(100vh - 120px);
  padding-top: var(--navbar-height);
  position: relative;
  z-index: 1;
}

.page-view.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
  animation: pageFadeIn 0.8s var(--ease-out-expo) forwards;
}

@keyframes pageFadeIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.99);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

:root {
  --navbar-height: 80px;
  --announcement-height: 0px;
}


.announcement-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  cursor: pointer;
  line-height: 1;
  padding: 4px 6px;
  border-radius: 4px;
  transition: all 0.2s;
}

.announcement-close:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 10px 0;
  background: rgba(11, 31, 59, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(43, 127, 212, 0.18);
  transition: all 0.35s ease, top 0.3s ease;
}

.navbar.scrolled {
  background: rgba(11, 31, 59, 0.98);
  border-bottom-color: rgba(43, 127, 212, 0.28);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.35);
  padding: 10px 0;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo {
  height: 52px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.nav-name {
  font-family: 'DM Serif Display', serif;
  font-size: 1rem;
  color: var(--text-primary);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  justify-content: flex-end;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.84rem;
  font-weight: 500;
  color: rgba(200, 225, 245, 0.82);
  padding: 6px 10px;
  border-radius: 7px;
  transition: color 0.2s ease, background 0.2s ease;
  position: relative;
  white-space: nowrap;
}

.nav-link:hover {
  color: #fff;
  background: rgba(43, 127, 212, 0.18);
}

.nav-link.active {
  color: #4FA3E8;
}

.nav-chevron {
  transition: transform 0.22s ease;
  flex-shrink: 0;
  opacity: 0.6;
}

.nav-item--dropdown:hover .nav-chevron {
  transform: rotate(180deg);
  opacity: 1;
}

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: 100%;
  padding-top: 10px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 240px;
  background: rgba(13, 37, 72, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(43, 127, 212, 0.28);
  border-radius: 14px;
  padding: 8px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(43, 127, 212, 0.1);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s var(--ease-out-expo);
  z-index: 200;
}

/* Invisible bridge to handle the hover gap */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  z-index: -1;
}

.nav-item--dropdown:hover .nav-dropdown,
.nav-item--dropdown:focus-within .nav-dropdown,
.nav-item--dropdown .nav-link:focus+.nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 13px;
  border-radius: 8px;
  transition: background 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.nav-dropdown-item:hover {
  background: rgba(43, 127, 212, 0.12);
}

.nav-dropdown-icon {
  font-size: 1.1rem;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(43, 127, 212, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-dropdown-item strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}

.nav-dropdown-item small {
  display: block;
  font-size: 0.75rem;
  color: rgba(168, 212, 245, 0.6);
  line-height: 1.3;
  margin-top: 1px;
}

.nav-cta-btn {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #fff;
  padding: 12px 24px;
  border-radius: 7px;
  border: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(43, 127, 212, 0.3);
  height: 44px;
  display: flex;
  align-items: center;
  cursor: pointer;
  text-transform: uppercase;
  background: linear-gradient(135deg, #1A3F6B 0%, #2B7FD4 100%);
  border: none;
  box-shadow: 0 4px 12px rgba(43, 127, 212, 0.3);
}

.nav-cta-btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.nav-cta-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.navbar.scrolled .nav-cta-btn {
  background: linear-gradient(135deg, #1A3F6B 0%, #2B7FD4 100%);
  border: none;
  box-shadow: 0 4px 12px rgba(43, 127, 212, 0.3);
}

.navbar.scrolled .nav-cta-btn:hover {
  box-shadow: 0 6px 20px rgba(43, 127, 212, 0.4);
  background: linear-gradient(135deg, #1A3F6B 0%, #2B7FD4 100%);
}

/* Lang Switcher — transparent on hero, solid on scroll */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 7px;
  padding: 4px;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: fit-content;
}

.navbar.scrolled .lang-switcher {
  background: rgba(184, 158, 158, 0.06);
  border: 1px solid rgba(43, 127, 212, 0.2);
}

.lang-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--blue-900);

  border: none;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.lang-btn:hover {
  color: var(--blue-700);
  background: rgba(43, 127, 212, 0.08);
}

.lang-btn.active {
  background: var(--blue-500);
  color: #fff;
  box-shadow: 0 2px 8px rgba(43, 127, 212, 0.3);
}


.navbar.scrolled .lang-btn:hover {
  color: #fff;
  background: rgba(43, 127, 212, 0.15);
}

.navbar.scrolled .lang-btn.active {
  box-shadow: 0 2px 8px rgba(43, 127, 212, 0.4);
}

/* Mobile nav toggle */
.nav-right-mobile {
  display: none;
  align-items: center;
  gap: 10px;
}

.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  transition: background 0.2s;
}

.mobile-menu-toggle:hover {
  background: rgba(43, 127, 212, 0.2);
}

.mobile-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(200, 225, 245, 0.85);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transition: all 0.4s var(--ease-out-expo);
  border-top: 1px solid rgba(43, 127, 212, 0.2);
  background: #0d2548;
  z-index: 1000;
}

.mobile-nav.open {
  max-height: 100vh;
  opacity: 1;
  visibility: visible;
  padding: 12px 20px 20px;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mobile-nav-link {
  display: block;
  padding: 10px 12px;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(168, 212, 245, 0.8);
  border-radius: 8px;
  transition: all 0.2s;
}

.mobile-nav-link:hover {
  color: #fff;
  background: rgba(43, 127, 212, 0.18);
}

.mobile-nav-group {
  margin-bottom: 4px;
}

.mobile-nav-group-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(168, 212, 245, 0.65);
  padding: 10px 12px 4px;
}

.mobile-nav-sub {
  font-size: 0.88rem;
  padding: 7px 12px 7px 20px;
  color: rgba(168, 212, 245, 0.65);
}

.mobile-cta {
  display: block !important;
  text-align: center;
  margin-top: 10px;
  padding: 14px !important;
  background: var(--grad-blue) !important;
  border-radius: 10px !important;
  color: #fff !important;
  font-weight: 600 !important;
}

.lang-switcher--mobile {
  background: var(--bg-tertiary);
}

/* Responsive Navbar */
@media (max-width: 1024px) {
  .nav-container {
    gap: 32px;
    padding: 0 28px;
    height: 64px;
  }

  .nav-left,
  .nav-right {
    gap: 28px;
  }

  .nav-logo {
    height: 38px;
    max-width: 140px;
  }

  .nav-link {
    font-size: 0.82rem;
    padding: 7px 10px;
  }

  .nav-cta-btn {
    padding: 9px 18px;
    font-size: 0.82rem;
  }
}

@media (max-width: 768px) {
  .navbar {
    height: 60px;
  }

  .nav-container {
    padding: 0 18px;
    gap: 12px;
    height: 60px;
  }

  .nav-left,
  .nav-right,
  .nav-links {
    display: none;
  }

  .nav-brand {
    flex: 1;
    justify-content: center;
  }

  .nav-logo {
    height: 36px;
    max-width: 110px;
  }

  .nav-right-mobile {
    display: flex;
    gap: 12px;
  }

  .hero {
    padding-top: 40px;
  }

  .hero--subpage {
    margin-top: -60px;
    padding-top: 70px;
    min-height: 55vh !important;
  }
}

@media (max-width: 480px) {
  .navbar {
    height: 56px;
  }

  .nav-container {
    padding: 0 14px;
    gap: 10px;
    height: 36px;
  }

  .nav-logo {
    height: 32px;
    max-width: 95px;
  }

  .nav-right-mobile {
    gap: 10px;
  }

  .lang-switcher {
    padding: 3px;
    gap: 1px;
  }

  .lang-btn {
    font-size: 10px;
    padding: 4px 8px;
  }

  .mobile-menu-toggle {
    padding: 4px;
  }

  .mobile-menu-toggle span {
    width: 18px;
    height: 1.5px;
    gap: 4px;
  }

  .hero {
    padding-top: 30px;
  }

  .hero--subpage {
    margin-top: -56px;
    padding-top: 60px;
    min-height: 50vh !important;
  }
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding-top: 60px;
  padding-bottom: 80px;
  z-index: 1;
  background: var(--grad-hero);
}

/* Dot grid texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(var(--primary-rgb), 0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.hero-bg-radial {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse at top right, rgba(var(--primary-rgb), 0.1) 0%, transparent 65%);
  pointer-events: none;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-800);
  background: rgba(var(--primary-rgb), 0.08);
  border: 1px solid var(--border-strong);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
  animation: fade-in-up 0.8s var(--ease-out-expo) both;
}

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

.hero-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 24px;
  animation: fade-in-up 0.8s var(--ease-out-expo) 0.1s both;
}

.hero-title em {
  font-style: italic;
  color: var(--blue-500);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-tertiary);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 36px;
  animation: fade-in-up 0.8s var(--ease-out-expo) 0.2s both;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
  animation: scale-in 0.6s var(--ease-spring) 0.35s both;
}

.hero-trust {
  display: flex;
  gap: 32px;
  animation: fade-in-up 0.7s var(--ease-out-expo) 0.5s both;
  padding-top: 32px;
  border-top: 1px solid var(--border-default);
}

.hero-trust-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-trust-num {
  font-family: 'DM Serif Display', serif;
  font-size: 1.9rem;
  color: var(--text-primary);
  line-height: 1;
}

.hero-trust-plus {
  color: var(--blue-500);
  font-family: 'DM Serif Display', serif;
  font-size: 1.6rem;
}

.hero-trust-label {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  font-weight: 500;
}

.hero-trust-divider {
  width: 1px;
  background: var(--border-default);
  align-self: stretch;
}

/* ============================================
   HERO V3 — FRAMING LAYOUT
   ============================================ */

.hero--dark {
  background: #050a17;
  position: relative;
  overflow: hidden;
}

.hero--dark::before {
  display: none;
}

/* ===== SUB-HERO (Static Images) ===== */
.hero--subpage {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 60vh !important;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 140px;
  z-index: 2;
}

.hero--subpage::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(5, 10, 23, 0.85) 0%, rgba(5, 10, 23, 0.4) 50%, transparent 100%);
  z-index: 1;
}

.hero--subpage .container {
  max-width: 1400px;
  margin-left: 0;
  padding-left: 8%;
  z-index: 5;
}

.hero--subpage .hero-title-main {
  color: #fff !important;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
}

.hero--subpage .hero-subtitle-centered {
  color: rgba(255, 255, 255, 0.95) !important;
  font-size: 1.05rem;
}

/* ===== VIDEO BACKGROUND ===== */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-video-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0;
  transition: opacity 1s ease;
  will-change: opacity;
  transform: scale(1);
}

.hero-video-bg.is-loaded {
  opacity: 1;
}

/* Cinematic dark blue overlay for depth and legibility */
.hero-video-overlay {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(circle at center, rgba(5, 10, 23, 0.1) 0%, rgba(5, 10, 23, 0.75) 100%);
  pointer-events: none;
}

.hero-video-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(5, 10, 23, 0.4) 0%, transparent 30%, transparent 70%, rgba(5, 10, 23, 0.4) 100%);
  pointer-events: none;
}

/* Removed bottom fade as requested */
.hero-bottom-fade {
  display: none;
}

/* Removed texture as requested */
.hero-texture {
  display: none;
}

/* Network / Travel Animation - More subtle over video */
.bg-network-svg {
  width: 140%;
  height: 140%;
  position: absolute;
  top: -20%;
  left: -20%;
  opacity: 0.15;
  filter: blur(1px);
  z-index: 1;
  pointer-events: none;
}

.network-line {
  fill: none;
  stroke: rgba(147, 197, 253, 0.2);
  stroke-width: 1.5;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: network-line-anim 10s linear infinite;
}

@keyframes network-line-anim {
  0% {
    stroke-dashoffset: 1000;
    opacity: 0;
  }

  10% {
    opacity: 0.6;
  }

  80% {
    opacity: 0.6;
  }

  100% {
    stroke-dashoffset: 0;
    opacity: 0;
  }
}

.network-dot {
  fill: #60A5FA;
  filter: drop-shadow(0 0 8px rgba(96, 165, 250, 0.8));
  transform-origin: center;
  animation: network-dot-pulse 4s ease-in-out infinite;
}

@keyframes network-dot-pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.3;
  }

  50% {
    transform: scale(1.6);
    opacity: 0.7;
  }
}

.network-group {
  transform-origin: center center;
  animation: network-rotate 240s linear infinite;
}

@keyframes network-rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Background Animated Globe */
.hero-visual-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120vh;
  height: 120vh;
  z-index: 0;
  /* Globe layer - behind video if needed */
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, rgba(43, 127, 212, 0.03) 0%, transparent 70%);
}

#globe-canvas-container canvas {
  filter: drop-shadow(0 0 80px rgba(43, 127, 212, 0.15));
  max-width: 100%;
  max-height: 100%;
}

/* Ensure hero section has a clean light background when hero--dark is removed */
.hero:not(.hero--dark) {
  background: var(--grad-hero);
}

.hero:not(.hero--dark) .hero-title-main {
  color: var(--text-primary);
}

#globe-canvas-container canvas {
  filter: drop-shadow(0 0 50px rgba(43, 127, 212, 0.1));
}

.bg-globe-svg {
  width: 100%;
  height: 100%;
  filter: blur(2px);
}

.hero-container-v3 {
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 24px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 5;
  /* Content layer - top */
}

.hero-content-centered {
  max-width: 700px;
  text-align: center;
  z-index: 5;
}

/* BOTTOM CARDS ROW */
.hero-side-cards {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
  max-width: 960px;
  justify-content: center;
  pointer-events: auto;
}

.side-left,
.side-right {
  align-items: center;
}

/* COURSE FLASHCARDS */
.course-flashcard {
  flex: 1 1 260px;
  max-width: 300px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease-out-expo), background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.course-flashcard:hover {
  transform: translateY(-8px) scale(1.02);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(79, 163, 232, 0.4);
  box-shadow: 0 24px 64px rgba(43, 127, 212, 0.25);
}

.card-accent-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #2B7FD4;
}

.course-icon {
  font-size: 24px;
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.05);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.course-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.course-details {
  font-size: 13px;
  color: rgba(200, 232, 248, 0.7);
  line-height: 1.5;
  margin-bottom: 20px;
}

.course-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.course-meta span {
  font-size: 11px;
  font-weight: 600;
  color: rgba(168, 212, 245, 0.5);
}

.meta-tag {
  background: rgba(43, 127, 212, 0.1);
  color: #4FA3E8;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 10px;
}

/* ===== HERO ENTRANCE ANIMATIONS ===== */
@keyframes hero-enter {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero--dark .hero-new-pill {
  animation: hero-enter 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) both;
  animation-delay: 0.3s;
}

.hero--dark .hero-title-main {
  animation: hero-enter 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) both;
  animation-delay: 0.5s;
}

.hero--dark .hero-subtitle-centered {
  animation: hero-enter 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) both;
  animation-delay: 0.68s;
}

.hero--dark .hero-ctas-centered {
  animation: hero-enter 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) both;
  animation-delay: 0.85s;
}

.hero--dark .hero-side-cards .course-flashcard:nth-child(1) {
  animation: hero-enter 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) both;
  animation-delay: 1.0s;
}

.hero--dark .hero-side-cards .course-flashcard:nth-child(2) {
  animation: hero-enter 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) both;
  animation-delay: 1.15s;
}

.hero--dark .hero-side-cards .course-flashcard:nth-child(3) {
  animation: hero-enter 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) both;
  animation-delay: 1.3s;
}

/* Enhanced glassmorphism for cards over video */
.hero--dark .course-flashcard {
  background: rgba(8, 16, 40, 0.52);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.hero--dark .course-flashcard:hover {
  background: rgba(8, 16, 40, 0.72);
  border-color: rgba(79, 163, 232, 0.32);
  box-shadow: 0 20px 56px rgba(43, 127, 212, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: translateY(-6px) scale(1.01);
}

/* Text depth for legibility over video */
.hero--dark .hero-title-main {
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.55);
}

.hero--dark .hero-subtitle-centered {
  text-shadow: 0 1px 20px rgba(0, 0, 0, 0.4);
}

/* REUSED STYLES */
.hero-new-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0b1f3b;
  border: 1px solid rgba(43, 127, 212, 0.3);
  padding: 6px 16px;
  border-radius: 100px;
  color: #93C5FD;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.hero-title-main {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.1;
  color: #fff;
  margin-bottom: 24px;
}

.text-accent {
  color: #fff;
  font-style: italic;
}

.hero-title-main em {
  color: #fff;
  font-style: italic;
}

.hero-subtitle-centered {
  font-size: 1.1rem;
  color: rgba(200, 232, 248, 0.82);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.btn-primary-v2 {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #2B7FD4;
  color: #fff;
  padding: 16px 36px;
  border-radius: 100px;
  font-weight: 600;
  box-shadow: 0 8px 32px rgba(43, 127, 212, 0.4), 0 0 0 0 rgba(43, 127, 212, 0.4);
  transition: all 0.3s ease;
  animation: hero-cta-pulse 3s infinite;
}

@keyframes hero-cta-pulse {
  0% {
    box-shadow: 0 8px 32px rgba(43, 127, 212, 0.4), 0 0 0 0 rgba(43, 127, 212, 0.5);
  }

  70% {
    box-shadow: 0 8px 32px rgba(43, 127, 212, 0.4), 0 0 0 15px rgba(43, 127, 212, 0);
  }

  100% {
    box-shadow: 0 8px 32px rgba(43, 127, 212, 0.4), 0 0 0 0 rgba(43, 127, 212, 0);
  }
}

.btn-primary-v2:hover {
  transform: translateY(-2px) scale(1.02);
  background: #3b8fe4;
  box-shadow: 0 12px 40px rgba(43, 127, 212, 0.5);
}

/* Animations */
.float-1 {
  animation: float 6s ease-in-out infinite;
}

.float-2 {
  animation: float 8s ease-in-out infinite 0.5s;
}

.float-3 {
  animation: float 7s ease-in-out infinite 1s;
}

@media (prefers-reduced-motion: reduce) {

  .float-1,
  .float-2,
  .float-3 {
    animation: none;
  }

  .course-flashcard {
    transition: none;
  }

  .hero--dark .hero-new-pill,
  .hero--dark .hero-title-main,
  .hero--dark .hero-subtitle-centered,
  .hero--dark .hero-ctas-centered,
  .hero--dark .hero-side-cards .course-flashcard:nth-child(1),
  .hero--dark .hero-side-cards .course-flashcard:nth-child(2),
  .hero--dark .hero-side-cards .course-flashcard:nth-child(3) {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .hero-video-bg {
    transition: none;
    opacity: 0.72;
  }
}

@media (max-width: 1200px) {
  .hero-container-v3 {
    padding-top: 80px;
  }
}

@media (max-width: 768px) {
  .hero-side-cards {
    flex-direction: column;
    align-items: center;
  }

  .course-flashcard {
    width: 100%;
    max-width: 340px;
  }

  .hero-title-main {
    font-size: 2.5rem;
  }

  .hero-visual-bg {
    width: 100vw;
    height: 100vw;
  }
}

/* Restore Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.4;
  z-index: 10;
}

.scroll-mouse {
  width: 22px;
  height: 36px;
  border: 2px solid #fff;
  border-radius: 12px;
  position: relative;
}

.scroll-wheel {
  width: 2px;
  height: 6px;
  background: #fff;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
  animation: scroll-wheel 2s infinite;
}

/* ===== SOCIAL PROOF BAR (PREMIUM) ===== */
.social-proof {
  padding: 45px 0;
  background: linear-gradient(to right, #ffffff, #fcfdfe, #ffffff);
  border-top: 1px solid rgba(43, 127, 212, 0.08);
  border-bottom: 1px solid rgba(43, 127, 212, 0.08);
  position: relative;
  overflow: hidden;
  z-index: 10;
}

/* Subtle background glow */
.social-proof::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle, rgba(43, 127, 212, 0.03) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.sp-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.sp-badge-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 9999px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: #1F2937;
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.sp-badge-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.sp-badge-pill span:first-child {
  font-size: 16px;
}

.sp-divider {
  width: 1px;
  height: 24px;
  background: linear-gradient(to bottom, transparent, rgba(43, 127, 212, 0.15), transparent);
  margin: 0 4px;
}

@media (max-width: 768px) {
  .sp-badges {
    gap: 16px;
  }

  .sp-divider {
    display: none;
  }
}

/* ===== B2B STRIP ===== */
.b2b-strip {
  padding: 100px 0;
  background: var(--bg-primary);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.b2b-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(var(--primary-rgb), 0.05) 0%, transparent 70%);
  pointer-events: none;
}

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

.b2b-feature {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px;
  border-left: 3px solid var(--border);
  border-radius: 0 16px 16px 0;
  border-top: 1px solid var(--border);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
  transition: all 0.35s var(--ease-out-expo);
}

.b2b-feature:hover {
  border-left-color: var(--blue-500);
  box-shadow: var(--shadow-blue);
  transform: translateY(-3px);
}

.b2b-feature-icon {
  font-size: 2rem;
  line-height: 1;
}

.b2b-feature h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  color: var(--text-primary);
  line-height: 1.3;
}

.b2b-feature p {
  font-size: 0.9rem;
  color: var(--text-tertiary);
  line-height: 1.65;
}

/* ===== SERVICES ===== */
.services {
  padding: 110px 0;
  position: relative;
  z-index: 1;
  background: var(--bg-secondary);
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--primary-rgb), 0.2), transparent);
}

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

/* Flip Cards */
.service-card-flip {
  height: 360px;
  perspective: 1200px;
}

.service-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.75s cubic-bezier(0.4, 0.2, 0.2, 1);
}

.service-card-flip:hover .service-card-inner {
  transform: rotateY(180deg);
}

.service-card-front,
.service-card-back {
  position: absolute;
  inset: 0;
  border-radius: 18px;
  overflow: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* Front */
.service-card-front {
  background: var(--bg-secondary);
}

.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card-flip:hover .service-image {
  transform: scale(1.06);
}

.service-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 22px 22px;
  background: linear-gradient(to top, rgba(11, 31, 59, 0.94) 0%, rgba(11, 31, 59, 0.65) 50%, transparent 100%);
}

.service-front-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-300);
  margin-bottom: 6px;
}

.service-title-front {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  color: #fff;
  line-height: 1.25;
}

/* Gradient front (cards without photo) */
.service-card-front--gradient {
  background: linear-gradient(135deg, #0B1F3B 0%, #1A3F6B 60%, #2B7FD4 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.service-card-front--gradient2 {
  background: linear-gradient(135deg, #071828 0%, #0B1F3B 40%, #1A3F6B 100%);
}

.service-gradient-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -65%);
  font-size: 4rem;
  opacity: 0.25;
}

.service-overlay--minimal {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, transparent 100%);
}

/* Back */
.service-card-back {
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 26px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.service-back-icon {
  font-size: 1.8rem;
  margin-bottom: 2px;
}

.service-title-back {
  font-family: 'DM Serif Display', serif;
  font-size: 1.15rem;
  color: var(--text-primary);
  line-height: 1.25;
}

.service-description {
  font-size: 0.88rem;
  color: var(--text-tertiary);
  line-height: 1.65;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.feature-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue-800);
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px 11px;
}



.service-cta {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue-500);
  margin-top: 6px;
  transition: color 0.2s;
}

.service-cta:hover {
  color: var(--blue-800);
}

/* ===== CERTIFICATIONS ===== */
.certifications {
  padding: 110px 0;
  background: var(--bg-tertiary);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.certifications::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(var(--primary-rgb), 0.07) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.cert-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(var(--primary-rgb), 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
}

.cert-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  background: var(--bg-card);
  border-top: 3px solid var(--blue-500);
}

.cert-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
}

.cert-card:nth-child(1) {
  border-top-color: var(--blue-800);
}

.cert-card:nth-child(2) {
  border-top-color: var(--blue-500);
}

.cert-card:nth-child(3) {
  border-top-color: var(--blue-400);
}

.cert-badge-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cert-shield {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: #fff;
  background: var(--blue-800);
  padding: 8px 16px;
  border-radius: 8px;
  letter-spacing: 0.06em;
  min-width: 60px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.cert-shield--tkt {
  background: var(--blue-500);
}

.cert-shield--c2 {
  background: linear-gradient(135deg, #2B7FD4, #60A5FA);
}

.cert-issuer {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.cert-name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem;
  color: var(--text-primary);
  line-height: 1.2;
}

.cert-full {
  font-size: 12px;
  font-weight: 600;
  color: var(--blue-500);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.cert-desc {
  font-size: 0.9rem;
  color: var(--text-tertiary);
  line-height: 1.7;
  flex: 1;
}

.cert-icon-row {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-top: 16px;
  border-top: 1px solid var(--border-default);
  margin-top: auto;
}

.cert-star {
  color: #F59E0B;
  font-size: 0.9rem;
}

.cert-level {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-left: 6px;
}

/* ===== TRANSLATION & INTERPRETATION ===== */
.translation-section {
  padding: 110px 0 50px 0;
  background: var(--bg-primary);
  position: relative;
  z-index: 1;
}

.lang-flags-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 64px;
  padding: 20px 32px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.lang-flag-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.lang-flag-emoji {
  font-size: 1.8rem;
  line-height: 1;
}

.lang-flag-item span {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.lang-flag-connector {
  font-size: 1.5rem;
  color: var(--blue-500);
  font-weight: 700;
}

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

.trans-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow-md);
  transition: all 0.4s var(--ease-out-expo);
}

.trans-card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-blue);
  transform: translateY(-4px);
}

.trans-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.trans-flags {
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 2px;
}

.trans-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-800);
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  padding: 4px 12px;
  border-radius: 100px;
}

.trans-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  color: var(--text-primary);
  line-height: 1.3;
}

.trans-desc {
  font-size: 0.9rem;
  color: var(--text-tertiary);
  line-height: 1.7;
  flex: 1;
}

/* ===== DIFFERENTIATOR ===== */
.differentiator {
  padding: 110px 0;
  position: relative;
  background: var(--bg-secondary);
  overflow: hidden;
  z-index: 1;
}

.differentiator::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--primary-rgb), 0.2), transparent);
}

.diff-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(var(--primary-rgb), 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.diff-text {
  font-size: 1.05rem;
  color: var(--text-tertiary);
  line-height: 1.75;
  margin-bottom: 36px;
}

.diff-points {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.diff-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.diff-point-icon {
  width: 32px;
  height: 32px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-500);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 1rem;
}

.diff-point strong {
  display: block;
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 4px;
}

.diff-point p {
  font-size: 0.9rem;
  color: var(--text-tertiary);
  line-height: 1.65;
}

/* Compare card */
.diff-card {
  margin-bottom: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.diff-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: start;
}

.diff-col-header {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-default);
}

.diff-col--them .diff-col-header {
  color: var(--text-muted);
}

.diff-col--us .diff-col-header {
  color: var(--blue-500);
}

.diff-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.diff-col--them li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
}

.diff-col--them li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--text-muted);
}

.diff-col--us li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding-left: 18px;
  position: relative;
}

.diff-col--us li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--blue-500);
  font-weight: 700;
}

.diff-vs {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  color: var(--text-muted);
  padding-top: 4px;
  font-style: italic;
}

/* Stats grid */
.diff-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.diff-stat {
  text-align: center;
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.diff-stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 2.1rem;
  color: var(--text-primary);
  line-height: 1;
}

.diff-stat-plus {
  color: var(--blue-500);
}

.diff-stat-label {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  font-weight: 500;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 25px 0 80px 0;
  position: relative;
  z-index: 1;
  background: var(--bg-primary);
  overflow: hidden;
}

.testimonials-carousel {
  width: 100%;
  overflow: hidden;
  padding: 10px 0;
}

.testimonials-track {
  display: flex;
  width: max-content;
  gap: 24px;
  animation: scroll-left 45s linear infinite;
}

/* Removed hover pause per user request */

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 12px));
    /* -50% plus half of one gap to stay perfectly aligned */
  }
}

.testimonial-card {
  width: 420px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.testimonial-stars {
  color: #F59E0B;
  font-size: 0.9rem;
  letter-spacing: 3px;
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.78;
  font-style: italic;
  flex: 1;
}

.testimonial-card blockquote::before {
  content: '"';
}

.testimonial-card blockquote::after {
  content: '"';
}

.testimonial-author {
  display: flex;
  gap: 14px;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--border-default);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--grad-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
  letter-spacing: 0.04em;
  color: #fff;
  box-shadow: 0 4px 12px rgba(43, 127, 212, 0.3);
  border: 2px solid rgba(43, 127, 212, 0.3);
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ===== ABOUT ===== */
.about {
  padding: 110px 0;
  background: var(--bg-secondary);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

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

.about-image-wrap {
  position: relative;
  width: 220px;
  height: 220px;
  margin: 0 auto 24px;
}

.about-glow {
  position: absolute;
  inset: -24px;
  background: radial-gradient(ellipse, rgba(var(--primary-rgb), 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse-glow 4s ease-in-out infinite;
}

.about-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 20px;
  border: 1px solid var(--border-strong);
  background: var(--bg-card);
  padding: 16px;
  box-shadow: var(--shadow-lg);
}

.about-credentials {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.credential-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  border-radius: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
}

.cred-icon {
  font-size: 1.1rem;
}

.about-content .section-title {
  max-width: 520px;
}

.about-text {
  font-size: 1rem;
  color: var(--text-tertiary);
  line-height: 1.78;
  margin-bottom: 20px;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 28px;
}

.about-value {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-tertiary);
  padding: 12px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.about-value-icon {
  font-size: 1rem;
}

/* ===== PRICING ===== */
.pricing {
  padding: 110px 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: var(--bg-tertiary);
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.pricing-group-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-500);
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}

.pricing-cards-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 720px;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.pricing-card--featured {
  border-color: var(--blue-500);
  border-width: 2px;
  box-shadow: var(--shadow-blue);
}

.pricing-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.pricing-badge--featured {
  color: var(--blue-500);
}

.pricing-hours {
  font-family: 'DM Serif Display', serif;
  font-size: 2.2rem;
  color: var(--text-primary);
  line-height: 1;
}

.pricing-hours span {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 400;
}

.pricing-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blue-800);
}

.pricing-price span {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 400;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 1;
}

.pricing-features li {
  font-size: 0.88rem;
  color: var(--text-tertiary);
  padding-left: 18px;
  position: relative;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--blue-500);
  font-weight: 700;
}

.pricing-btn {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

.pricing-footer {
  text-align: center;
  padding-top: 48px;
  border-top: 1px solid var(--border-default);
  margin-top: 48px;
}

.pricing-footer p {
  font-size: 0.9rem;
  color: var(--text-tertiary);
  line-height: 1.7;
}

.pricing-note {
  margin-top: 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.pricing-contact-link {
  color: var(--blue-500);
  font-weight: 600;
  transition: color 0.2s;
}

.pricing-contact-link:hover {
  color: var(--blue-800);
}

/* ===== FINAL CTA ===== */
.final-cta {
  padding: 140px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(155deg, #0B1F3B 0%, #1A3F6B 50%, #2B7FD4 100%);
  z-index: 1;
}

/* Dot texture on dark CTA */
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 28px 28px;
}

.final-cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.final-cta-content .section-label {
  color: var(--blue-300);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

.final-cta-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 20px;
}

.final-cta-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.78;
  margin-bottom: 40px;
}

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

/* Override btn-outline for dark bg */
.final-cta .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

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

.pulse-btn {
  animation: gradient-shift 4s ease infinite, pulse-glow-btn 3s ease-in-out infinite;
}

@keyframes pulse-glow-btn {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.2);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
    transform: scale(1.02);
  }
}

.tab-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.prog-tab-image:hover .tab-img {
  transform: scale(1.08);
}

.final-cta-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.04em;
}

/* ===== FOOTER ===== */
.footer {
  padding: 72px 0 32px;
  background: var(--bg-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 1;
}

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

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

.footer-logo {
  height: 48px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

.footer-tagline {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  color: var(--blue-300);
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.footer-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 24px;
}

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

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  transition: all 0.25s ease;
}

.social-link:hover {
  border-color: var(--blue-500);
  color: var(--blue-400);
  background: rgba(var(--primary-rgb), 0.15);
}

.footer-links-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--blue-400);
}

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

.footer-contact span,
.footer-contact a {
  font-size: 0.85rem !important;
  color: rgba(255, 255, 255, 0.4) !important;
}

.contact-icon {
  font-size: 14px;
  color: var(--blue-400);
  flex-shrink: 0;
  margin-top: 1px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: var(--blue-400);
}

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

/* Tablet: 1024 – 1279px */
@media (max-width: 1279px) {
  .b2b-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet: 768–1023px */
@media (max-width: 1023px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-content {
    order: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-subtitle,
  .hero-badge {
    text-align: center;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-visual-wrap {
    order: 2;
  }

  .hero-image {
    max-width: 480px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cert-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .trans-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .diff-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .nav-links {
    gap: 6px;
  }

  .nav-link {
    font-size: 0.78rem;
    padding: 5px 7px;
  }
}

/* Mobile: < 768px */
@media (max-width: 767px) {
  :root {
    --announcement-height: 52px;
    --navbar-height: 64px;
  }

  .hero {

    padding-bottom: 60px;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .final-cta-title {
    font-size: 1.9rem;
  }

  .hero-trust {
    gap: 20px;
  }

  .hero-trust-num {
    font-size: 1.5rem;
  }

  .nav-links {
    display: none;
  }

  .nav-right-mobile {
    display: flex;
  }

  .b2b-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .cert-grid {
    grid-template-columns: 1fr;
  }

  .trans-grid {
    grid-template-columns: 1fr;
  }

  .service-card-flip {
    height: 320px;
  }

  .service-card-flip.flipped .service-card-inner {
    transform: rotateY(180deg);
  }

  @media (hover: none) {
    .service-card-flip:hover .service-card-inner {
      transform: none;
    }
  }

  .testimonial-card {
    width: 320px;
  }

  .pricing-cards-row {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .diff-compare {
    grid-template-columns: 1fr;
  }

  .diff-vs {
    display: none;
  }

  .diff-stats {
    grid-template-columns: 1fr 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .final-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-large {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .sp-divider {
    display: none;
  }

  .lang-flags-strip {
    flex-wrap: wrap;
    gap: 12px;
    padding: 16px;
  }

  .announcement-bar {
    font-size: 11px;
    padding: 8px 50px;
  }
}

/* ===== PRINT ===== */
@media print {

  .announcement-bar,
  .particles-bg,
  .scroll-indicator {
    display: none !important;
  }
}

/* ===== HERO DARK OVERRIDE ===== */
.hero--dark .hero-title {
  color: #fff !important;
}

.hero--dark .hero-subtitle {
  color: rgba(200, 232, 248, 0.85) !important;
}

.hero-btn-outline {
  color: rgba(255, 255, 255, 0.9) !important;
  border-color: rgba(255, 255, 255, 0.4) !important;
  background: transparent !important;
}

.hero-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(255, 255, 255, 0.7) !important;
  color: #fff !important;
}

/* ===== CAMBRIDGE TRUST BAR ===== */
.trust-bar-section {
  background: #fff;
  border-bottom: 1px solid rgba(43, 127, 212, 0.1);
  padding: 2rem 0;
}

.trust-bar-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.trust-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 0 2rem;
}

.trust-bar-num {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  color: #0B1F3B;
  line-height: 1.1;
}

.serif-font {
  font-family: 'DM Serif Display', serif;
}

.serif-italic-font {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
}

.trust-bar-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7FA3BF;
}

.trust-bar-divider {
  width: 1px;
  height: 40px;
  background: rgba(43, 127, 212, 0.2);
}

/* Overrides for prominent version if needed */
.social-proof--prominent {
  padding: 50px 0 !important;
}

.sp-badge--large {
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  padding: 12px 28px !important;
}

.sp-badge--large .sp-icon {
  width: 28px !important;
  height: 28px !important;
  font-size: 1rem !important;
}

/* ===== TRANSFORMACIÓN — BENTO IMAGE-HERO ===== */
.transformacion-section {
  padding: 120px 0;
  background: var(--bg-secondary);
}

/* Bento grid: 2 featured + 2 standard */
.transform-bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ---- Card base ---- */
.transform-card-v2 {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 300px;
  cursor: default;
  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(43, 127, 212, 0.08);
  transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s var(--ease-out-expo);
}

.transform-card-v2--featured {
  min-height: 400px;
}

/* Image — fills entire card */
.transform-card-v2__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo), filter 0.6s ease;
  will-change: transform;
}

/* Gradient scrim — bottom overlay for text legibility */
.transform-card-v2__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px 28px;
  background: linear-gradient(0deg,
      rgba(8, 18, 38, 0.88) 0%,
      rgba(8, 18, 38, 0.55) 40%,
      rgba(8, 18, 38, 0.08) 70%,
      transparent 100%);
  z-index: 1;
  transition: background 0.5s ease;
}

/* Emoji tag */
.transform-card-v2__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 1.25rem;
  margin-bottom: 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: transform 0.4s var(--ease-out-expo), background 0.4s ease;
}

/* Typography */
.transform-card-v2 h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.3;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.transform-card-v2 p {
  font-size: 14px;
  color: rgba(200, 220, 245, 0.85);
  line-height: 1.55;
  max-width: 420px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

/* ---- Hover effects ---- */
.transform-card-v2:hover {
  transform: translateY(-6px);
  box-shadow:
    0 24px 60px -12px rgba(43, 127, 212, 0.28),
    0 0 0 1px rgba(43, 127, 212, 0.2);
}

.transform-card-v2:hover .transform-card-v2__img {
  transform: scale(1.08);
}

.transform-card-v2:hover .transform-card-v2__overlay {
  background: linear-gradient(0deg,
      rgba(8, 18, 38, 0.92) 0%,
      rgba(8, 18, 38, 0.6) 45%,
      rgba(8, 18, 38, 0.1) 75%,
      transparent 100%);
}

.transform-card-v2:hover .transform-card-v2__tag {
  transform: translateY(-3px);
  background: rgba(79, 163, 232, 0.25);
}

.transform-quote {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 2.5rem;
  background: linear-gradient(135deg, #0B1F3B, #1A3F6B);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.transform-quote-mark {
  font-size: 3rem;
  color: #4FA3E8;
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: 1rem;
}

.transform-quote p {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: #fff;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.transform-quote-source {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4FA3E8;
}

/* ===== HOW IT WORKS SECTION (BRAND ALIGNED) ===== */
.how-it-works-section {
  padding: 100px 0;
  background-color: var(--bg-secondary);
  text-align: center;
  position: relative;
}

.how-it-works-section .section-label {
  color: var(--blue-500) !important;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
}

.how-it-works-section .section-title {
  font-family: 'DM Serif Display', serif;
  font-size: 3rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.how-it-works-section .section-subtitle {
  color: var(--text-tertiary);
  font-size: 1.1rem;
  margin-bottom: 5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.how-it-works-steps {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1000px;
  margin: 0 auto 5rem auto;
  position: relative;
  padding: 0 50px;
}

/* Horizontal line connecting the circles */
.how-it-works-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  /* Center of the circle */
  left: 100px;
  right: 100px;
  height: 2px;
  border-top: 2px dashed var(--blue-200);
  z-index: 0;
}

.how-it-works-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 0 20px;
}

.step-circle {
  width: 80px;
  height: 80px;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  color: var(--blue-600);
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease-out-expo);
}

.how-it-works-step:hover .step-circle {
  transform: scale(1.1);
  border-color: var(--blue-400);
}

.how-it-works-step h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.how-it-works-step p {
  font-size: 0.95rem;
  color: var(--text-tertiary);
  line-height: 1.6;
}

.how-it-works-cta-container {
  display: flex;
  justify-content: center;
}

.btn-brand-cta {
  background: var(--grad-btn);
  color: #fff;
  padding: 18px 45px;
  border-radius: 50px;
  /* Aligned with other buttons */
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  transition: all 0.35s var(--ease-out-expo);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-blue);
  text-transform: uppercase;
}

.btn-brand-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(43, 127, 212, 0.4);
}

@media (max-width: 768px) {
  .how-it-works-steps {
    flex-direction: column;
    gap: 50px;
    padding: 0;
  }

  .how-it-works-steps::before {
    display: none;
  }

  .how-it-works-step {
    padding: 0;
  }
}

/* ===== AUDIENCE DIVIDERS ===== */
.audience-divider {
  padding: 2rem 0;
  display: flex;
  align-items: center;
}

.audience-divider .container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.audience-divider p {
  font-size: 0.95rem;
  color: var(--text-tertiary);
  font-weight: 400;
}

.audience-pill {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
}

.audience-divider--individual {
  background: #EFF6FF;
  border-top: 3px solid #2B7FD4;
}

.audience-pill--individual {
  background: linear-gradient(135deg, #2B7FD4, #4FA3E8);
  color: #fff;
}

.audience-divider--company {
  background: #0B1F3B;
  border-top: 3px solid #4FA3E8;
}

.audience-divider--company p {
  color: rgba(168, 212, 245, 0.7);
}

.audience-pill--company {
  background: rgba(79, 163, 232, 0.2);
  border: 1px solid rgba(168, 212, 245, 0.3);
  color: #A8D4F5;
}

/* ===== METODOLOGÍA SECTION ===== */
.metodologia-section {
  padding: 90px 0;
  background: #fff;
}

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

.metod-image-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(43, 127, 212, 0.12);
}

.metod-img-main {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s ease;
}

.metod-grid:hover .metod-img-main {
  transform: scale(1.03);
}

.metod-sub {
  font-size: 1.1rem;
  color: var(--text-tertiary);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.metod-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.metod-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-500), #4FA3E8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(43, 127, 212, 0.3);
}

.metod-step h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.metod-step p {
  font-size: 14px;
  color: var(--text-tertiary);
  line-height: 1.6;
}

/* ===== INDIVIDUAL PROGRAMS ===== */
.individual-programs-section {
  padding: 90px 0;
  background: var(--bg-secondary);
}

.programs-tab-nav {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.programs-tab-inner {
  background: #fff;
  border: 1px solid rgba(43, 127, 212, 0.15);
  border-radius: 100px;
  padding: 4px;
  display: flex;
  gap: 2px;
}

.prog-tab-btn {
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 100px;
  cursor: pointer;
  border: none;
  background: transparent;
  color: #7FA3BF;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.2s ease;
  letter-spacing: -0.01em;
}

.prog-tab-btn--active {
  background: linear-gradient(135deg, #0B1F3B, #2B7FD4);
  color: #fff;
  box-shadow: 0 4px 16px rgba(43, 127, 212, 0.3);
}

.prog-tab-panel {
  display: none;
}

.prog-tab-panel--active {
  display: block;
}

.prog-tab-content-wrap {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 40px;
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
}

.prog-tab-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tab-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.prog-price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (max-width: 991px) {
  .prog-tab-content-wrap {
    grid-template-columns: 1fr;
    max-width: 740px;
  }

  .prog-tab-image {
    display: none;
  }
}

.prog-price-card {
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.prog-price-card--standard {
  background: #fff;
  border: 0.5px solid rgba(43, 127, 212, 0.2);
  box-shadow: 0 4px 24px rgba(11, 31, 59, 0.06);
}

.prog-price-card--featured {
  background: linear-gradient(135deg, #1A3F6B 0%, #2B7FD4 100%);
  color: #fff;
  box-shadow: 0 16px 48px rgba(43, 127, 212, 0.3);
}

.prog-popular-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.prog-hours-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-500);
  margin-bottom: 1rem;
}

.prog-price {
  font-size: 2.6rem;
  color: #0B1F3B;
  line-height: 1;
  margin-bottom: 2px;
}

.prog-currency {
  font-size: 13px;
  color: #7FA3BF;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.prog-check-list {
  list-style: none;
}

.prog-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
  padding: 3px 0;
  color: var(--text-tertiary);
}

.prog-check-list li::before {
  content: '';
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(79, 163, 232, 0.2);
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='%234FA3E8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 2px;
}

.prog-check-list--white li {
  color: rgba(200, 232, 248, 0.9);
}

.prog-check-list--white li::before {
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='rgba(168,212,245,0.9)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.prog-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 740px;
  margin: 0 auto;
}

.prog-stat {
  background: var(--bg-secondary);
  border: 0.5px solid rgba(43, 127, 212, 0.2);
  border-radius: 14px;
  padding: 1.25rem;
  text-align: center;
}

.prog-stat-num {
  font-size: 1.5rem;
  color: #0B1F3B;
  margin-bottom: 2px;
}

.prog-stat-label {
  font-size: 11px;
  font-weight: 600;
  color: #7FA3BF;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.prog-note {
  padding: 1.25rem !important;
}

/* ===== CORPORATE PRICING ===== */
.corporate-pricing-section {
  padding: 100px 0;
  background: var(--bg-secondary);
}



.corp-featured-highlight {
  max-width: 1000px;
  margin: 0 auto;
}

.corp-highlight-card {
  display: flex;
  background: linear-gradient(135deg, #0B1F3B 0%, #1a3f6b 100%);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 60px -12px rgba(11, 31, 59, 0.4);
  position: relative;
}

.corp-highlight-content {
  flex: 1.2;
  padding: 4rem;
  color: #fff;
  z-index: 2;
}

.highlight-sub {
  color: rgba(168, 212, 245, 0.7);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.highlight-price {
  font-size: 2.8rem;
  margin-bottom: 2rem;
  line-height: 1.1;
  background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0.7));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.highlight-cta-group {
  display: flex;
  align-items: center;
  gap: 24px;
}

.brochure-link {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  text-decoration: underline;
  transition: color 0.3s;
}

.brochure-link:hover {
  color: #fff;
}

.corp-highlight-visual {
  flex: 1;
  position: relative;
  min-height: 400px;
}

.highlight-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.highlight-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, rgba(11, 31, 59, 0) 0%, rgba(11, 31, 59, 0.6) 80%, #0B1F3B 100%);
}

.corp-footer-note {
  text-align: center;
  font-size: 14px;
  color: var(--text-tertiary);
  max-width: 500px;
  margin: 0 auto;
}

/* ===== EMPIEZA HOY CTA ===== */
.empieza-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 2.5rem;
  text-align: left;
}

.empieza-step {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 1.25rem;
}

.empieza-step-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #4FA3E8;
  margin-bottom: 0.5rem;
}

.empieza-step-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.empieza-step-desc {
  font-size: 13px;
  color: rgba(168, 212, 245, 0.7);
}

/* ===== RESPONSIVE — NEW SECTIONS ===== */
@media (max-width: 900px) {
  .transform-bento {
    grid-template-columns: 1fr 1fr;
  }

  .transform-card-v2--featured {
    min-height: 320px;
  }

  .metod-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .prog-price-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .prog-stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .corp-price-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .empieza-steps {
    grid-template-columns: 1fr;
  }

  .contact-roadmap {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .roadmap-text,
  .contact-roadmap .contact-hero-title,
  .contact-roadmap .contact-hero-sub {
    text-align: center;
    max-width: 100%;
  }

  .contact-roadmap .empieza-steps::before {
    display: none;
  }

  .contact-roadmap .empieza-step {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    padding: 1.5rem;
  }


  .trust-bar-divider {
    display: none;
  }

  .trust-bar-row {
    gap: 16px;
  }

  .trust-bar-item {
    padding: 0 1rem;
  }
}

@media (max-width: 600px) {
  .transform-bento {
    grid-template-columns: 1fr;
  }

  .transform-card-v2,
  .transform-card-v2--featured {
    min-height: 280px;
  }

  .prog-stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .audience-divider .container {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ===== CONTACT (merged Empieza Hoy + Form) ===== */
.contact-hero {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.contact-roadmap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
  text-align: left;
  max-width: 1100px;
  margin: 0 auto;
}

.roadmap-text {
  max-width: 480px;
}

.contact-roadmap .contact-hero-title {
  text-align: left;
  margin-top: 0;
}

.contact-roadmap .contact-hero-sub {
  text-align: left;
  margin-bottom: 0;
}

.contact-roadmap .empieza-steps {
  margin-top: 0;
  grid-template-columns: 1fr;
  gap: 16px;
  position: relative;
}

.contact-roadmap .empieza-step {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
  padding: 1.6rem 2rem;
  position: relative;
  z-index: 1;
  transition: all 0.4s var(--ease-out-expo);
  background: rgba(255, 255, 255, 0.04);
}

.contact-roadmap .empieza-step:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(79, 163, 232, 0.5);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-roadmap .empieza-step-num {
  margin-bottom: 0;
  min-width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(79, 163, 232, 0.1);
  border: 1px solid rgba(79, 163, 232, 0.3);
  border-radius: 50%;
  font-size: 10px;
  transition: all 0.3s ease;
}

.contact-roadmap .empieza-step:hover .empieza-step-num {
  background: #4FA3E8;
  color: #fff;
  border-color: #4FA3E8;
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(79, 163, 232, 0.4);
}


.contact-hero-title {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  color: #fff;
  line-height: 1.15;
  margin: 0.5rem 0 1rem;
}

.contact-hero-sub {
  font-size: 1rem;
  color: rgba(168, 212, 245, 0.75);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.contact-wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #1aad54 0%, #25d366 100%);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: 100px;
  text-decoration: none;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-wa-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
}

.contact-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.25rem;
  color: rgba(168, 212, 245, 0.4);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.contact-divider::before,
.contact-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(43, 127, 212, 0.2);
}

/* ===== CONTACT FORM SECTION ===== */
.contact-form-section {
  background: var(--bg-dark);
  padding: 100px 0 110px;
  position: relative;
  overflow: hidden;
}

.contact-form-section::before {
  content: '';
  position: absolute;
  top: -160px;
  left: -100px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(43, 127, 212, 0.13) 0%, transparent 70%);
  pointer-events: none;
}

.contact-form-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: 5%;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79, 163, 232, 0.10) 0%, transparent 70%);
  pointer-events: none;
}

.contact-form-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
}

.contact-form-heading {
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.18;
  margin: 0.6rem 0 1rem;
}

.contact-form-heading em {
  font-style: italic;
  color: #4FA3E8;
}

.contact-form-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(168, 212, 245, 0.75);
  margin-bottom: 2rem;
  max-width: 400px;
}

.contact-form-perks {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-form-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: rgba(168, 212, 245, 0.85);
}

.contact-form-perks li svg {
  flex-shrink: 0;
  color: #4FA3E8;
}

.contact-form-direct {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.contact-direct-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(168, 212, 245, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-direct-link:hover {
  color: #4FA3E8;
}

.contact-direct-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(43, 127, 212, 0.18);
  border: 1px solid rgba(43, 127, 212, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #4FA3E8;
}

/* Form card */
.contact-form-card {
  padding: 2.5rem 2rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(43, 127, 212, 0.2);
  backdrop-filter: blur(18px);
}

.cf-row {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 1.2rem;
}

.cf-row--2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.cf-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.cf-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(168, 212, 245, 0.7);
}

.cf-required {
  color: #4FA3E8;
}

.cf-input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(43, 127, 212, 0.25);
  border-radius: 10px;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}

.cf-input::placeholder {
  color: rgba(168, 212, 245, 0.35);
}

.cf-input:focus {
  border-color: rgba(43, 127, 212, 0.65);
  box-shadow: 0 0 0 3px rgba(43, 127, 212, 0.12);
}

.cf-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%234FA3E8' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}

.cf-select option {
  background: #0B1F3B;
  color: #fff;
}

.cf-textarea {
  resize: vertical;
  min-height: 100px;
}

.cf-submit {
  width: 100%;
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0.9rem 2rem;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  position: relative;
}

.cf-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.cf-submit-spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

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

.cf-loading .cf-submit-text {
  opacity: 0.6;
}

.cf-loading .cf-submit-spinner {
  display: block;
}

.cf-success,
.cf-error {
  display: none;
  align-items: center;
  gap: 10px;
  margin-top: 1rem;
  padding: 0.85rem 1.1rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
}

.cf-success {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #86efac;
}

.cf-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.25);
  color: #fca5a5;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-form-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .cf-row--2 {
    grid-template-columns: 1fr;
  }

  .contact-form-desc {
    max-width: 100%;
  }

  .contact-hero {
    margin-bottom: 48px;
  }

  .contact-hero .empieza-steps {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 600px) {
  .contact-form-card {
    padding: 1.75rem 1.25rem;
  }
}

/* Responsive adjustments for redesigned Corporate section */
@media (max-width: 992px) {
  .corp-highlight-card {
    flex-direction: column;
  }

  .corp-highlight-content {
    padding: 3rem 2rem;
  }

  .corp-highlight-visual {
    min-height: 300px;
  }

  .highlight-overlay {
    background: linear-gradient(to top, rgba(11, 31, 59, 0) 0%, rgba(11, 31, 59, 0.6) 80%, #0B1F3B 100%);
  }

  .highlight-cta-group {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .corp-pillars {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .corp-pillar-card {
    padding: 2rem 1rem;
  }

  .highlight-price {
    font-size: 2rem;
  }
}

/* ===== TRANSLATION PAGE STYLES ===== */
.translation-section {
  padding: 80px 0;
  background: var(--bg-primary);
}

.services-v3-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.service-card-v3 {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
  transition: all 0.5s var(--ease-out-expo);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.service-card-v3:hover {
  transform: translateY(-8px);
  border-color: var(--blue-400);
  box-shadow: var(--shadow-blue);
}

.service-card-v3__icon-wrap {
  width: 56px;
  height: 56px;
  background: var(--bg-tertiary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 24px;
  transition: transform 0.3s ease;
}

.service-card-v3:hover .service-card-v3__icon-wrap {
  transform: scale(1.1) rotate(4deg);
  background: var(--blue-50);
}

.service-card-v3__title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.service-card-v3__desc {
  font-size: 0.95rem;
  color: var(--text-tertiary);
  margin-bottom: 24px;
  line-height: 1.7;
}

.service-card-v3__list {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card-v3__list li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-card-v3__list li::before {
  content: '✓';
  color: var(--blue-500);
  font-weight: 700;
  font-size: 14px;
}

.service-card-v3__link {
  margin-top: auto;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--blue-600);
  transition: gap 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.service-card-v3__link:hover {
  color: var(--blue-800);
}

@media (max-width: 768px) {
  .services-v3-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== PREMIUM POLISH — SENIOR DESIGNER REFINEMENTS ===== */

/* Hero CTA — premium glow ring on hover */
.btn-primary-v2:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow:
    0 0 0 4px rgba(43, 127, 212, 0.15),
    0 12px 40px rgba(43, 127, 212, 0.5);
}

/* Section separator — subtle gradient line between major sections */
.transformacion-section::before,
.metodologia-section::before,
.individual-programs-section::before,
.translation-section::before,
.testimonials::before,
.corporate-pricing-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(43, 127, 212, 0.18), transparent);
  pointer-events: none;
}

.transformacion-section,
.metodologia-section,
.individual-programs-section,
.translation-section,
.testimonials,
.corporate-pricing-section {
  position: relative;
}

/* Improved glass card — add subtle inner glow */
.glass-card {
  transition: all 0.45s var(--ease-out-expo);
}

.glass-card:hover {
  border-color: rgba(43, 127, 212, 0.35);
  box-shadow:
    0 20px 50px -12px rgba(43, 127, 212, 0.22),
    inset 0 1px 0 rgba(43, 127, 212, 0.06);
}

/* Transform card v2 — image zoom on hover */
.transform-card-v2 {
  border-radius: 22px;
}

/* Language code badge styling — more premium */
.lang-code-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  background: var(--bg-tertiary);
  color: var(--blue-800);
  border: 1px solid var(--border);
}

.lang-arrow-icon {
  display: inline-flex;
  align-items: center;
  color: var(--blue-400);
}

/* Prog price card — smooth entrance */
.prog-price-card {
  transition: all 0.4s var(--ease-out-expo);
}

.prog-price-card:hover {
  transform: translateY(-4px);
}

.prog-price-card--standard:hover {
  box-shadow: 0 16px 48px rgba(11, 31, 59, 0.12);
  border-color: rgba(43, 127, 212, 0.35);
}

.prog-price-card--featured:hover {
  box-shadow: 0 24px 56px rgba(43, 127, 212, 0.45);
}

/* Corporate card refinement */
.corp-price-card--featured {
  transition: all 0.4s var(--ease-out-expo);
}

.corp-price-card--featured:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(43, 127, 212, 0.45);
}

/* Contact section — improved visual depth */
.contact-form-section {
  background: linear-gradient(160deg, #071828 0%, #0B1F3B 50%, #132d54 100%);
}

/* Methodology section — better spacing */
.metod-img-main {
  border-radius: 16px;
}

/* Social proof badges — subtle bounce on hover */
.sp-badge {
  transition: all 0.3s var(--ease-out-expo);
}

.sp-badge:hover {
  transform: translateY(-2px) scale(1.02);
  border-color: var(--blue-400);
  box-shadow: 0 8px 24px rgba(43, 127, 212, 0.15);
}

/* Pill dot — refined pulse */
.pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4FA3E8;
  animation: badge-dot-pulse 2.5s ease-in-out infinite;
  box-shadow: 0 0 12px rgba(79, 163, 232, 0.6);
}

/* Footer — premium subtle gradient top border */
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #2B7FD4, #4FA3E8, #2B7FD4, transparent);
  opacity: 0.4;
}

.footer {
  position: relative;
}

/* Print style for hero photo */
@media print {
  .hero-bg-photo {
    display: none !important;
  }
}

/* Reviews Grid Styles */
.reviews-grid {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 0 20px;
}

.review-img {
  width: 100%;
  max-width: 320px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  object-fit: cover;
}

/* ===== DUAL AUDIENCE SECTION ===== */
.dual-audience-section {
  padding: 100px 0 80px;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.dual-audience-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(43, 127, 212, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.dual-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1040px;
  margin: 0 auto;
}

.dual-card {
  background: #ffffff;
  border: 1px solid rgba(43, 127, 212, 0.1);
  border-radius: 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.45s cubic-bezier(.22, 1, .36, 1), box-shadow 0.45s cubic-bezier(.22, 1, .36, 1);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07), 0 1px 4px rgba(0, 0, 0, 0.04);
  cursor: pointer;
}

.dual-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 2;
  transition: height 0.4s ease;
}

.dual-card--individual::before {
  background: linear-gradient(90deg, #2B7FD4, #60A5FA);
}

.dual-card--company::before {
  background: linear-gradient(90deg, #0F172A, #1E3A5F);
}

.dual-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 72px rgba(43, 127, 212, 0.13), 0 8px 24px rgba(0, 0, 0, 0.08);
}

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

/* Image zone */
.dual-card__img-wrap {
  position: relative;
  height: 230px;
  overflow: hidden;
  border-radius: 0;
}

.dual-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.7s cubic-bezier(.22, 1, .36, 1);
}

.dual-card:hover .dual-card__img {
  transform: scale(1.07);
}

/* Fade image into card body */
.dual-card__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(255, 255, 255, 0) 40%,
      rgba(255, 255, 255, 0.65) 75%,
      rgba(255, 255, 255, 1) 100%);
}

.dual-card__img-overlay--corp {
  background: linear-gradient(to bottom,
      rgba(10, 18, 40, 0) 30%,
      rgba(255, 255, 255, 0.55) 70%,
      rgba(255, 255, 255, 1) 100%);
}

/* Content area */
.dual-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px 36px 36px;
}

.dual-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.dual-card--individual .dual-card__icon {
  background: linear-gradient(135deg, rgba(43, 127, 212, 0.12), rgba(96, 165, 250, 0.18));
  color: #2B7FD4;
}

.dual-card--company .dual-card__icon {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.08), rgba(30, 58, 95, 0.14));
  color: #1E3A5F;
}

.dual-card:hover .dual-card__icon {
  transform: scale(1.1);
}

.dual-card__title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.6rem;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.dual-card__desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 20px;
  flex-grow: 1;
}

.dual-card__highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dual-card__highlights li {
  font-size: 0.88rem;
  color: var(--text-secondary);
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
}

.dual-card__highlights li::before {
  content: '✓';
  position: absolute;
  left: 0;
  font-weight: 700;
  font-size: 0.85rem;
}

.dual-card--individual .dual-card__highlights li::before {
  color: #2B7FD4;
}

.dual-card--company .dual-card__highlights li::before {
  color: #1E3A5F;
}

.dual-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(.22, 1, .36, 1);
  align-self: flex-start;
}

.dual-card--individual .dual-card__btn {
  background: linear-gradient(135deg, #2B7FD4, #60A5FA);
  color: #fff;
  box-shadow: 0 4px 16px rgba(43, 127, 212, 0.3);
}

.dual-card--individual .dual-card__btn:hover {
  box-shadow: 0 8px 28px rgba(43, 127, 212, 0.45);
  transform: translateX(4px);
}

.dual-card__btn--corp {
  background: linear-gradient(135deg, #0F172A, #1E3A5F);
  color: #fff;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.25);
}

.dual-card__btn--corp:hover {
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.4);
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .dual-cards {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .dual-card__body {
    padding: 20px 24px 28px;
  }

  .dual-card__img-wrap {
    height: 200px;
  }

  .dual-card__title {
    font-size: 1.35rem;
  }

  .dual-audience-section {
    padding: 70px 0 60px;
  }
}

/* ===== CREDENTIALS BAR (merged into Our Programs) ===== */
.cert-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(43, 127, 212, 0.08);
  border-radius: 20px;
  padding: 24px 40px;
  margin-bottom: 48px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.cert-bar__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 28px;
}

.cert-bar__shield {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  color: #fff;
  background: linear-gradient(135deg, #1E3A5F, #2B7FD4);
  flex-shrink: 0;
}

.cert-bar__shield--tkt {
  background: linear-gradient(135deg, #0F766E, #14B8A6);
}

.cert-bar__shield--c2 {
  background: linear-gradient(135deg, #7C3AED, #A78BFA);
}

.cert-bar__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cert-bar__info strong {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
}

.cert-bar__info span {
  font-size: 0.75rem;
  color: var(--text-tertiary);
  letter-spacing: 0.3px;
}

.cert-bar__divider {
  width: 1px;
  height: 40px;
  background: rgba(43, 127, 212, 0.12);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .cert-bar {
    flex-direction: column;
    gap: 16px;
    padding: 24px 20px;
  }

  .cert-bar__item {
    padding: 0;
  }

  .cert-bar__divider {
    width: 60%;
    height: 1px;
  }
}

/* ===== CERTIFICATIONS V2 ===== */
.certifications-v2 {
  padding: 100px 0 60px;
  background: var(--bg-secondary);
  position: relative;
}

.cert-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1060px;
  margin: 0 auto;
}

.cert-card-v2 {
  padding: 0;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(.22, 1, .36, 1), box-shadow 0.4s;
}

.cert-card-v2:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.1);
}

.cert-card-v2__top {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 28px;
  border-bottom: 1px solid rgba(43, 127, 212, 0.08);
}

.cert-card-v2__top--delta {
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.06), rgba(43, 127, 212, 0.08));
}

.cert-card-v2__top--tkt {
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.06), rgba(20, 184, 166, 0.08));
}

.cert-card-v2__top--c2 {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.06), rgba(167, 139, 250, 0.08));
}

.cert-card-v2__level {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.cert-card-v2__issuer {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-transform: uppercase;
  padding: 16px 28px 0;
}

.cert-card-v2__name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem;
  color: var(--text-primary);
  padding: 6px 28px 0;
  margin: 0;
}

.cert-card-v2__full {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--blue-500);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 8px 28px 0;
  line-height: 1.4;
}

.cert-card-v2__desc {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-secondary);
  padding: 14px 28px 28px;
  margin: 0;
  flex-grow: 1;
}

@media (max-width: 768px) {
  .cert-grid-v2 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}