/* Hysec design system — sky cyan, Outfit + Source Sans 3 */
:root {
  --brand: #00bcd4;
  --brand-bright: #4dd0e1;
  --brand-deep: #0d4a52;
  --ink: #0d4a52;
  --ink-soft: #3d6b72;
  --muted: #5a8086;
  --line: #c5e8ed;
  --surface: #ffffff;
  --surface-2: #e8fafc;
  --surface-3: #d4f3f7;
  --danger: #dc2626;
  --success: #15803d;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(0, 105, 119, 0.06);
  --shadow-md: 0 10px 30px rgba(0, 105, 119, 0.08);
  --shadow-lg: 0 24px 50px rgba(0, 105, 119, 0.12);
  --ticker-h: 38px;
  --header-h: 78px;
  --chrome-h: calc(var(--ticker-h) + var(--header-h));
  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --grad-brand: #00bcd4;
  --grad-brand-bright: linear-gradient(135deg, #4dd0e1 0%, #00bcd4 100%);
  --grad-hero: linear-gradient(180deg, #e8fafc 0%, #00bcd4 100%);
  --grad-mesh:
    radial-gradient(ellipse 80% 60% at 10% 0%, rgba(0, 188, 212, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 50% at 90% 10%, rgba(77, 208, 225, 0.16), transparent 50%),
    linear-gradient(180deg, #f4fdfe 0%, #e8fafc 100%);
  --primary-color: var(--brand);
  --primary-light: var(--brand-bright);
  --primary-dark: var(--brand-deep);
  --primary-gradient: var(--grad-brand);
  --white: var(--surface);
  --black: var(--ink);
  --light-gray: var(--surface-2);
  --gray-200: var(--line);
  --gray-400: #94a3b8;
  --gray-500: var(--muted);
  --gray-600: var(--ink-soft);
  --gray-700: var(--ink);
  --transition: 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--grad-mesh);
  background-attachment: fixed;
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
ul { list-style: none; }

h1, h2, h3, h4, .font-display {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
}

.container {
  width: min(1180px, calc(100% - 2.5rem));
  margin-inline: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.45rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  font-family: var(--font-body);
}
.btn-sm { padding: 0.65rem 1.1rem; font-size: 0.875rem; }
.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 10px 24px rgba(0, 188, 212, 0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(0, 188, 212, 0.42); }
.btn-ghost {
  background: #fff;
  color: var(--brand-deep);
  border: 1.5px solid rgba(255, 255, 255, 0.7);
}
.btn-ghost:hover { background: var(--surface-2); color: var(--brand-deep); }
.btn-outline-dark {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn-outline-dark:hover { border-color: var(--brand-deep); color: var(--brand-deep); }

/* Header */
.site-chrome {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1200;
}
.site-header {
  position: relative;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
}
.logo img { height: 48px; width: auto; object-fit: contain; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  height: 100%;
}
.nav-links > li { position: relative; height: 100%; display: flex; align-items: center; }
.nav-links > li > a, .nav-disclosure {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink-soft);
  padding: 0.55rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--brand-deep); background: rgba(0, 188, 212, 0.1); }
.nav-links .fa-chevron-down { font-size: 0.65rem; opacity: 0.7; transition: transform var(--transition); }

@media (min-width: 861px) {
  .mega-menu {
    position: absolute;
    top: calc(100% - 4px);
    left: 50%;
    transform: translateX(-20%) translateY(8px);
    width: min(920px, 92vw);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
    z-index: 50;
  }
  .has-mega.open .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-20%) translateY(0);
  }
  .mega-menu-end {
    left: auto;
    right: 0;
    transform: translateY(8px);
  }
  .has-mega.open .mega-menu-end {
    transform: translateY(0);
  }
}
.mega-menu-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.mega-menu-column h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.85rem;
  color: var(--ink);
  border-bottom: 2px solid var(--brand);
  padding-bottom: 0.45rem;
  display: inline-block;
}
.mega-menu-column a {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  padding: 0.45rem 0.35rem;
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition), padding-left var(--transition);
}
.mega-menu-column a i { color: var(--brand); margin-top: 0.2rem; }
.mega-menu-column a:hover { background: var(--surface-2); color: var(--brand-deep); padding-left: 0.65rem; }
.mega-highlight {
  background: linear-gradient(160deg, rgba(0, 188, 212, 0.12), rgba(0, 151, 167, 0.06));
  border-radius: var(--radius-md);
  padding: 1rem;
}
.mega-highlight p { font-size: 0.9rem; color: var(--muted); margin: 0.5rem 0 1rem; }

.btn-nav {
  background: var(--brand);
  color: #fff;
  border: none;
  border-radius: var(--radius-pill);
  padding: 0.55rem 1.05rem;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  isolation: isolate;
}
.auth-btn-container { position: relative; }
.auth-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 200px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: var(--transition);
  z-index: 60;
}
.auth-btn-container.open .auth-dropdown,
.auth-btn-container:hover .auth-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.auth-dropdown a {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 0.85rem;
  text-decoration: none;
  border-radius: var(--radius-sm);
  color: var(--ink-soft);
  font-weight: 500;
}
.auth-dropdown a:hover { background: var(--surface-2); color: var(--brand-deep); }
.dropdown-divider { height: 1px; background: var(--line); margin: 0.35rem 0; }
.btn-logout {
  border: 1.5px solid var(--line) !important;
  border-radius: var(--radius-pill) !important;
}
.btn-logout:hover { background: #fef2f2 !important; color: var(--danger) !important; border-color: #fecaca !important; }
.admin-badge {
  background: #fbbf24;
  color: #111;
  font-size: 0.65rem;
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
  font-weight: 800;
  text-transform: uppercase;
  margin-left: 0.25rem;
}
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.35rem;
  color: var(--ink);
  padding: 0.5rem;
  cursor: pointer;
}

/* WhatsApp */
.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}
.whatsapp-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #08703b;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.7rem;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4);
  animation: waPulse 2.4s ease-in-out infinite;
}
.whatsapp-text {
  background: #08703b;
  color: #fff;
  padding: 0.65rem 1rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.85rem;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition);
  pointer-events: none;
}
.whatsapp-float:hover .whatsapp-text { opacity: 1; transform: none; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 10px 28px rgba(37, 211, 102, 0.35); }
  50% { box-shadow: 0 10px 36px rgba(37, 211, 102, 0.6); }
}

/* Flash */
.flash-container { position: fixed; top: calc(var(--chrome-h) + 1rem); right: 1rem; z-index: 1100; width: min(380px, calc(100% - 2rem)); }
.flash-message {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.9rem 1.1rem; border-radius: var(--radius-md);
  color: #fff; font-weight: 600; box-shadow: var(--shadow-md);
  animation: slideIn 0.45s ease;
}
.flash-success { background: var(--success); }
.flash-error { background: var(--danger); }
.flash-info { background: var(--brand); }
@keyframes slideIn { from { opacity: 0; transform: translateX(24px); } to { opacity: 1; transform: none; } }

/* Hero */
.hero-slider {
  margin-top: var(--chrome-h);
  height: auto;
  padding: 0 0 1.75rem;
  position: relative;
  overflow: hidden;
  background: var(--grad-hero);
}
.hero-slider .swiper,
.hero-slider .swiper-slide { height: auto; width: 100%; background: transparent; }
.hero-slider .swiper-slide::before,
.hero-slider .swiper-slide::after { display: none; }
.hero-slide-content {
  position: relative; z-index: 2;
  width: min(1180px, calc(100% - 2.5rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 46%);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  min-height: 560px;
  padding: 3.25rem 0 5.5rem;
  text-align: left;
  color: var(--ink);
}
.hero-copy { max-width: 34rem; }
.hero-slide-content h1, .hero-slide-content .hero-heading {
  font-size: clamp(2.1rem, 4.4vw, 3.35rem);
  color: #042428;
  font-weight: 800;
  max-width: 16ch;
}
.hero-slide-content .btn-primary {
  background: #fff;
  color: var(--brand-deep);
  box-shadow: 0 10px 24px rgba(13, 74, 82, 0.16);
}
.hero-slide-content .btn-primary:hover {
  background: var(--surface-2);
  color: var(--brand-deep);
}
.hero-slide-content p {
  font-size: clamp(1.02rem, 2vw, 1.18rem);
  color: var(--ink-soft);
  max-width: 34rem;
  margin: 1rem 0 1.5rem;
}
.hero-visual {
  margin: 0;
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow:
    0 28px 56px rgba(13, 74, 82, 0.18),
    0 0 0 8px rgba(255, 255, 255, 0.28);
  aspect-ratio: 4 / 3;
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 28%);
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.swiper-slide-active .hero-visual img {
  animation: heroReveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes heroReveal {
  from { transform: scale(1.04); }
  to { transform: none; }
}
.swiper-button-next, .swiper-button-prev {
  color: var(--ink);
  width: 46px; height: 46px;
  background: #fff;
  border: 1px solid rgba(0, 188, 212, 0.35);
  border-radius: 50%;
  transition: var(--transition);
}
.swiper-button-next:hover, .swiper-button-prev:hover { background: var(--brand); color: #fff; border-color: var(--brand); }
.swiper-button-next:after, .swiper-button-prev:after { font-size: 1rem; }
.hero-slider .swiper-pagination {
  bottom: 1.35rem;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  display: flex;
  gap: 0.45rem;
  max-width: calc(100% - 2rem);
}
.hero-slider .swiper-pagination-bullet {
  width: auto;
  height: auto;
  margin: 0 !important;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.55);
  color: var(--ink);
  opacity: 1;
  font: 650 0.85rem var(--font-body);
  line-height: 1;
  border: 1px solid rgba(13, 74, 82, 0.08);
  cursor: pointer;
  appearance: none;
}
.hero-slider .swiper-pagination-bullet-active {
  background: #fff;
  color: var(--brand-deep);
}

/* Sections */
section { padding: 4.5rem 0; }
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}
.section-header .subtitle {
  color: var(--brand-deep);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 0.55rem;
}
.section-header h2 { font-size: clamp(1.7rem, 3vw, 2.35rem); margin-bottom: 0.65rem; }
.section-header p { color: var(--muted); font-size: 1.05rem; }

.page-header {
  margin-top: var(--chrome-h);
  padding: 4.5rem 0 3rem;
  background:
    radial-gradient(ellipse 70% 80% at 15% 20%, rgba(0, 188, 212, 0.28), transparent 55%),
    linear-gradient(135deg, #e8fafc 0%, #00bcd4 100%);
  color: var(--ink);
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 32px;
  background: linear-gradient(to top, rgba(244, 253, 254, 0.95), transparent);
}
.page-header .header-content { position: relative; z-index: 1; text-align: center; max-width: 720px; margin: 0 auto; }
.page-header h1 { color: var(--ink); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 0.75rem; }
.page-header p { color: var(--ink-soft); font-size: 1.1rem; }

/* Feature / service cards */
.features-grid, .services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}
.feature-card, .service-card, .partner-item, .client-item, .package-card, .training-card, .blog-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  box-shadow: var(--shadow-sm);
}
.feature-card:hover, .service-card:hover, .partner-item:hover, .client-item:hover, .package-card:hover, .training-card:hover, .blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 188, 212, 0.35);
}
.feature-image, .service-image {
  height: 160px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.feature-icon, .service-icon {
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--grad-brand);
  color: #fff;
  display: grid; place-items: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-md);
  z-index: 2;
}
.service-icon { left: 1.25rem; transform: none; border-radius: 12px; }
.feature-content, .service-content { padding: 2.4rem 1.35rem 1.5rem; text-align: center; }
.service-content { text-align: left; }
.feature-card h3, .service-card h3 { font-size: 1.15rem; margin-bottom: 0.55rem; }
.feature-card p { color: var(--muted); font-size: 0.95rem; }
.service-card ul li {
  display: flex; align-items: center; gap: 0.55rem;
  padding: 0.4rem 0; color: var(--muted); font-size: 0.92rem;
}
.service-card ul li i { color: var(--brand); font-size: 0.75rem; }

.partners-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
.partner-item { text-align: center; padding: 1.5rem 1rem; }
.partner-item i { font-size: 2.4rem; margin-bottom: 0.75rem; transition: transform var(--transition); }
.partner-item:hover i { transform: scale(1.12) rotate(-4deg); }
.partner-item h3 { font-size: 0.9rem; }

.clients-section {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: #fff;
  position: relative;
  padding: 4.5rem 0;
}
.clients-section [data-aos] {
  opacity: 1 !important;
  transform: none !important;
}
.clients-section::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 10% 0%, rgba(0, 188, 212, 0.08), transparent 55%),
    radial-gradient(ellipse 40% 50% at 90% 100%, rgba(0, 229, 255, 0.06), transparent 50%);
  pointer-events: none;
}
.clients-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; position: relative; z-index: 1; }
.client-item {
  text-align: center;
  padding: 1.25rem 1rem 1.1rem;
  background: #fff;
  cursor: default;
}
.client-logo {
  height: 88px; display: grid; place-items: center; margin-bottom: 0.75rem;
  background: var(--surface-2); border-radius: var(--radius-md); padding: 0.75rem;
  transition: background var(--transition), transform var(--transition);
}
.client-logo img {
  max-height: 56px; max-width: 100%; width: auto; margin: 0 auto;
  filter: grayscale(0.25);
  transition: transform var(--transition), filter var(--transition);
}
.client-item:hover .client-logo { background: rgba(0, 188, 212, 0.08); }
.client-logo--dark,
.client-item:hover .client-logo--dark { background: #000; }
.client-item:hover .client-logo img {
  transform: scale(1.08);
  filter: grayscale(0);
}
.client-item h3 { font-size: 0.86rem; color: var(--ink-soft); font-weight: 600; }

.packages-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.package-card { display: flex; flex-direction: column; position: relative; }
.package-card.featured { border-color: var(--brand); box-shadow: 0 16px 40px rgba(0, 188, 212, 0.18); }
.package-card.featured::before {
  content: "POPULAR";
  position: absolute; top: 1.1rem; right: -2.1rem;
  background: var(--grad-brand); color: #fff;
  font-size: 0.65rem; font-weight: 800; letter-spacing: 0.08em;
  padding: 0.35rem 2.4rem; transform: rotate(45deg); z-index: 2;
}
.package-header {
  background: var(--brand);
  color: #fff; padding: 1.5rem 1.25rem; text-align: center;
}
.package-header h3 { color: #fff; font-size: 1.05rem; margin-bottom: 0.65rem; letter-spacing: 0.02em; }
.package-price { color: #fff; font-weight: 800; font-size: 1.15rem; }
.package-price span { color: rgba(255, 255, 255, 0.85); font-size: 0.8rem; font-weight: 500; }
.package-features { padding: 1.25rem; flex: 1; }
.package-features li {
  display: flex; align-items: center; gap: 0.65rem;
  padding: 0.55rem 0; border-bottom: 1px solid var(--line);
  color: var(--ink-soft); font-size: 0.92rem;
}
.package-features li:last-child { border-bottom: none; }
.package-features li i { color: var(--brand); }
.btn-buy {
  display: block; margin: 0 1.25rem 1.25rem; text-align: center;
  background: var(--brand); color: #fff; text-decoration: none;
  padding: 0.9rem; border-radius: var(--radius-pill); font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; font-size: 0.8rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn-buy:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(0, 188, 212, 0.3); }

/* CTA */
.cta-section {
  padding: 2rem 0;
  background: var(--brand);
  color: var(--ink);
}
.cta-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
}
.cta-copy h2 { color: var(--ink); font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 0.5rem; }
.cta-copy p { color: var(--ink-soft); max-width: 36rem; }
.cta-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.cta-section .btn-primary,
.program-strip .btn-primary {
  background: #fff;
  color: var(--brand-deep);
  box-shadow: 0 10px 24px rgba(13, 74, 82, 0.16);
}
.cta-section .btn-primary:hover,
.program-strip .btn-primary:hover {
  background: var(--surface-2);
  color: var(--brand-deep);
}

/* Top ticker + dark footer */
.site-ticker {
  overflow: hidden;
  height: var(--ticker-h);
  background: #00bcd4;
  color: #fff;
  border-bottom: none;
}
.site-ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  height: 100%;
  gap: 0;
  animation: siteTicker 32s linear infinite;
}
.site-ticker:hover .site-ticker-track { animation-play-state: paused; }
.site-ticker-track span {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: clamp(0.82rem, 1.4vw, 0.95rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  padding: 0 1.6rem 0 0.85rem;
}
.site-ticker-track span::before {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  margin-right: 1.6rem;
  border-radius: 50%;
  background: #fff;
  flex: 0 0 auto;
}
@keyframes siteTicker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.site-footer {
  background: #042428;
  color: #d7e8ea;
  padding: 1.75rem 0 0.9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1.25fr 0.9fr 1.2fr;
  gap: 1.35rem 1.75rem;
  margin-bottom: 1.1rem;
  align-items: start;
}
.footer-brand img { height: 36px; width: auto; margin-bottom: 0.55rem; }
.footer-brand p { color: #9bb5b9; font-size: 0.86rem; line-height: 1.45; margin-bottom: 0; max-width: 20rem; }
.social-links { display: flex; gap: 0.55rem; }
.social-links a {
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, 0.08);
  color: #e8fafc; text-decoration: none;
  transition: background var(--transition), color var(--transition);
}
.social-links a:hover { background: var(--brand); color: #fff; }
.footer-links h2 { color: #fff; font-size: 0.92rem; margin-bottom: 0.55rem; }
.footer-links a {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: #9bb5b9; text-decoration: none; padding: 0.12rem 0;
  font-size: 0.88rem; line-height: 1.4;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--brand); }
.footer-links-split ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 1rem;
}
.contact-list .address {
  display: flex; align-items: flex-start; gap: 0.45rem;
  color: #9bb5b9; padding: 0.18rem 0; font-size: 0.86rem; line-height: 1.4;
}
.contact-list .address i { margin-top: 0.2rem; color: var(--brand); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 0.7rem;
  color: #7f9a9e;
  font-size: 0.82rem;
}

/* Trainings */
.trainings-toolbar, .blog-controls {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1rem 1.15rem; margin: -2.25rem auto 2rem; position: relative; z-index: 2;
  box-shadow: var(--shadow-md); width: min(1180px, calc(100% - 2.5rem));
}
.search-wrapper {
  flex: 1; min-width: 200px; display: flex; align-items: center; gap: 0.65rem;
  background: var(--surface-2); border-radius: var(--radius-pill); padding: 0.55rem 1rem;
}
.search-wrapper input, .filter-group select {
  border: none; background: transparent; outline: none; width: 100%;
  font: inherit; color: var(--ink);
}
.filter-group select {
  background: var(--surface-2); border-radius: var(--radius-pill);
  padding: 0.55rem 1rem; min-width: 160px;
}
.category-pills {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  width: min(1180px, calc(100% - 2.5rem)); margin: 0 auto 1.75rem;
}
.category-pills a {
  text-decoration: none; padding: 0.45rem 0.95rem; border-radius: var(--radius-pill);
  background: #fff; border: 1px solid var(--line); color: var(--ink-soft);
  font-weight: 600; font-size: 0.88rem; transition: var(--transition);
}
.category-pills a.active, .category-pills a:hover {
  background: var(--grad-brand); color: #fff; border-color: transparent;
}

/* Flagship DevOps Program Card */
.flagship-program {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto 2.5rem;
  background:
    radial-gradient(ellipse 65% 50% at 100% 0%, rgba(0, 229, 255, 0.12), transparent 50%),
    radial-gradient(ellipse 50% 50% at 0% 100%, rgba(0, 188, 212, 0.08), transparent 45%),
    #ffffff;
  color: var(--ink);
  border: 1px solid rgba(0, 188, 212, 0.3);
  border-top: 4px solid var(--brand);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 3.2vw, 2.4rem);
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 42px rgba(0, 188, 212, 0.12), 0 2px 8px rgba(0, 188, 212, 0.06);
}
.flagship-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 420px);
  grid-template-areas:
    "copy poster"
    "side poster";
  gap: 1.6rem;
  align-items: start;
  position: relative;
  z-index: 1;
}
.flagship-copy { grid-area: copy; }
.flagship-poster { grid-area: poster; }
.flagship-side { grid-area: side; }
.flagship-poster {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(0, 188, 212, 0.28);
  box-shadow: 0 14px 32px rgba(0, 188, 212, 0.16);
  background: #fff;
  align-self: stretch;
}
.flagship-poster img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
  display: block;
  background: #fff;
}
.flagship-badge {
  display: inline-flex; gap: 0.45rem; align-items: center;
  background: rgba(0, 188, 212, 0.12);
  border: 1px solid rgba(0, 188, 212, 0.32);
  color: var(--brand-deep);
  padding: 0.38rem 0.95rem; border-radius: var(--radius-pill);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 1rem;
}
.flagship-badge i { color: #f59e0b; }
.flagship-program h2 { color: var(--ink); font-size: clamp(1.75rem, 3.2vw, 2.35rem); font-weight: 800; margin-bottom: 0.75rem; letter-spacing: -0.02em; }
.flagship-program > .flagship-grid p, .flagship-copy p { color: var(--ink-soft); font-size: 1.02rem; line-height: 1.6; margin-bottom: 1.25rem; }
.flagship-meta {
  display: flex; flex-wrap: wrap; gap: 0.65rem; margin-bottom: 1.5rem;
}
.flagship-meta span {
  background: var(--surface-2); border: 1px solid var(--line);
  color: var(--ink); font-weight: 600;
  padding: 0.45rem 0.85rem; border-radius: var(--radius-pill); font-size: 0.84rem;
  display: inline-flex; align-items: center; gap: 0.45rem;
}
.flagship-meta span i { color: var(--brand); }
.flagship-side {
  background: rgba(248, 250, 252, 0.85);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}
.flagship-side h3 {
  color: var(--ink); font-size: 1rem; font-weight: 700; margin-bottom: 0.75rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.flagship-side h3 i { color: var(--brand); font-size: 0.95rem; }
.modules-list, .projects-list {
  display: grid; gap: 0.45rem; min-width: 0;
}
.modules-list {
  grid-template-columns: 1fr 1fr;
}
.modules-list li {
  display: flex; gap: 0.45rem; align-items: flex-start;
  background: #ffffff;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  padding: 0.52rem 0.65rem; border-radius: var(--radius-sm);
  font-size: 0.82rem;
  overflow-wrap: anywhere;
  transition: all var(--transition);
}
.modules-list li:hover {
  border-color: rgba(0, 188, 212, 0.45);
  box-shadow: 0 4px 10px rgba(0, 188, 212, 0.1);
  transform: translateX(2px);
}
.modules-list li strong { color: var(--ink); font-weight: 700; }
.modules-list i { color: var(--brand); margin-top: 0.15rem; font-size: 0.85rem; }
.projects-list li {
  display: flex; gap: 0.5rem; align-items: flex-start;
  background: linear-gradient(135deg, rgba(0, 188, 212, 0.08) 0%, rgba(0, 229, 255, 0.04) 100%);
  border: 1px solid rgba(0, 188, 212, 0.22);
  color: var(--ink);
  padding: 0.55rem 0.75rem; border-radius: var(--radius-sm);
  font-size: 0.83rem;
  transition: all var(--transition);
}
.projects-list li:hover {
  border-color: var(--brand);
  box-shadow: 0 4px 12px rgba(0, 188, 212, 0.12);
  transform: translateX(2px);
}
.projects-list li strong { color: var(--brand-deep); font-weight: 700; }
.projects-list i { color: var(--brand); margin-top: 0.2rem; }

.btn-whatsapp {
  background: #ffffff;
  color: #08703b;
  border: 1.5px solid #25d366;
  border-radius: var(--radius-pill);
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  padding: 0.85rem 1.45rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all var(--transition);
}
.btn-whatsapp:hover {
  background: #08703b;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.28);
}

/* Individual training module cards */
.trainings-grid, .blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1.4rem;
  width: min(1180px, calc(100% - 2.5rem));
  margin: 0 auto 2rem;
}
.training-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, border-color 0.3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}
.training-card::after {
  content: "";
  position: absolute; inset: auto 0 0 0; height: 3px;
  background: var(--grad-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.training-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 44px rgba(0, 188, 212, 0.18);
  border-color: rgba(0, 188, 212, 0.45);
}
.training-card:hover::after { transform: scaleX(1); }
.training-card .card-top {
  background: linear-gradient(180deg, rgba(0, 188, 212, 0.07) 0%, transparent 100%);
  padding: 1.35rem 1.25rem 0.85rem;
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}
.card-top-icon {
  width: 46px; height: 46px; min-width: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0, 188, 212, 0.14), rgba(0, 229, 255, 0.22));
  border: 1px solid rgba(0, 188, 212, 0.28);
  color: var(--brand-deep);
  display: grid; place-items: center;
  font-size: 1.25rem;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}
.training-card:hover .card-top-icon {
  transform: scale(1.12) rotate(-8deg);
  background: var(--grad-brand);
  color: #fff;
  box-shadow: 0 10px 18px rgba(0, 188, 212, 0.35);
}
.training-card:hover .card-top h3 { color: var(--brand-deep); }
.feature-tags span { transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease; }
.training-card:hover .feature-tags span:nth-child(1) { transition-delay: 0.02s; }
.training-card:hover .feature-tags span:nth-child(2) { transition-delay: 0.06s; }
.training-card:hover .feature-tags span:nth-child(3) { transition-delay: 0.1s; }
.training-card:hover .feature-tags span:nth-child(4) { transition-delay: 0.14s; }
.training-card:hover .feature-tags span {
  transform: translateY(-2px);
  background: rgba(0, 188, 212, 0.16);
}
.card-category-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-deep);
  margin-bottom: 0.2rem;
}
.training-card .card-top h3 {
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.25;
  margin: 0;
}
.training-card .card-body {
  padding: 1.2rem 1.25rem 1.35rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.training-card .description {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
  margin-bottom: 1rem;
  min-height: 44px;
}
.training-meta {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 0.5rem; color: var(--ink-soft); font-size: 0.82rem; margin-bottom: 0.85rem;
  background: var(--surface-2); border-radius: var(--radius-sm); padding: 0.45rem 0.75rem;
}
.training-meta span { display: inline-flex; align-items: center; gap: 0.35rem; }
.training-meta .rating { color: #f59e0b; letter-spacing: 0.05em; font-size: 0.78rem; }
.feature-tags { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-bottom: 0.95rem; }
.feature-tags span {
  background: rgba(0, 188, 212, 0.08);
  border: 1px solid rgba(0, 188, 212, 0.2);
  color: var(--brand-deep);
  padding: 0.22rem 0.55rem; border-radius: var(--radius-pill); font-size: 0.74rem; font-weight: 600;
}
.topics-toggle {
  background: #ffffff;
  border: 1px dashed rgba(0, 188, 212, 0.4);
  border-radius: var(--radius-sm);
  color: var(--brand-deep);
  font-weight: 700;
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  padding: 0.45rem 0.75rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
  transition: all var(--transition);
}
.topics-toggle:hover {
  background: rgba(0, 188, 212, 0.08);
  border-color: var(--brand);
}
.topics-list {
  display: none;
  background: var(--surface-2);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.85rem;
  margin-bottom: 0.95rem;
}
.topics-list.open { display: grid; gap: 0.35rem; }
.topics-list li {
  font-size: 0.82rem; color: var(--ink-soft);
  padding-left: 0.85rem; position: relative;
  line-height: 1.45;
}
.topics-list li::before {
  content: ""; position: absolute; left: 0; top: 0.45rem;
  width: 5px; height: 5px; border-radius: 50%; background: var(--brand);
}
.enroll-btn {
  margin-top: auto;
  display: inline-flex; width: 100%; justify-content: center; align-items: center; gap: 0.4rem;
  background: var(--grad-brand); color: #fff; text-decoration: none;
  padding: 0.75rem; border-radius: var(--radius-pill); font-weight: 700; font-size: 0.9rem;
  box-shadow: 0 6px 16px rgba(0, 188, 212, 0.25);
  transition: all var(--transition);
}
.enroll-btn {
  position: relative;
  overflow: hidden;
}
.enroll-btn::before {
  content: "";
  position: absolute; inset: 0 auto 0 -40%;
  width: 40%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg);
  transition: none;
}
.training-card:hover .enroll-btn::before,
.enroll-btn:hover::before {
  animation: shine 0.7s ease;
}
@keyframes shine {
  from { left: -40%; }
  to { left: 120%; }
}
.enroll-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 188, 212, 0.38);
  color: #fff;
}
.category-pills a { position: relative; overflow: hidden; }
.category-pills a:hover { transform: translateY(-2px); }
.flagship-program {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, border-color 0.3s ease;
}
.flagship-program:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(0, 188, 212, 0.14);
  border-color: rgba(0, 188, 212, 0.5);
}

/* Blogs */
.blog-image {
  height: 200px; background: var(--brand);
  display: grid; place-items: center; position: relative; overflow: hidden; color: rgba(255,255,255,0.55); font-size: 2.5rem;
}
.blog-image img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.blog-date-badge {
  position: absolute; left: 1rem; bottom: 1rem; z-index: 2;
  background: rgba(255, 255, 255, 0.92); color: var(--ink);
  padding: 0.35rem 0.7rem; border-radius: var(--radius-pill); font-size: 0.78rem;
}
.blog-body { padding: 1.25rem; }
.blog-meta { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; margin-bottom: 0.75rem; }
.author { display: inline-flex; align-items: center; gap: 0.55rem; color: var(--ink-soft); font-size: 0.88rem; }
.avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--grad-brand); color: #fff; display: grid; place-items: center;
  font-size: 0.7rem; font-weight: 800;
}
.category-badge {
  background: rgba(0, 188, 212, 0.12); color: var(--brand-deep);
  padding: 0.2rem 0.55rem; border-radius: var(--radius-pill); font-size: 0.75rem; font-weight: 700;
}
.blog-title { font-size: 1.2rem; margin-bottom: 0.55rem; }
.blog-title a { text-decoration: none; color: var(--ink); transition: color var(--transition); }
.blog-title a:hover { color: var(--brand-deep); }
.blog-excerpt { color: var(--muted); font-size: 0.95rem; margin-bottom: 1rem; }
.blog-footer { display: flex; justify-content: space-between; align-items: center; gap: 0.75rem; }
.read-more {
  color: var(--brand-deep); font-weight: 700; text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.read-more:hover { gap: 0.65rem; }
.date-info { color: var(--muted); font-size: 0.82rem; }

.pagination {
  display: flex; justify-content: center; gap: 0.4rem; flex-wrap: wrap;
  width: min(1180px, calc(100% - 2.5rem)); margin: 0 auto 2rem;
}
.pagination a, .pagination span {
  min-width: 42px; height: 42px; display: grid; place-items: center;
  border-radius: var(--radius-sm); text-decoration: none;
  background: #fff; border: 1px solid var(--line); color: var(--ink-soft); font-weight: 600;
}
.pagination .active { background: var(--grad-brand); color: #fff; border-color: transparent; }
.pagination .disabled { opacity: 0.4; }

.empty-state {
  text-align: center; padding: 4rem 1.5rem;
  width: min(640px, calc(100% - 2.5rem)); margin: 0 auto 2rem;
  background: #fff; border: 1px dashed var(--line); border-radius: var(--radius-lg);
}
.empty-state i { font-size: 2.5rem; color: var(--brand); margin-bottom: 1rem; }
.empty-state h3 { margin-bottom: 0.5rem; }
.empty-state p { color: var(--muted); margin-bottom: 1.25rem; }

/* Blog detail */
.article-wrap {
  width: min(820px, calc(100% - 2.5rem));
  margin: -2rem auto 2.5rem; position: relative; z-index: 2;
  background: #fff; border-radius: var(--radius-lg); border: 1px solid var(--line);
  box-shadow: var(--shadow-md); overflow: hidden;
}
.article-hero-img { width: 100%; max-height: 420px; object-fit: cover; }
.article-body { padding: clamp(1.25rem, 3vw, 2.25rem); }
.article-body .prose { color: var(--ink-soft); font-size: 1.05rem; }
.article-body .prose img { border-radius: var(--radius-md); margin: 1rem 0; }
.article-body .prose h2, .article-body .prose h3 { margin: 1.5rem 0 0.75rem; }
.related-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
  width: min(1180px, calc(100% - 2.5rem)); margin: 0 auto 2rem;
}
.share-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem; }
.share-btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.5rem 0.85rem; border-radius: var(--radius-pill);
  background: var(--surface-2); text-decoration: none; font-weight: 600; font-size: 0.85rem;
  color: var(--ink-soft); border: 1px solid var(--line);
}
.share-btn:hover { border-color: var(--brand); color: var(--brand-deep); }

.results-count { color: var(--muted); font-weight: 600; font-size: 0.9rem; }

/* Responsive */
@media (max-width: 1100px) {
  .packages-grid, .features-grid, .services-grid, .trainings-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .partners-grid { grid-template-columns: repeat(3, 1fr); }
  .clients-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .flagship-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "poster"
      "side";
  }
  .flagship-poster { max-width: 420px; width: 100%; justify-self: center; }
  .modules-list { grid-template-columns: 1fr 1fr; }
  .mega-menu-content { grid-template-columns: repeat(2, 1fr); }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .mobile-toggle { display: inline-flex; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; flex-direction: column; align-items: stretch;
    padding: 1rem; gap: 0.25rem; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md); max-height: calc(100dvh - var(--chrome-h)); overflow-y: auto;
    height: auto; z-index: 1300;
  }
  .nav-links.active { display: flex; }
  .category-pills {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.35rem;
    scrollbar-width: none;
  }
  .category-pills::-webkit-scrollbar { display: none; }
  .category-pills a { flex: 0 0 auto; }
  .modules-list { grid-template-columns: 1fr; }
  .flagship-grid { grid-template-columns: 1fr; }
  .flagship-poster { max-width: 360px; margin-inline: auto; }
  .nav-links > li { height: auto; width: 100%; display: block; }
  .nav-links > li > a, .nav-links .nav-disclosure {
    width: 100%; padding: 0.85rem; display: flex; justify-content: space-between; align-items: center;
  }
  .has-mega > a .fa-chevron-down {
    transition: transform var(--transition);
  }
  .has-mega.open > a .fa-chevron-down {
    transform: rotate(180deg);
  }
  .mega-menu {
    position: static;
    transform: none !important;
    left: auto; top: auto;
    width: 100%;
    background: #f8fafc;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 1rem;
    margin: 0.25rem 0 0.75rem;
    display: none;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .has-mega.open .mega-menu { display: block !important; }
  .mega-menu-content { display: flex; flex-direction: column; gap: 1rem; }
  .mega-menu-column h4 {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--ink);
    margin-bottom: 0.45rem;
    border-bottom: 1.5px solid rgba(0, 188, 212, 0.4);
    padding-bottom: 0.25rem;
    display: inline-block;
  }
  .mega-menu-column ul { display: flex; flex-direction: column; gap: 0.25rem; }
  .mega-menu-column a {
    padding: 0.45rem 0.5rem;
    font-size: 0.88rem;
    border-radius: var(--radius-sm);
    color: var(--ink-soft);
    display: flex;
    align-items: center;
    gap: 0.55rem;
  }
  .mega-menu-column a:hover {
    background: #ffffff;
    color: var(--brand-deep);
    padding-left: 0.75rem;
  }
  .mega-highlight {
    background: rgba(0, 188, 212, 0.1);
    border: 1px solid rgba(0, 188, 212, 0.25);
    border-radius: var(--radius-sm);
    padding: 0.85rem;
  }
  .auth-dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    display: none; box-shadow: none; border: none; padding: 0;
  }
  .auth-btn-container.open .auth-dropdown { display: block; }
  .hero-slide-content {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 2rem 0 5.25rem;
    text-align: left;
  }
  .hero-copy { max-width: none; }
  .hero-slide-content h1, .hero-slide-content .hero-heading { max-width: 18ch; }
  .hero-visual { max-width: 520px; width: 100%; justify-self: stretch; aspect-ratio: 4 / 3; }
  .packages-grid, .features-grid, .services-grid, .trainings-grid, .blog-grid,
  .partners-grid, .clients-grid, .related-grid, .footer-grid { grid-template-columns: 1fr; }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .whatsapp-text { display: none; }
  body.nav-open { overflow: hidden; }
}

.host-rail {
  position: relative;
  z-index: 2;
  margin-top: -1.5rem;
  padding: 0 0 0.25rem;
  background: transparent;
}
.host-rail-board {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 26px;
  box-shadow:
    0 22px 48px rgba(13, 74, 82, 0.14),
    0 0 0 8px rgba(255, 255, 255, 0.22);
  overflow: hidden;
}
.host-rail-scan {
  position: absolute;
  left: -30%;
  bottom: 0;
  width: 30%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
  pointer-events: none;
  opacity: 0;
}
.host-rail.is-in .host-rail-scan {
  opacity: 1;
  animation: host-scan 3.8s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}
.host-cell {
  position: relative;
  padding: 1.55rem 1.6rem 1.45rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-width: 0;
}
.host-cell + .host-cell::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.3rem;
  bottom: 1.3rem;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--brand), transparent);
}
.host-rail.js-ready:not(.is-in) .host-cell {
  opacity: 0;
  transform: translateY(18px);
}
.host-rail.is-in .host-cell {
  animation: host-cell-in 0.72s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.host-rail.is-in .host-cell:nth-child(2) { animation-delay: 0.1s; }
.host-rail.is-in .host-cell:nth-child(3) { animation-delay: 0.2s; }
.host-rail.is-in .host-cell:nth-child(4) { animation-delay: 0.3s; }
.host-cell h3 {
  font-size: 1.18rem;
  font-weight: 750;
  margin: 0;
}
.host-cell p {
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.5;
  margin: 0;
  max-width: 34ch;
}
.host-cell a {
  margin-top: 0.35rem;
  color: var(--brand-deep);
  font-weight: 700;
  text-decoration: none;
  width: fit-content;
  border-bottom: 1.5px solid transparent;
}
.host-cell a:hover { border-bottom-color: var(--brand); color: var(--brand-deep); }
.host-glyph {
  width: 56px;
  height: 36px;
  display: grid;
  place-items: center;
  margin-bottom: 0.25rem;
}
.host-glyph-pulse svg { width: 56px; height: 28px; }
.host-ecg {
  stroke: var(--brand);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  stroke-dasharray: 140;
  stroke-dashoffset: 140;
}
.host-rail.is-in .host-ecg {
  animation: host-ecg 2.6s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}
.host-glyph-stack {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  align-items: stretch;
}
.host-glyph-stack span {
  display: block;
  height: 6px;
  border-radius: 99px;
  background: var(--brand);
  transform: scaleX(0.2);
  transform-origin: left;
  opacity: 0.35;
}
.host-glyph-stack span:nth-child(2) { width: 86%; }
.host-glyph-stack span:nth-child(3) { width: 68%; }
.host-rail.is-in .host-glyph-stack span {
  animation: host-bar 1.8s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}
.host-rail.is-in .host-glyph-stack span:nth-child(2) { animation-delay: 0.14s; }
.host-rail.is-in .host-glyph-stack span:nth-child(3) { animation-delay: 0.28s; }
.host-glyph-signal {
  place-items: center;
}
.host-glyph-signal i {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 0 rgba(0, 188, 212, 0.45);
}
.host-rail.is-in .host-glyph-signal i {
  animation: host-ping 2.1s ease-out infinite;
}
@keyframes host-cell-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}
@keyframes host-scan {
  from { transform: translateX(0); }
  to { transform: translateX(430%); }
}
@keyframes host-ecg {
  0% { stroke-dashoffset: 140; }
  45%, 100% { stroke-dashoffset: 0; }
}
@keyframes host-bar {
  0% { transform: scaleX(0.2); opacity: 0.35; }
  40% { transform: scaleX(1); opacity: 1; }
  100% { transform: scaleX(0.55); opacity: 0.55; }
}
@keyframes host-ping {
  0% { box-shadow: 0 0 0 0 rgba(0, 188, 212, 0.45); }
  70% { box-shadow: 0 0 0 12px rgba(0, 188, 212, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 188, 212, 0); }
}
@media (max-width: 860px) {
  .host-rail { margin-top: -1.2rem; }
  .host-rail-board { grid-template-columns: 1fr; }
  .host-cell + .host-cell::before {
    left: 1.4rem;
    right: 1.4rem;
    top: 0;
    bottom: auto;
    width: auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--brand), transparent);
  }
  .host-cell p { max-width: none; }
}
@media (prefers-reduced-motion: reduce) {
  .host-rail .host-cell,
  .host-rail.is-in .host-cell,
  .plan-include li,
  .plan-include.is-in li {
    opacity: 1;
    transform: none;
    animation: none;
  }
  .host-rail-scan,
  .host-rail.is-in .host-rail-scan,
  .host-rail.is-in .host-ecg,
  .host-rail.is-in .host-glyph-stack span,
  .host-rail.is-in .host-glyph-signal i { animation: none; opacity: 1; }
  .host-ecg { stroke-dashoffset: 0; }
  .host-glyph-stack span { transform: none; opacity: 1; }
}

.program-strip {
  padding: 2.5rem 0;
  background: var(--brand);
  color: var(--ink);
  position: relative;
  overflow: hidden;
}
.program-strip::before {
  content: "";
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle at 85% 30%, rgba(255, 255, 255, 0.22), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(232, 250, 252, 0.28), transparent 40%);
}
.program-strip-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
  position: relative; z-index: 1;
}
.program-strip-poster {
  margin: 0;
  flex: 0 0 148px;
  width: 148px;
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 12px 28px rgba(13, 74, 82, 0.16);
  background: #fff;
}
.program-strip-poster img { width: 100%; height: auto; display: block; }
.program-strip .eyebrow {
  color: var(--ink); font-weight: 700; letter-spacing: 0.04em;
  font-size: 0.75rem; margin-bottom: 0.4rem;
}
.program-strip h2 { color: var(--ink); font-size: clamp(1.4rem, 3vw, 1.9rem); margin-bottom: 0.4rem; }
.program-strip p { color: var(--ink-soft); max-width: 38rem; }
.program-strip .btn-primary { white-space: nowrap; }

@media (max-width: 480px) {
  .container, .trainings-toolbar, .blog-controls, .category-pills,
  .trainings-grid, .blog-grid, .article-wrap, .related-grid {
    width: calc(100% - 1.5rem);
  }
  .flagship-program { width: 100%; }
  .clients-grid { grid-template-columns: 1fr; }
  .hero-slide-content { min-height: 0; padding-bottom: 5.5rem; }
  .package-card.featured::before { font-size: 0.6rem; right: -2.3rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .swiper-slide-active img,
  .swiper-slide-active .hero-visual img { animation: none; }
  .site-ticker-track { animation: none; }
  .training-card:hover .enroll-btn::before,
  .enroll-btn:hover::before { animation: none; }
  html { scroll-behavior: auto; }
}

/* Skip link + focus */
.skip-link {
  position: absolute; left: 1rem; top: -100px; z-index: 2000;
  background: var(--ink); color: #fff; padding: 0.65rem 1rem;
  border-radius: var(--radius-sm); text-decoration: none; font-weight: 700;
}
.skip-link:focus { top: 1rem; }
.anchor-target { position: relative; top: calc(var(--chrome-h) * -1); display: block; height: 0; }
:focus-visible {
  outline: 3px solid rgba(0, 188, 212, 0.55);
  outline-offset: 3px;
}

/* Auth pages */
.auth-page .site-footer { margin-top: 0; }
.auth-shell {
  padding: calc(var(--chrome-h) + 2rem) 1.25rem 3rem;
  min-height: calc(100vh - 80px);
  display: grid; place-items: center;
}
.auth-card {
  width: min(980px, 100%);
  display: grid; grid-template-columns: 0.95fr 1.15fr;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.auth-card-wide { width: min(1080px, 100%); }
.auth-brand {
  background: var(--brand);
  color: var(--ink); padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex; flex-direction: column; justify-content: center; gap: 1rem;
}
.auth-logo {
  height: 52px;
  width: auto;
  max-width: 220px;
  align-self: flex-start;
  object-fit: contain;
  margin-bottom: 0.35rem;
}
.auth-brand h1 { color: var(--ink); font-size: clamp(1.6rem, 3vw, 2.1rem); }
.auth-brand p { color: var(--ink-soft); }
.auth-points { display: grid; gap: 0.65rem; margin-top: 0.5rem; }
.auth-points li {
  display: flex; gap: 0.65rem; align-items: flex-start;
  background: rgba(255,255,255,0.45); border: 1px solid rgba(255,255,255,0.55);
  padding: 0.7rem 0.85rem; border-radius: var(--radius-sm); font-size: 0.92rem;
}
.auth-points i { color: var(--ink); margin-top: 0.15rem; }
.auth-form-panel { padding: clamp(1.35rem, 3vw, 2.25rem); }
.auth-form-header { margin-bottom: 1.25rem; }
.auth-form-header .eyebrow {
  color: var(--brand-deep); font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; font-size: 0.75rem; margin-bottom: 0.4rem;
}
.auth-form-header h2 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); margin-bottom: 0.35rem; }
.auth-form-header h2 span { color: var(--brand-deep); }
.auth-form-header p { color: var(--muted); }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-weight: 600; margin-bottom: 0.4rem; font-size: 0.92rem; }
.input-wrapper {
  display: flex; align-items: center; gap: 0.55rem;
  background: var(--surface-2); border: 1.5px solid var(--line);
  border-radius: var(--radius-md); padding: 0.15rem 0.85rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.input-wrapper:focus-within {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(0, 188, 212, 0.12);
  background: #fff;
}
.input-wrapper i { color: var(--muted); }
.input-wrapper input, .input-wrapper select {
  width: 100%; border: none; background: transparent; outline: none;
  padding: 0.85rem 0; font: inherit; color: var(--ink);
}
.input-wrapper input.error, .input-wrapper select.error { color: var(--danger); }
.toggle-password {
  border: none; background: none; color: var(--muted); cursor: pointer; padding: 0.35rem;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }
.form-options { display: flex; justify-content: space-between; align-items: center; gap: 1rem; margin: 0.5rem 0 1.1rem; flex-wrap: wrap; }
.check-label { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--ink-soft); font-size: 0.92rem; }
.check-label.terms { margin: 0.35rem 0 1rem; }
.forgot-link { color: var(--brand-deep); font-weight: 600; text-decoration: none; font-size: 0.9rem; }
.btn-block { width: 100%; }
.auth-switch { text-align: center; margin-top: 1.25rem; color: var(--muted); }
.auth-switch a { color: var(--brand-deep); font-weight: 700; text-decoration: none; }
.field-error { display: none; color: var(--danger); font-size: 0.82rem; margin-top: 0.35rem; }
.field-error.show { display: block; }
.alert {
  display: flex; gap: 0.65rem; align-items: flex-start;
  padding: 0.85rem 1rem; border-radius: var(--radius-md);
  margin-bottom: 1rem; font-weight: 600; font-size: 0.92rem;
}
.alert-error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.alert-success { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }
.alert-info { background: #ecfeff; color: #155e75; border: 1px solid #a5f3fc; }
.password-strength { margin-top: 0.45rem; }
.password-strength .strength-bar { display: flex; gap: 0.35rem; margin-bottom: 0.25rem; }
.password-strength .bar { height: 5px; flex: 1; border-radius: 99px; background: var(--line); }
.password-strength .bar.active.weak { background: #ef4444; }
.password-strength .bar.active.medium { background: #f59e0b; }
.password-strength .bar.active.strong { background: #16a34a; }
.password-strength .strength-text { font-size: 0.78rem; color: var(--muted); }
.select-wrap select { appearance: none; cursor: pointer; }

.download-card .card-top { position: relative; }
.download-card .file-badges { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-bottom: 0.75rem; }
.download-card .file-type {
  background: var(--ft, #64748b); color: #fff;
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.04em;
  padding: 0.2rem 0.5rem; border-radius: var(--radius-pill);
}
.download-card .free-badge, .download-card .premium-badge {
  font-size: 0.7rem; font-weight: 700; padding: 0.2rem 0.5rem; border-radius: var(--radius-pill);
}
.download-card .free-badge { background: #e8f8ee; color: #15803d; }
.download-card .premium-badge { background: #fff6e0; color: #92400e; }

/* Public journey repairs: preserve brand colour while giving controls readable contrast. */
[hidden] { display: none !important; }
.nav-disclosure { border: 0; background: transparent; font-family: inherit; cursor: pointer; }
.nav-disclosure:hover, .nav-disclosure[aria-expanded="true"] { color: var(--brand-deep); background: #e0f5f7; }
.nav-disclosure[aria-expanded="true"] .fa-chevron-down { transform: rotate(180deg); }
.hero-motion-toggle {
  position: absolute; bottom: 1rem; right: 1rem; z-index: 12;
  min-height: 44px; padding: 0.5rem 0.85rem; border-radius: var(--radius-pill);
  border: 1px solid rgba(0, 188, 212, 0.45); background: #fff; color: var(--ink); cursor: pointer; font: inherit;
}
.heroSwiper.motion-paused .hero-visual img { animation-play-state: paused; }
.hero-slide-content .hero-heading { line-height: 1.15; letter-spacing: -0.02em; }
:focus-visible { outline: 3px solid var(--brand); outline-offset: 4px; }
.hero-slider :focus-visible { outline-color: var(--ink); }
.site-footer :focus-visible { outline-color: var(--brand); }
.input-wrapper:focus-within { border-color: var(--brand); box-shadow: 0 0 0 2px rgba(0, 188, 212, 0.35); }
.search-wrapper:focus-within { outline: 3px solid var(--brand); outline-offset: 3px; }
.filter-group select:focus-visible { outline: 3px solid var(--brand); outline-offset: 3px; }
.input-wrapper input, .input-wrapper select { min-width: 0; }
.toggle-password { min-width: 44px; min-height: 44px; }
.field-hint { color: var(--ink-soft); font-size: 0.88rem; margin-top: 0.4rem; }
.terms { align-items: flex-start; }
.terms input { flex: 0 0 auto; margin-top: 0.3rem; }
.terms a, .prose a:not(.btn) { color: var(--brand-deep); text-decoration: underline; }
.download-card .file-type { background: var(--brand); }
.download-card .card-top { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 0.75rem; align-items: center; }
.download-card .file-badges { margin: 0; }
.download-card .card-top h2 { grid-column: 1 / -1; font-size: 1.2rem; line-height: 1.35; }
.availability-badge { background: #fef3c7; color: #78350f; font-size: 0.8rem; padding: 0.2rem 0.6rem; border-radius: var(--radius-pill); font-weight: 700; }
.flash-container { position: static; padding-top: calc(var(--chrome-h) + 1rem); margin: 0 auto; width: min(680px, 94%); }
.flash-info { background: var(--brand); }
.policy-content { max-width: 800px; margin: 2rem auto 4rem; padding: 0 1.25rem; }
.policy-content h2 { font-size: 1.5rem; margin: 1.8rem 0 0.75rem; }
.policy-content p, .policy-content ul { margin-bottom: 1rem; }
.policy-content ul { padding-left: 1.25rem; }
.policy-content li { margin-bottom: 0.5rem; }
@media (max-width: 860px) {
  .whatsapp-float { display: none; }
  .nav-links { max-height: calc(100dvh - var(--chrome-h)); }
  .category-pills { scrollbar-width: thin; }
  .category-pills::-webkit-scrollbar { display: block; height: 5px; }
  .category-pills::-webkit-scrollbar-thumb { background: #94a3b8; border-radius: 5px; }
}
@media (max-width: 480px) {
  .hero-slide-content { width: calc(100% - 2rem); padding-bottom: 6rem; }
  .hero-slider .swiper-button-next, .hero-slider .swiper-button-prev { display: none; }
  .hero-slider .swiper-pagination {
    left: 1rem;
    right: 1rem;
    transform: none;
    width: auto;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

@media (max-width: 860px) {
  .auth-card, .auth-card-wide { grid-template-columns: 1fr; }
  .auth-brand { min-height: auto; }
  .form-grid { grid-template-columns: 1fr; }
}

/* Trainings prospectus — curriculum board, not a card catalog */
.trainings-page .flagship-program {
  width: 100%;
  max-width: none;
  margin: 0 0 2.75rem;
  padding: calc(var(--chrome-h) + clamp(1.35rem, 3vw, 2.1rem)) 0 1.6rem;
  border: 0;
  border-radius: 0;
  border-top: 0;
  overflow: hidden;
  box-shadow: none;
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 255, 255, 0.28), transparent 36%),
    #00bcd4;
  color: #042428;
  transition: none;
}
.trainings-page .flagship-program:hover {
  transform: none;
  box-shadow: none;
  border-color: transparent;
}
.trainings-page .flagship-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 340px);
  grid-template-areas: none;
  gap: clamp(1.4rem, 3vw, 2.5rem);
  align-items: start;
}
.trainings-page .flagship-copy,
.trainings-page .flagship-poster {
  grid-area: auto;
}
.trainings-page .flagship-copy h1 {
  color: #042428;
  font-size: clamp(2rem, 4.4vw, 3.15rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.02;
  margin-bottom: 0.85rem;
  max-width: 11ch;
}
.trainings-page .flagship-copy > p {
  color: #0d4a52;
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: 46ch;
  margin-bottom: 1rem;
}
.trainings-page .fee-ticket {
  display: grid;
  width: min(100%, 16.5rem);
  padding: 0.85rem 1.1rem 0.95rem 1.35rem;
  margin-bottom: 0.85rem;
  background:
    radial-gradient(circle at 0 1.15rem, #00bcd4 0 0.42rem, transparent 0.44rem),
    radial-gradient(circle at 0 3.15rem, #00bcd4 0 0.42rem, transparent 0.44rem),
    #fffdf6;
  color: #042428;
  border: 1px solid rgba(4, 36, 40, 0.12);
  box-shadow: 6px 8px 0 rgba(4, 36, 40, 0.12);
}
.trainings-page .fee-ticket-amount {
  font-family: var(--font-display);
  font-size: 2.55rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
}
.trainings-page .fee-ticket-unit,
.trainings-page .fee-ticket-rate {
  font-size: 0.92rem;
  color: #3d6b72;
}
.trainings-page .tuition-note {
  max-width: 46ch;
  font-size: 0.92rem;
  color: #0d4a52;
  margin-bottom: 0.95rem;
}
.trainings-page .flagship-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.25rem;
}
.trainings-page .flagship-program .btn-whatsapp {
  background: #042428;
  color: #fff;
  border-color: #042428;
  border-radius: 0;
  box-shadow: none;
}
.trainings-page .flagship-program .btn-whatsapp:hover {
  background: #065e63;
  color: #fff;
  transform: none;
  box-shadow: none;
}
.trainings-page .flagship-ask {
  color: #042428;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.trainings-page .flagship-ask:hover { color: #fff; }
.trainings-page .flagship-poster {
  margin: 0;
  max-width: 340px;
  justify-self: end;
  width: 100%;
}
.trainings-page .flyerSwiper {
  background: #fff;
  border: 1px solid rgba(4, 36, 40, 0.14);
  box-shadow: 10px 12px 0 rgba(4, 36, 40, 0.14);
  overflow: hidden;
}
.trainings-page .flyerSwiper .swiper-slide { height: auto; }
.trainings-page .flagship-poster img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: top center;
  background: #fff;
  display: block;
}
.trainings-page .flyer-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  margin-top: 0.85rem;
}
.trainings-page .flyer-prev,
.trainings-page .flyer-next {
  width: 2.6rem;
  height: 2.6rem;
  border: 0;
  background: #042428;
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.trainings-page .flyer-prev:hover,
.trainings-page .flyer-next:hover { background: #065e63; }
.trainings-page .flyer-index {
  margin: 0;
  min-width: 4.5rem;
  text-align: center;
  font-weight: 700;
  color: #042428;
  font-variant-numeric: tabular-nums;
}

.trainings-page .curriculum-path {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: 0;
  margin: 1.6rem 0 1.15rem;
  padding: 1.35rem 0 0.35rem;
  position: relative;
  border-top: 1px solid rgba(4, 36, 40, 0.16);
}
.trainings-page .curriculum-path li {
  position: relative;
  min-width: 0;
}
.trainings-page .curriculum-path li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 1.15rem;
  left: calc(50% + 1.15rem);
  right: calc(-50% + 1.15rem);
  height: 3px;
  background: #042428;
  pointer-events: none;
}
.trainings-page .curriculum-path li:last-child::after {
  content: "";
  position: absolute;
  top: 0.95rem;
  left: calc(50% + 1.2rem);
  width: 0;
  height: 0;
  border: 0.55rem solid transparent;
  border-left-color: #042428;
  pointer-events: none;
}
.trainings-page .curriculum-path a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: #042428;
  text-align: center;
  position: relative;
  z-index: 1;
}
.trainings-page .path-num {
  width: 2.3rem;
  height: 2.3rem;
  display: grid;
  place-items: center;
  background: #fffdf6;
  color: #042428;
  border: 2px solid #042428;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  box-shadow: 3px 3px 0 rgba(4, 36, 40, 0.18);
}
.trainings-page .curriculum-path li:first-child .path-num,
.trainings-page .curriculum-path li:last-child .path-num {
  background: #042428;
  color: #fffdf6;
  box-shadow: 3px 3px 0 rgba(255, 253, 246, 0.28);
}
.trainings-page .path-name {
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.2;
  max-width: 7.5ch;
}
.trainings-page .curriculum-path a:hover .path-num,
.trainings-page .curriculum-path a:focus-visible .path-num {
  background: #042428;
  color: #fffdf6;
  box-shadow: none;
}
.trainings-page .flagship-projects {
  list-style: none;
  display: grid;
  gap: 0.55rem;
}
.trainings-page .flagship-projects li {
  display: grid;
  grid-template-columns: 1.4rem 1fr;
  gap: 0.55rem;
  color: #042428;
  font-size: 0.95rem;
  line-height: 1.4;
}
.trainings-page .flagship-projects li span {
  font-family: var(--font-display);
  font-weight: 800;
}

.trainings-page .module-catalog {
  padding-bottom: 1.5rem;
}
.trainings-page .module-catalog-intro {
  max-width: 36rem;
  margin-bottom: 1.15rem;
}
.trainings-page .module-catalog-intro h2 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  margin-bottom: 0.4rem;
}
.trainings-page .module-catalog-intro p { color: var(--ink-soft); }
.trainings-page .module-list {
  display: grid;
  border-top: 2px solid #042428;
}
.trainings-page .module-row {
  display: grid;
  grid-template-columns: 3.25rem minmax(0, 1fr) minmax(11rem, 15rem);
  gap: 1rem 1.25rem;
  align-items: start;
  padding: 1.25rem 0.15rem 1.3rem;
  border-bottom: 1px solid var(--line);
  background: transparent;
  scroll-margin-top: calc(var(--chrome-h) + 0.75rem);
}
.trainings-page .module-index {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #00bcd4;
  line-height: 1;
  padding-top: 0.2rem;
}
.trainings-page .module-main h3 {
  font-size: 1.28rem;
  margin-bottom: 0.35rem;
}
.trainings-page .module-main .description {
  color: var(--ink-soft);
  font-size: 0.98rem;
  max-width: 58ch;
  margin-bottom: 0.7rem;
}
.trainings-page .topics-toggle {
  width: auto;
  border: 0;
  border-bottom: 1px solid rgba(0, 188, 212, 0.55);
  border-radius: 0;
  background: transparent;
  padding: 0.15rem 0;
  color: var(--brand-deep);
  display: inline-flex;
  gap: 0.45rem;
}
.trainings-page .topics-toggle:hover {
  background: transparent;
  border-color: #042428;
  color: #042428;
}
.trainings-page .topics-list,
.trainings-page .topics-list.open {
  display: none;
  background: var(--surface-2);
  border-radius: 0;
  padding: 0.75rem 0.9rem;
  margin: 0.75rem 0 0;
}
.trainings-page .topics-list.open {
  display: grid;
  gap: 0.3rem;
}
.trainings-page .module-aside {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.65rem;
  padding-top: 0.15rem;
}
.trainings-page .module-weeks {
  font-weight: 700;
  color: var(--ink-soft);
  font-size: 0.9rem;
}
.trainings-page .enroll-btn {
  width: auto;
  margin: 0;
  border-radius: 0;
  background: #fff;
  color: #08703b;
  border: 1.5px solid #25d366;
  box-shadow: none;
  padding: 0.6rem 0.85rem;
  font-size: 0.88rem;
  overflow: visible;
}
.trainings-page .enroll-btn::before { display: none; }
.trainings-page .enroll-btn:hover {
  background: #08703b;
  color: #fff;
  transform: none;
  box-shadow: none;
}
.trainings-page .training-faq {
  padding-top: 0.5rem;
  padding-bottom: 3rem;
}
.trainings-page .training-faq h2 { max-width: 20ch; }
.trainings-page .faq-list details {
  border-radius: 0;
  border-left: 3px solid #00bcd4;
}

@media (max-width: 860px) {
  .trainings-page .flagship-top {
    grid-template-columns: 1fr;
  }
  .trainings-page .flagship-poster {
    max-width: 280px;
    justify-self: start;
  }
  .trainings-page .curriculum-path {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    padding-bottom: 0.65rem;
  }
  .trainings-page .curriculum-path li {
    flex: 0 0 4.65rem;
  }
  .trainings-page .curriculum-path li:last-child::after {
    display: none;
  }
  .trainings-page .module-row {
    grid-template-columns: 2.4rem 1fr;
  }
  .trainings-page .module-aside {
    grid-column: 2;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .trainings-page .flagship-program .container,
  .trainings-page .module-catalog,
  .trainings-page .training-faq {
    width: calc(100% - 1.5rem);
  }
  .trainings-page .curriculum-path li {
    flex: 0 0 4.25rem;
  }
  .trainings-page .fee-ticket { width: 100%; }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.listing-page .page-hero {
  margin-top: var(--chrome-h);
  padding: 2.2rem 0 2rem;
  background: linear-gradient(180deg, #e8fafc 0%, #fff 72%);
}
.listing-page .page-hero .breadcrumbs {
  justify-content: flex-start;
  margin-bottom: 1.1rem;
}
.listing-page .page-hero h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: -0.03em;
  margin: 0 0 0.55rem;
}
.listing-page .page-hero p {
  max-width: 42rem;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}
.listing-page .services-section,
.listing-page .packages-section { padding-top: 1.25rem; }

/* Homepage hosting — Bluehost-style plan cards */
.packages-section {
  padding: 3.25rem 0 3.75rem;
  background: #fff;
}
.packages-intro {
  max-width: 36rem;
  margin: 0 auto 1.5rem;
  text-align: center;
}
.packages-intro h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}
.packages-intro p {
  color: var(--ink-soft);
  font-size: 1.05rem;
}
.plan-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0 auto 2.25rem;
  padding: 0.3rem;
  width: fit-content;
  max-width: 100%;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}
.plan-tab {
  min-height: 42px;
  padding: 0.5rem 1.15rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink-soft);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.plan-tab.is-active,
.plan-tab[aria-selected="true"] {
  background: #00bcd4;
  color: #042428;
}
.plan-panel[hidden] { display: none; }
.bh-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: start;
}
.bh-grid-single {
  grid-template-columns: minmax(0, 26rem);
  justify-content: center;
}
.bh-card {
  position: relative;
  background: #fff;
  border: 1px solid #e6eef0;
  border-radius: 8px;
  padding: 2rem 1.6rem 1.6rem;
  display: flex;
  flex-direction: column;
}
.bh-card.is-popular {
  border: 2px solid #00bcd4;
  padding-top: 2.35rem;
}
.bh-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: #00bcd4;
  color: #042428;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  padding: 0.28rem 0.85rem;
  border-radius: 999px;
  white-space: nowrap;
}
.bh-card h3 {
  font-size: 1.55rem;
  margin-bottom: 0.45rem;
}
.bh-fit {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.45;
  min-height: 3.2em;
  margin-bottom: 1.1rem;
}
.bh-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  flex-wrap: wrap;
  margin-bottom: 0.35rem;
}
.bh-amount {
  font-family: var(--font-display);
  font-size: 2.35rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #042428;
}
.bh-period {
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 1rem;
}
.bh-term {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 1.15rem;
}
.bh-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  width: 100%;
  border: 1.5px solid #00bcd4;
  border-radius: 999px;
  background: #fff;
  color: #042428;
  text-decoration: none;
  font-weight: 700;
  margin-bottom: 1.35rem;
}
.bh-card.is-popular .bh-cta,
.bh-cta:hover,
.bh-cta:focus-visible {
  background: #00bcd4;
  color: #042428;
}
.bh-alt {
  text-align: center;
  margin: -0.65rem 0 1.15rem;
  font-size: 0.88rem;
}
.bh-alt a {
  color: var(--brand-deep);
  font-weight: 700;
}
.bh-features {
  display: grid;
  gap: 0.55rem;
}
.bh-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.92rem;
  color: #042428;
  line-height: 1.35;
}
.bh-features i {
  width: 1rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}
.bh-features .is-in i { color: #16a34a; }
.bh-features .is-out i { color: #dc2626; }
.plan-include {
  margin-top: 2rem;
  padding: 1.35rem 1.7rem 1.3rem;
  background: #fff;
  border: 1px solid #e6eef0;
  border-radius: 28px;
  box-shadow: 0 10px 28px rgba(13, 74, 82, 0.05);
}
.plan-include-copy h3 {
  font-size: 1.15rem;
  margin: 0;
}
.plan-include-copy p {
  color: var(--ink-soft);
  margin: 0.28rem 0 0;
  font-size: 0.95rem;
}
.plan-include ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.4rem;
  margin-top: 0.95rem;
}
.plan-include li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 650;
  font-size: 0.92rem;
  color: #042428;
}
.plan-include i { color: var(--brand); font-size: 0.78rem; }
.plan-include.js-ready:not(.is-in) li { opacity: 0; transform: translateY(8px); }
.plan-include.is-in li {
  animation: host-cell-in 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.plan-include.is-in li:nth-child(2) { animation-delay: 0.06s; }
.plan-include.is-in li:nth-child(3) { animation-delay: 0.12s; }
.plan-include.is-in li:nth-child(4) { animation-delay: 0.18s; }
.plan-include.is-in li:nth-child(5) { animation-delay: 0.24s; }
.packages-section .booking-note {
  margin: 1.75rem auto 0;
  text-align: center;
  color: var(--ink-soft);
  max-width: 46ch;
  font-size: 0.92rem;
}

@media (max-width: 860px) {
  .bh-grid { grid-template-columns: 1fr; max-width: 26rem; margin-inline: auto; }
  .plan-include { border-radius: 22px; padding: 1.2rem 1.2rem 1.15rem; }
}

/* Service pages — bright workshop, not a dim brief */
.service-page .wd-hero {
  margin-top: var(--chrome-h);
  padding: 2.4rem 0 3rem;
  background: linear-gradient(180deg, #e8fafc 0%, #00bcd4 100%);
}
.service-page .wd-hero .breadcrumbs {
  justify-content: flex-start;
  margin-bottom: 1.4rem;
}
.service-page .wd-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 46%);
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: center;
}
.service-page .wd-hero-copy h1 {
  font-size: clamp(2.1rem, 4.6vw, 3.35rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #042428;
  max-width: 14ch;
  margin-bottom: 0.85rem;
}
.service-page .wd-hero-copy > p {
  color: #0d4a52;
  font-size: 1.08rem;
  max-width: 38ch;
  margin-bottom: 1.35rem;
}
.service-page .wd-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.2rem;
}
.service-page .wd-hero-alt {
  color: #042428;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.service-page .wd-hero-visual {
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow:
    0 28px 56px rgba(13, 74, 82, 0.18),
    0 0 0 8px rgba(255, 255, 255, 0.28);
  aspect-ratio: 4 / 3;
}
.service-page .wd-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-page .wd-builds {
  padding: 3.2rem 0 2.6rem;
  background: #fff;
}
.service-page .wd-builds h2,
.service-page .wd-path h2,
.service-page .wd-ready h2 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  letter-spacing: -0.03em;
  margin-bottom: 0.55rem;
}
.service-page .wd-builds > .container > p {
  color: var(--ink-soft);
  max-width: 52ch;
  margin-bottom: 1.6rem;
}
.service-page .wd-cases {
  display: grid;
  gap: 1.75rem;
}
.service-page .wd-case {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(220px, 0.85fr);
  gap: clamp(1.1rem, 3vw, 2rem);
  align-items: center;
  background: #f4fdfe;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 0.7rem;
}
.service-page .wd-case.is-flip {
  grid-template-columns: minmax(220px, 0.85fr) minmax(0, 1.35fr);
}
.service-page .wd-case.is-flip .wd-case-photo { order: 2; }
.service-page .wd-case-photo {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  aspect-ratio: 16 / 9;
}
.service-page .wd-case-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-page .wd-case-copy {
  padding: 0.4rem 0.85rem 0.4rem 0.2rem;
}
.service-page .wd-case.is-flip .wd-case-copy {
  padding: 0.4rem 0.2rem 0.4rem 0.85rem;
}
.service-page .wd-case-copy h3 {
  font-size: clamp(1.45rem, 2.6vw, 1.9rem);
  letter-spacing: -0.03em;
  margin-bottom: 0.45rem;
}
.service-page .wd-case-copy p {
  color: #0d4a52;
  font-size: 1.02rem;
  max-width: 28ch;
}
.service-page .wd-path {
  padding: 2.6rem 0 3rem;
  background: #e8fafc;
}
.service-page .wd-stations {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
  margin-top: 1.35rem;
}
.service-page .wd-stations li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.25rem 1.2rem 1.3rem;
}
.service-page .wd-step {
  display: grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  margin-bottom: 0.75rem;
  border-radius: 50%;
  background: #00bcd4;
  color: #042428;
  font-weight: 800;
}
.service-page .wd-stations p {
  color: #0d4a52;
  font-size: 0.98rem;
}
.service-page .wd-ready {
  padding: 3rem 0;
  background: #fff;
}
.service-page .wd-ready-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}
.service-page .wd-brief {
  background: #00bcd4;
  color: #042428;
  border-radius: 22px;
  padding: 1.6rem 1.5rem 1.5rem;
}
.service-page .wd-brief h2 { color: #042428; }
.service-page .wd-prep {
  list-style: none;
  display: grid;
  gap: 0.65rem;
  margin: 1rem 0 1.25rem;
}
.service-page .wd-prep li {
  padding-left: 1.2rem;
  position: relative;
}
.service-page .wd-prep li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #042428;
}
.service-page .wd-brief .btn-whatsapp {
  background: #042428;
  color: #fff;
  border-color: #042428;
}
.service-page .wd-brief .btn-whatsapp:hover {
  background: #065e63;
  color: #fff;
}
.service-page .wd-brief > p {
  margin-top: 0.85rem;
}
.service-page .wd-brief > p a {
  color: #042428;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.service-page .related-services {
  padding-bottom: 3.5rem;
}

@media (max-width: 860px) {
  .service-page .wd-hero-grid,
  .service-page .wd-case,
  .service-page .wd-case.is-flip,
  .service-page .wd-stations,
  .service-page .wd-ready-grid {
    grid-template-columns: 1fr;
  }
  .service-page .wd-case.is-flip .wd-case-photo { order: 0; }
  .service-page .wd-case-copy,
  .service-page .wd-case.is-flip .wd-case-copy {
    padding: 0.55rem 0.55rem 0.75rem;
  }
  .service-page .wd-hero-visual {
    max-width: 520px;
  }
}

/* Insights — reading desk, not a card catalogue */
.blogs-page .bl-hero {
  margin-top: var(--chrome-h);
  padding: 2.4rem 0 3rem;
  background: linear-gradient(180deg, #e8fafc 0%, #00bcd4 100%);
}
.blogs-page .bl-hero .breadcrumbs {
  justify-content: flex-start;
  margin-bottom: 1.4rem;
}
.blogs-page .bl-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 46%);
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: center;
}
.blogs-page .bl-hero-copy h1 {
  font-size: clamp(2.1rem, 4.6vw, 3.35rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #042428;
  max-width: 16ch;
  margin-bottom: 0.85rem;
}
.blogs-page .bl-hero-copy > p {
  color: #0d4a52;
  font-size: 1.08rem;
  max-width: 40ch;
  margin-bottom: 1.35rem;
}
.blogs-page .bl-desk {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.65rem 0.7rem;
  align-items: center;
  max-width: 34rem;
}
.blogs-page .bl-desk input[type="search"] {
  grid-column: 1;
  min-width: 0;
  border: 0;
  border-radius: 999px;
  padding: 0.75rem 1.05rem;
  background: #fff;
  color: #042428;
  font: inherit;
}
.blogs-page .bl-desk button {
  border: 0;
  border-radius: 999px;
  padding: 0.75rem 1.15rem;
  background: #042428;
  color: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.blogs-page .bl-desk button:hover { background: #065e63; }
.blogs-page .bl-desk select {
  grid-column: 1;
  border: 0;
  border-radius: 999px;
  padding: 0.65rem 1rem;
  background: rgba(255, 255, 255, 0.72);
  color: #042428;
  font: inherit;
}
.blogs-page .bl-count {
  grid-column: 2;
  margin: 0;
  color: #042428;
  font-weight: 700;
  font-size: 0.92rem;
}
.blogs-page .bl-hero-visual {
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow:
    0 28px 56px rgba(13, 74, 82, 0.18),
    0 0 0 8px rgba(255, 255, 255, 0.28);
  aspect-ratio: 4 / 3;
}
.blogs-page .bl-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blogs-page .bl-lead { padding: 3rem 0 1rem; background: #fff; }
.blogs-page .bl-desk-list,
.blogs-page .bl-community {
  padding: 1.4rem 0 2.8rem;
  background: #fff;
}
.blogs-page .bl-community { background: #e8fafc; }
.blogs-page .bl-desk-list h2,
.blogs-page .bl-community h2,
.blogs-page .bl-empty h2,
.blogs-page .bl-ready h2 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  letter-spacing: -0.03em;
  margin-bottom: 1.2rem;
}
.blogs-page .bl-rows {
  display: grid;
  gap: 1.75rem;
}
.blogs-page .bl-story {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(220px, 0.85fr);
  gap: clamp(1.1rem, 3vw, 2rem);
  align-items: center;
  background: #f4fdfe;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 0.7rem;
}
.blogs-page .bl-story.is-lead {
  grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.9fr);
  background: #e8fafc;
}
.blogs-page .bl-story.is-flip {
  grid-template-columns: minmax(220px, 0.85fr) minmax(0, 1.35fr);
}
.blogs-page .bl-story.is-flip .bl-photo { order: 2; }
.blogs-page .bl-photo {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  aspect-ratio: 16 / 9;
}
.blogs-page .bl-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blogs-page .bl-copy { padding: 0.4rem 0.85rem 0.4rem 0.2rem; }
.blogs-page .bl-story.is-flip .bl-copy { padding: 0.4rem 0.2rem 0.4rem 0.85rem; }
.blogs-page .bl-topic {
  color: #0d4a52;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.blogs-page .bl-copy h2,
.blogs-page .bl-copy h3 {
  font-size: clamp(1.35rem, 2.6vw, 1.9rem);
  letter-spacing: -0.03em;
  margin-bottom: 0.45rem;
}
.blogs-page .bl-copy h2 a,
.blogs-page .bl-copy h3 a {
  color: #042428;
  text-decoration: none;
}
.blogs-page .bl-copy h2 a:hover,
.blogs-page .bl-copy h3 a:hover { color: #065e63; }
.blogs-page .bl-copy > p { color: #0d4a52; font-size: 1.02rem; max-width: 42ch; }
.blogs-page .bl-meta { margin: 0.55rem 0 0.85rem; font-size: 0.92rem; }
.blogs-page .bl-copy .read-more { margin-top: 0.85rem; }
.blogs-page .bl-empty {
  padding: 3rem 0;
  background: #fff;
  text-align: left;
}
.blogs-page .bl-empty p {
  color: #0d4a52;
  max-width: 40ch;
  margin-bottom: 1.2rem;
}
.blogs-page .bl-ready { padding: 0 0 3.2rem; background: #fff; }
.blogs-page .bl-community + .bl-ready { background: #e8fafc; padding-top: 0.4rem; }
.blogs-page .bl-ready-grid { max-width: 40rem; }
.blogs-page .bl-brief {
  background: #00bcd4;
  color: #042428;
  border-radius: 22px;
  padding: 1.6rem 1.5rem 1.5rem;
}
.blogs-page .bl-brief h2 { color: #042428; }
.blogs-page .bl-brief > p { margin: 0.7rem 0 1.15rem; max-width: 38ch; }
.blogs-page .bl-brief .btn-whatsapp {
  background: #042428;
  color: #fff;
  border-color: #042428;
}
.blogs-page .bl-brief .btn-whatsapp:hover { background: #065e63; color: #fff; }
.blogs-page .bl-brief > p a {
  color: #042428;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.blogs-page .pagination { margin: 2rem auto 0; }

@media (max-width: 860px) {
  .blogs-page .bl-hero-grid,
  .blogs-page .bl-story,
  .blogs-page .bl-story.is-lead,
  .blogs-page .bl-story.is-flip {
    grid-template-columns: 1fr;
  }
  .blogs-page .bl-story.is-flip .bl-photo { order: 0; }
  .blogs-page .bl-copy,
  .blogs-page .bl-story.is-flip .bl-copy {
    padding: 0.55rem 0.55rem 0.75rem;
  }
  .blogs-page .bl-hero-visual { max-width: 520px; }
  .blogs-page .bl-desk { max-width: none; }
}

/* Downloads — request desk, not a fake file catalogue */
.downloads-page .dl-hero {
  margin-top: var(--chrome-h);
  padding: 2.4rem 0 3rem;
  background: linear-gradient(180deg, #e8fafc 0%, #00bcd4 100%);
}
.downloads-page .dl-hero .breadcrumbs {
  justify-content: flex-start;
  margin-bottom: 1.4rem;
}
.downloads-page .dl-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 46%);
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: center;
}
.downloads-page .dl-hero-copy h1 {
  font-size: clamp(2.1rem, 4.6vw, 3.35rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #042428;
  max-width: 15ch;
  margin-bottom: 0.85rem;
}
.downloads-page .dl-hero-copy > p {
  color: #0d4a52;
  font-size: 1.08rem;
  max-width: 40ch;
  margin-bottom: 1.35rem;
}
.downloads-page .dl-desk {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.65rem 0.7rem;
  align-items: center;
  max-width: 34rem;
}
.downloads-page .dl-desk input[type="search"] {
  min-width: 0;
  border: 0;
  border-radius: 999px;
  padding: 0.75rem 1.05rem;
  background: #fff;
  color: #042428;
  font: inherit;
}
.downloads-page .dl-desk button {
  border: 0;
  border-radius: 999px;
  padding: 0.75rem 1.15rem;
  background: #042428;
  color: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.downloads-page .dl-desk button:hover { background: #065e63; }
.downloads-page .dl-count {
  grid-column: 1 / -1;
  margin: 0;
  color: #042428;
  font-weight: 700;
  font-size: 0.92rem;
}
.downloads-page .dl-hero-visual {
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow:
    0 28px 56px rgba(13, 74, 82, 0.18),
    0 0 0 8px rgba(255, 255, 255, 0.28);
  aspect-ratio: 4 / 3;
}
.downloads-page .dl-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.downloads-page .dl-topics {
  background: #fff;
  padding: 1.1rem 0 0;
}
.downloads-page .dl-topics .container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
}
.downloads-page .dl-topics a {
  text-decoration: none;
  color: #0d4a52;
  background: #e8fafc;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
}
.downloads-page .dl-topics a.is-on,
.downloads-page .dl-topics a:hover {
  background: #00bcd4;
  color: #042428;
  border-color: #00bcd4;
}
.downloads-page .dl-topics .dl-clear {
  background: transparent;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  border-color: transparent;
}
.downloads-page .dl-lead { padding: 2.6rem 0 1rem; background: #fff; }
.downloads-page .dl-shelf { padding: 1.2rem 0 2.8rem; background: #fff; }
.downloads-page .dl-shelf h2,
.downloads-page .dl-empty h2,
.downloads-page .dl-ready h2 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  letter-spacing: -0.03em;
  margin-bottom: 1.2rem;
}
.downloads-page .dl-rows { display: grid; gap: 1.75rem; }
.downloads-page .dl-story {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(220px, 0.85fr);
  gap: clamp(1.1rem, 3vw, 2rem);
  align-items: center;
  background: #f4fdfe;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 0.7rem;
}
.downloads-page .dl-story.is-lead {
  grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.9fr);
  background: #e8fafc;
}
.downloads-page .dl-story.is-flip {
  grid-template-columns: minmax(220px, 0.85fr) minmax(0, 1.35fr);
}
.downloads-page .dl-story.is-flip .dl-photo { order: 2; }
.downloads-page .dl-photo {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  aspect-ratio: 16 / 9;
}
.downloads-page .dl-photo img,
.downloads-page .dl-ready-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.downloads-page .dl-copy { padding: 0.4rem 0.85rem 0.4rem 0.2rem; }
.downloads-page .dl-story.is-flip .dl-copy { padding: 0.4rem 0.2rem 0.4rem 0.85rem; }
.downloads-page .dl-topic {
  color: #0d4a52;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.downloads-page .dl-copy h2,
.downloads-page .dl-copy h3 {
  font-size: clamp(1.35rem, 2.6vw, 1.9rem);
  letter-spacing: -0.03em;
  margin-bottom: 0.45rem;
}
.downloads-page .dl-copy h2 a,
.downloads-page .dl-copy h3 a {
  color: #042428;
  text-decoration: none;
}
.downloads-page .dl-copy h2 a:hover,
.downloads-page .dl-copy h3 a:hover { color: #065e63; }
.downloads-page .dl-copy > p { color: #0d4a52; font-size: 1.02rem; max-width: 42ch; }
.downloads-page .dl-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.2rem;
  align-items: center;
  margin-top: 0.95rem;
}
.downloads-page .dl-ask {
  color: #042428;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.downloads-page .dl-empty {
  padding: 3rem 0;
  background: #fff;
}
.downloads-page .dl-empty p {
  color: #0d4a52;
  max-width: 40ch;
  margin-bottom: 1.2rem;
}
.downloads-page .dl-ready {
  padding: 0 0 3.2rem;
  background: #fff;
}
.downloads-page .dl-ready-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.85fr);
  gap: 1.5rem;
  align-items: stretch;
}
.downloads-page .dl-brief {
  background: #00bcd4;
  color: #042428;
  border-radius: 22px;
  padding: 1.6rem 1.5rem 1.5rem;
}
.downloads-page .dl-brief h2 { color: #042428; }
.downloads-page .dl-brief > p { margin: 0.7rem 0 1.15rem; max-width: 38ch; }
.downloads-page .dl-brief .btn-whatsapp {
  background: #042428;
  color: #fff;
  border-color: #042428;
}
.downloads-page .dl-brief .btn-whatsapp:hover { background: #065e63; color: #fff; }
.downloads-page .dl-brief > p a {
  color: #042428;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.downloads-page .dl-ready-photo {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  background: #e8fafc;
  min-height: 100%;
}

@media (max-width: 860px) {
  .downloads-page .dl-hero-grid,
  .downloads-page .dl-story,
  .downloads-page .dl-story.is-lead,
  .downloads-page .dl-story.is-flip,
  .downloads-page .dl-ready-grid {
    grid-template-columns: 1fr;
  }
  .downloads-page .dl-story.is-flip .dl-photo { order: 0; }
  .downloads-page .dl-copy,
  .downloads-page .dl-story.is-flip .dl-copy {
    padding: 0.55rem 0.55rem 0.75rem;
  }
  .downloads-page .dl-hero-visual { max-width: 520px; }
  .downloads-page .dl-desk { max-width: none; }
}

/* Contact — writing desk, not two generic cards */
.contact-page .ct-hero {
  margin-top: var(--chrome-h);
  padding: 2.4rem 0 3rem;
  background: linear-gradient(180deg, #e8fafc 0%, #00bcd4 100%);
}
.contact-page .ct-hero .breadcrumbs {
  justify-content: flex-start;
  margin-bottom: 1.4rem;
}
.contact-page .ct-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 46%);
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: center;
}
.contact-page .ct-hero-copy h1 {
  font-size: clamp(2.1rem, 4.6vw, 3.35rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #042428;
  max-width: 15ch;
  margin-bottom: 0.85rem;
}
.contact-page .ct-hero-copy > p {
  color: #0d4a52;
  font-size: 1.08rem;
  max-width: 40ch;
}
.contact-page .ct-hero-visual {
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow:
    0 28px 56px rgba(13, 74, 82, 0.18),
    0 0 0 8px rgba(255, 255, 255, 0.28);
  aspect-ratio: 4 / 3;
}
.contact-page .ct-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-page .ct-desk {
  padding: 2.8rem 0 2.4rem;
  background: #fff;
}
.contact-page .ct-desk-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.95fr);
  gap: 1.6rem;
  align-items: start;
}
.contact-page .ct-form,
.contact-page .ct-office-copy {
  background: #f4fdfe;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.5rem 1.4rem 1.45rem;
}
.contact-page .ct-preview {
  background: #00bcd4;
  color: #042428;
  border-radius: 22px;
  padding: 1.5rem 1.4rem 1.45rem;
}
.contact-page .ct-desk h2,
.contact-page .ct-office h2 {
  font-size: clamp(1.45rem, 2.6vw, 1.9rem);
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  color: #042428;
}
.contact-page .ct-form label {
  display: block;
  font-weight: 700;
  color: #042428;
  margin-bottom: 0.4rem;
}
.contact-page .ct-form .form-group { margin-bottom: 1rem; }
.contact-page .ct-form select,
.contact-page .ct-form textarea {
  width: 100%;
  min-width: 0;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: #042428;
  font: inherit;
}
.contact-page .ct-form textarea { resize: vertical; min-height: 8rem; }
.contact-page .ct-form .btn-primary { margin-top: 0.35rem; }
.contact-page .ct-form .field-hint,
.contact-page .ct-preview .field-hint {
  color: #0d4a52;
  font-size: 0.92rem;
  margin-top: 0.55rem;
}
.contact-page .ct-preview #enquiryMessage {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 14px;
  padding: 1rem 1.05rem;
  margin-bottom: 0.75rem;
  max-width: none;
}
.contact-page .ct-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.15rem;
  margin: 1rem 0 0.85rem;
}
.contact-page .ct-preview .btn-whatsapp {
  background: #042428;
  color: #fff;
  border-color: #042428;
}
.contact-page .ct-preview .btn-whatsapp:hover { background: #065e63; color: #fff; }
.contact-page .ct-email {
  color: #042428;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.contact-page .ct-preview a:not(.btn) { color: #042428; font-weight: 700; }
.contact-page .ct-office {
  padding: 0 0 3.2rem;
  background: #fff;
}
.contact-page .ct-office-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.9fr);
  gap: 1.6rem;
  align-items: stretch;
}
.contact-page .ct-office-copy dl { margin: 0 0 1rem; }
.contact-page .ct-office-copy dt {
  color: #0d4a52;
  font-weight: 700;
  margin-top: 0.85rem;
}
.contact-page .ct-office-copy dd { margin: 0.2rem 0 0; overflow-wrap: anywhere; }
.contact-page .ct-office-copy a { color: #042428; font-weight: 700; }
.contact-page .ct-office-copy > p { color: #0d4a52; max-width: 42ch; margin-top: 0.85rem; }
.contact-page .ct-office-photo {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  background: #e8fafc;
  min-height: 100%;
}
.contact-page .ct-office-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 860px) {
  .contact-page .ct-hero-grid,
  .contact-page .ct-desk-grid,
  .contact-page .ct-office-grid {
    grid-template-columns: 1fr;
  }
  .contact-page .ct-hero-visual { max-width: 520px; }
}

/* Privacy — reading desk, not a generic policy dump */
.privacy-page .pv-hero {
  margin-top: var(--chrome-h);
  padding: 2.4rem 0 3rem;
  background: linear-gradient(180deg, #e8fafc 0%, #00bcd4 100%);
}
.privacy-page .pv-hero .breadcrumbs {
  justify-content: flex-start;
  margin-bottom: 1.4rem;
}
.privacy-page .pv-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 46%);
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: center;
}
.privacy-page .pv-hero-copy h1 {
  font-size: clamp(2.1rem, 4.6vw, 3.35rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #042428;
  max-width: 12ch;
  margin-bottom: 0.85rem;
}
.privacy-page .pv-hero-copy > p {
  color: #0d4a52;
  font-size: 1.08rem;
  max-width: 42ch;
}
.privacy-page .pv-hero-visual {
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow:
    0 28px 56px rgba(13, 74, 82, 0.18),
    0 0 0 8px rgba(255, 255, 255, 0.28);
  aspect-ratio: 4 / 3;
}
.privacy-page .pv-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.privacy-page .pv-desk {
  padding: 2.8rem 0 2.4rem;
  background: #fff;
}
.privacy-page .pv-desk-grid {
  display: grid;
  grid-template-columns: minmax(180px, 0.38fr) minmax(0, 1fr);
  gap: 1.8rem 2.2rem;
  align-items: start;
}
.privacy-page .pv-index {
  position: sticky;
  top: calc(var(--chrome-h) + 1rem);
  background: #f4fdfe;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.35rem 1.25rem 1.2rem;
}
.privacy-page .pv-index h2 {
  font-size: 1.05rem;
  margin: 0 0 0.85rem;
  color: #042428;
}
.privacy-page .pv-index ol {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.privacy-page .pv-index a {
  display: block;
  color: #042428;
  font-weight: 700;
  text-decoration: none;
  line-height: 1.35;
  padding: 0.15rem 0;
  border-bottom: 1.5px solid transparent;
}
.privacy-page .pv-index a:hover { color: var(--brand-deep); }
.privacy-page .pv-index > p {
  margin: 1rem 0 0;
  font-size: 0.92rem;
}
.privacy-page .pv-index > p a {
  color: var(--brand-deep);
  font-weight: 700;
}
.privacy-page .pv-paper {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.7rem 1.6rem 1.5rem;
  max-width: 42rem;
}
.privacy-page .pv-paper section + section {
  margin-top: 1.8rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
}
.privacy-page .pv-paper h2 {
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
  letter-spacing: -0.03em;
  margin: 0 0 0.7rem;
  scroll-margin-top: calc(var(--chrome-h) + 1rem);
}
.privacy-page .pv-paper p {
  color: #0d4a52;
  margin: 0 0 0.9rem;
  max-width: 62ch;
}
.privacy-page .pv-paper p:last-child { margin-bottom: 0; }
.privacy-page .pv-ask {
  padding: 0 0 3.2rem;
  background: #fff;
}
.privacy-page .pv-ask-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.4rem;
  align-items: center;
  background: #00bcd4;
  color: #042428;
  border-radius: 22px;
  padding: 1.5rem 1.5rem 1.4rem;
}
.privacy-page .pv-ask h2 {
  font-size: clamp(1.35rem, 2.6vw, 1.75rem);
  margin: 0 0 0.45rem;
  color: #042428;
}
.privacy-page .pv-ask p {
  margin: 0;
  max-width: 46ch;
}
.privacy-page .pv-ask a { color: #042428; font-weight: 700; }
.privacy-page .pv-ask-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.15rem;
}
.privacy-page .pv-ask .btn-whatsapp {
  background: #042428;
  color: #fff;
}
.privacy-page .pv-ask .btn-whatsapp:hover { background: #065e63; color: #fff; }
.privacy-page .pv-ask-link {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

@media (max-width: 860px) {
  .privacy-page .pv-hero-grid,
  .privacy-page .pv-desk-grid,
  .privacy-page .pv-ask-grid {
    grid-template-columns: 1fr;
  }
  .privacy-page .pv-hero-visual { max-width: 520px; }
  .privacy-page .pv-index { position: static; }
  .privacy-page .pv-paper { max-width: none; }
}
