:root {
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --blue-800: #1e40af;
  --orange-50: #fff7ed;
  --orange-500: #f97316;
  --orange-600: #ea580c;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --white: #ffffff;
  --shadow-header: 0 16px 40px rgba(15, 23, 42, 0.08);
  --shadow-soft: 0 24px 55px rgba(15, 23, 42, 0.14);
  --radius: 8px;
  --container: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--gray-800);
  background: var(--gray-50);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

[hidden] {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Faixa azul superior com texto em movimento. */
.announcement-bar {
  position: relative;
  width: 100%;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(90deg, #123bb4 0%, var(--blue-600) 48%, #1646c8 100%);
  padding: 5px 0;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.16);
}

.marquee {
  width: 100%;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  animation: marquee-scroll 24s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-track span {
  display: inline-block;
  padding: 0 38px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.35;
  opacity: 0.96;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Header principal com logo, navegacao e chamada para orcamento. */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  min-height: 78px;
  overflow: visible;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(209, 213, 219, 0.78);
  box-shadow: var(--shadow-header);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container);
  height: 78px;
  margin: 0 auto;
  padding: 0 clamp(18px, 3vw, 42px);
  gap: clamp(18px, 2.4vw, 38px);
  overflow: visible;
}

.logo,
.header-logo,
.navbar-logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  overflow: visible;
  background: transparent;
}

.logo img,
.header-logo img,
.navbar-logo img {
  width: clamp(230px, 16vw, 265px);
  height: auto;
  display: block;
  object-fit: contain;
  background: transparent;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 1.5vw, 18px);
  flex: 1 1 auto;
  min-width: 0;
  transform: translateY(5px);
}

.header-actions {
  transform: translateY(5px);
}

.desktop-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: var(--radius);
  color: var(--gray-700);
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  transition: color 160ms ease, background 160ms ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  margin: auto;
  background: linear-gradient(90deg, var(--blue-600), var(--orange-500));
  transition: width 220ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--blue-600);
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.08), rgba(249, 115, 22, 0.08));
}

.desktop-nav a[aria-current="page"] {
  color: var(--blue-600);
  background: rgba(37, 99, 235, 0.08);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.desktop-nav a[aria-current="page"]::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex: 0 0 auto;
  margin-left: auto;
}

.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--gray-600);
  background: rgba(249, 250, 251, 0.88);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.icon-button:hover,
.icon-button:focus-visible {
  color: var(--blue-600);
  background: #eff6ff;
  border-color: rgba(37, 99, 235, 0.22);
}

/* Icones inline via CSS para evitar bibliotecas externas. */
.icon {
  display: inline-block;
  width: 22px;
  height: 22px;
  background: currentColor;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
}

.icon-menu {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3.1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='3.5' x2='20.5' y1='12' y2='12'/%3E%3Cline x1='3.5' x2='20.5' y1='6' y2='6'/%3E%3Cline x1='3.5' x2='20.5' y1='18' y2='18'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3.1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='3.5' x2='20.5' y1='12' y2='12'/%3E%3Cline x1='3.5' x2='20.5' y1='6' y2='6'/%3E%3Cline x1='3.5' x2='20.5' y1='18' y2='18'/%3E%3C/svg%3E");
}

.icon-close {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 6 6 18'/%3E%3Cpath d='m6 6 12 12'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 6 6 18'/%3E%3Cpath d='m6 6 12 12'/%3E%3C/svg%3E");
}

.quote-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 22px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-600), var(--blue-800));
  border-radius: var(--radius);
  box-shadow: 0 12px 26px rgba(37, 99, 235, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.24);
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  transition: background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.quote-button:hover,
.quote-button:focus-visible {
  background: linear-gradient(135deg, var(--blue-700), var(--orange-600));
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.24);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  flex: 0 0 44px;
}

.mobile-menu {
  display: grid;
  gap: 6px;
  padding: 8px 16px 18px;
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid rgba(209, 213, 219, 0.76);
  box-shadow: 0 18px 34px rgba(17, 24, 39, 0.1);
}

.mobile-menu a:not(.quote-button) {
  display: block;
  padding: 12px;
  border-radius: var(--radius);
  color: var(--gray-700);
  font-weight: 500;
}

.mobile-menu a:not(.quote-button):hover,
.mobile-menu a:not(.quote-button):focus-visible {
  color: var(--blue-600);
  background: var(--gray-100);
}

.quote-button-mobile {
  width: 100%;
}

/* Banner principal em imagem unica. */
.hero-banner {
  width: 100%;
  overflow: hidden;
  background: linear-gradient(180deg, var(--white) 0%, #f8fafc 100%);
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.12);
}

.hero-banner::before {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-700) 0%, var(--blue-600) 52%, var(--orange-500) 100%);
}

.hero-banner picture {
  display: block;
  width: 100%;
}

.hero-banner-image {
  width: 100%;
  height: auto;
  margin: 0;
  display: block;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  filter: saturate(1.05) contrast(1.03);
}

.about-section {
  position: relative;
  scroll-margin-top: 104px;
  overflow: hidden;
  padding: clamp(34px, 4vw, 54px) 0 clamp(44px, 5vw, 66px);
  background:
    linear-gradient(90deg, #071463 0 12%, transparent 12%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.about-section::before,
.about-section::after {
  content: "";
  position: absolute;
  top: -8%;
  bottom: -10%;
  width: clamp(78px, 12vw, 170px);
  background: rgba(7, 20, 99, 0.08);
  transform: skewX(-15deg);
  pointer-events: none;
}

.about-section::before {
  left: clamp(118px, 16vw, 260px);
  border-left: 10px solid rgba(229, 231, 235, 0.92);
}

.about-section::after {
  right: clamp(-64px, -4vw, -20px);
  background: rgba(148, 163, 184, 0.34);
  border-left: 10px solid rgba(255, 255, 255, 0.96);
}

.about-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: clamp(34px, 6vw, 86px);
  width: min(100% - 36px, 1210px);
  min-height: clamp(470px, 40vw, 590px);
  margin: 0 auto;
  padding-left: clamp(170px, 15vw, 240px);
}

.about-copy {
  max-width: 610px;
}

.about-chevron {
  display: inline-block;
  margin: 0 0 2px clamp(58px, 7vw, 96px);
  color: rgba(148, 163, 184, 0.42);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.08em;
}

.about-copy h1,
.about-copy h2 {
  margin: 0 0 20px;
  color: var(--orange-500);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.02;
}

.about-copy p {
  margin: 0;
  color: #27272a;
  font-size: clamp(15px, 1.22vw, 17px);
  font-weight: 500;
  line-height: 1.62;
}

.about-copy p + p {
  margin-top: 16px;
}

.about-media {
  position: relative;
  display: grid;
  align-self: stretch;
  min-height: 430px;
}

.about-media::before {
  content: "";
  position: absolute;
  top: 30px;
  right: clamp(26px, 6vw, 86px);
  width: 118px;
  height: 118px;
  background-image: radial-gradient(circle, #071463 2px, transparent 2.4px);
  background-size: 18px 18px;
  opacity: 0.9;
}

.about-media::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: clamp(34px, 6vw, 80px);
  width: 106px;
  height: 82px;
  opacity: 0.28;
  background:
    linear-gradient(45deg, transparent 44%, #64748b 45% 55%, transparent 56%) 0 0 / 24px 24px,
    linear-gradient(-45deg, transparent 44%, #64748b 45% 55%, transparent 56%) 0 0 / 24px 24px;
}

.about-image-wrapper {
  position: relative;
  z-index: 1;
  display: block;
  align-self: end;
  justify-self: end;
  width: min(100%, 520px);
  min-height: clamp(340px, 34vw, 510px);
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 28px 58px rgba(15, 23, 42, 0.15);
  background: #ffffff;
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: clamp(340px, 34vw, 510px);
}

.about-page-hero {
  border-bottom: 1px solid rgba(209, 213, 219, 0.76);
}

.about-story-section {
  padding: clamp(54px, 7vw, 92px) clamp(18px, 4vw, 42px) clamp(72px, 8vw, 112px);
  background:
    linear-gradient(180deg, #f8fafc 0%, #ffffff 38%),
    var(--white);
}

.about-story-inner {
  width: min(100%, 980px);
  margin: 0 auto;
}

.about-story-card {
  padding: clamp(28px, 5vw, 56px);
  background: var(--white);
  border: 1px solid rgba(209, 213, 219, 0.86);
  border-radius: 14px;
  box-shadow: 0 24px 58px rgba(15, 23, 42, 0.08);
}

.about-story-card h2 {
  margin: clamp(34px, 5vw, 48px) 0 14px;
  color: #071463;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  line-height: 1.1;
}

.about-story-card h2:first-child {
  margin-top: 0;
}

.about-story-card p,
.about-story-card li {
  color: #374151;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.82;
}

.about-story-card p {
  margin: 0;
}

.about-story-card p + p {
  margin-top: 12px;
}

.about-story-card ul,
.about-story-card ol {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding-left: 22px;
}

.about-story-card strong {
  color: var(--orange-500);
}

.whatsapp-chat {
  --whatsapp-label-padding: 7px 16px 7px 14px;
  --whatsapp-label-max-width: 154px;
  --whatsapp-label-border: rgba(209, 213, 219, 0.62);
  position: fixed;
  right: clamp(14px, 2.4vw, 30px);
  bottom: clamp(16px, 2.8vw, 30px);
  z-index: 80;
  display: inline-flex;
  align-items: center;
  color: var(--gray-800);
  filter: drop-shadow(0 14px 24px rgba(15, 23, 42, 0.18));
  transition: transform 160ms ease, filter 160ms ease;
}

.whatsapp-chat:hover,
.whatsapp-chat:focus-visible {
  transform: translateY(-2px);
  filter: drop-shadow(0 18px 28px rgba(15, 23, 42, 0.22));
}

.whatsapp-chat-label {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  max-width: 0;
  overflow: hidden;
  padding: 7px 0;
  margin-right: -10px;
  color: var(--gray-800);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid transparent;
  border-radius: 9px;
  box-shadow: none;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  opacity: 0;
  transform: translateX(12px);
  white-space: nowrap;
  animation: whatsappLabelOpen 7.5s ease-in-out 1s infinite;
}

.whatsapp-chat-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  color: var(--white);
  background: #35d76f;
  border: 5px solid rgba(255, 255, 255, 0.96);
  border-radius: 50%;
  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.32);
  animation: whatsappIconPop 7.5s cubic-bezier(0.22, 1, 0.36, 1) 1s infinite;
  isolation: isolate;
}

.whatsapp-chat-icon::before {
  position: absolute;
  inset: -8px;
  z-index: -1;
  content: "";
  border: 1px solid rgba(37, 211, 102, 0.42);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.75);
  animation: whatsappIconPulse 7.5s ease-out 1s infinite;
}

.whatsapp-chat-icon svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
}

.whatsapp-chat:hover .whatsapp-chat-label,
.whatsapp-chat:focus-visible .whatsapp-chat-label {
  max-width: var(--whatsapp-label-max-width);
  padding: var(--whatsapp-label-padding);
  border-color: var(--whatsapp-label-border);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
  opacity: 1;
  transform: translateX(0);
  animation: none;
}

.whatsapp-chat:hover .whatsapp-chat-icon,
.whatsapp-chat:focus-visible .whatsapp-chat-icon,
.whatsapp-chat:hover .whatsapp-chat-icon::before,
.whatsapp-chat:focus-visible .whatsapp-chat-icon::before {
  animation: none;
}

.whatsapp-chat:hover .whatsapp-chat-icon,
.whatsapp-chat:focus-visible .whatsapp-chat-icon {
  transform: scale(1.04);
}

@keyframes whatsappLabelOpen {
  0%,
  12% {
    max-width: 0;
    padding: 7px 0;
    border-color: transparent;
    box-shadow: none;
    opacity: 0;
    transform: translateX(12px);
  }

  22%,
  72% {
    max-width: var(--whatsapp-label-max-width);
    padding: var(--whatsapp-label-padding);
    border-color: var(--whatsapp-label-border);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
    opacity: 1;
    transform: translateX(0);
  }

  86%,
  100% {
    max-width: 0;
    padding: 7px 0;
    border-color: transparent;
    box-shadow: none;
    opacity: 0;
    transform: translateX(12px);
  }
}

@keyframes whatsappIconPop {
  0%,
  12%,
  36%,
  100% {
    transform: scale(1);
  }

  16% {
    transform: scale(1.1);
  }

  20% {
    transform: scale(0.96);
  }

  26% {
    transform: scale(1.04);
  }
}

@keyframes whatsappIconPulse {
  0%,
  9%,
  100% {
    opacity: 0;
    transform: scale(0.75);
  }

  14% {
    opacity: 0.7;
    transform: scale(0.95);
  }

  32% {
    opacity: 0;
    transform: scale(1.55);
  }
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-chat-label,
  .whatsapp-chat-icon,
  .whatsapp-chat-icon::before {
    animation: none;
  }

  .whatsapp-chat-label {
    max-width: var(--whatsapp-label-max-width);
    padding: var(--whatsapp-label-padding);
    border-color: var(--whatsapp-label-border);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
    opacity: 1;
    transform: translateX(0);
  }

  .whatsapp-chat-icon::before {
    display: none;
  }
}

.courses-section {
  position: relative;
  overflow: hidden;
  scroll-margin-top: 104px;
  background: var(--white);
  padding-bottom: clamp(52px, 7vw, 92px);
}

.courses-intro {
  color: var(--white);
  background: linear-gradient(135deg, #071463 0%, #071b78 52%, #08115a 100%);
  padding: clamp(34px, 4.5vw, 56px) clamp(18px, 4vw, 40px) clamp(120px, 12vw, 150px);
}

.courses-copy {
  width: min(100%, 920px);
  margin: 0 auto;
}

.courses-copy h2 {
  margin: 0 0 8px;
  color: var(--orange-500);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
}

.courses-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.65;
}

.courses-copy p + p {
  margin-top: 16px;
}

.courses-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 2.6vw, 34px);
  width: min(100% - 36px, 900px);
  margin: clamp(-92px, -7vw, -64px) auto 0;
}

.examples-hero {
  padding: clamp(54px, 6vw, 84px) clamp(18px, 4vw, 42px) clamp(48px, 5vw, 72px);
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.04), rgba(249, 115, 22, 0.03) 46%, rgba(255, 255, 255, 0) 72%),
    var(--white);
}

.examples-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 300px);
  align-items: start;
  gap: clamp(48px, 8vw, 116px);
  width: min(100%, 980px);
  margin: 0 auto;
}

.examples-hero-copy {
  max-width: 560px;
}

.examples-hero h1 {
  margin: 0 0 22px;
  color: #050505;
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 850;
  line-height: 0.98;
}

.examples-hero h1 span {
  color: var(--orange-500);
}

.examples-hero p {
  margin: 0;
  max-width: 540px;
  color: #111827;
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 500;
  line-height: 1.7;
}

.examples-hero p strong {
  color: var(--orange-500);
  font-weight: 700;
}

.examples-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 48px;
  padding: 12px 24px;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange-500), #ff7a00);
  border-radius: 3px;
  box-shadow: 0 14px 25px rgba(249, 115, 22, 0.28);
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.examples-cta:hover,
.examples-cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(249, 115, 22, 0.34);
}

.examples-hero-media {
  display: grid;
  justify-items: center;
  gap: clamp(24px, 3vw, 34px);
  width: 100%;
}

.examples-video-column {
  width: min(100%, 960px);
  margin: clamp(44px, 6vw, 72px) auto 0;
}

.vsl-player {
  width: 100%;
}

.vsl-preview,
.vsl-player iframe,
.vsl-local-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 18px;
  box-shadow: 0 26px 62px rgba(15, 23, 42, 0.28);
}

.vsl-local-video {
  display: block;
  background: #050816;
  object-fit: cover;
}

.vsl-preview {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 0;
  background:
    linear-gradient(135deg, rgba(7, 20, 99, 0.9), rgba(249, 115, 22, 0.72)),
    url("../assets/images/bannerdesktop-optimized.jpg") center / cover;
  cursor: pointer;
}

.vsl-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 4px;
  border-radius: inherit;
  background: conic-gradient(from var(--vsl-angle), transparent 0 58%, rgba(249, 115, 22, 0.12) 66%, rgba(249, 115, 22, 0.98) 76%, #fed7aa 81%, rgba(249, 115, 22, 0.98) 86%, transparent 100%);
  filter: drop-shadow(0 0 16px rgba(249, 115, 22, 0.62));
  pointer-events: none;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: vslBorderSpin 3.2s linear infinite;
}

.vsl-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  box-shadow: inset 0 -12px 34px rgba(249, 115, 22, 0.22), inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.vsl-preview-bg,
.vsl-preview-shade {
  position: absolute;
  inset: 0;
}

.vsl-preview-bg {
  background-position: center;
  background-size: cover;
  opacity: 0;
  transition: opacity 180ms ease;
}

.vsl-preview-bg.has-thumbnail {
  opacity: 1;
}

.vsl-preview-shade {
  background: rgba(0, 0, 0, 0.34);
}

.vsl-overlay {
  position: relative;
  z-index: 3;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: min(34%, 320px);
  min-height: 37%;
  padding: clamp(16px, 2.3vw, 24px);
  color: #050505;
  background:
    linear-gradient(135deg, rgba(255, 126, 33, 0.6), rgba(249, 115, 22, 0.34)),
    rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 24px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    inset 0 -18px 40px rgba(255, 255, 255, 0.08),
    0 0 0 8px rgba(249, 115, 22, 0.2),
    0 24px 54px rgba(249, 115, 22, 0.22);
  backdrop-filter: blur(18px) saturate(1.35);
  animation: vslPulse 2s ease-in-out infinite;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.vsl-preview:hover .vsl-overlay,
.vsl-preview:focus-visible .vsl-overlay {
  transform: scale(1.04);
}

.vsl-overlay-text {
  font-size: clamp(14px, 1.35vw, 18px);
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
}

.vsl-speaker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
}

.vsl-speaker svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

@keyframes vslPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.32),
      inset 0 -18px 40px rgba(255, 255, 255, 0.08),
      0 0 0 8px rgba(249, 115, 22, 0.2),
      0 24px 54px rgba(249, 115, 22, 0.22);
  }

  50% {
    transform: scale(1.06);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.36),
      inset 0 -18px 40px rgba(255, 255, 255, 0.1),
      0 0 0 14px rgba(249, 115, 22, 0.14),
      0 30px 68px rgba(249, 115, 22, 0.32);
  }
}

@property --vsl-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

@keyframes vslBorderSpin {
  to {
    --vsl-angle: 360deg;
  }
}

.examples-mec-card {
  width: min(100%, 300px);
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.16);
}

.examples-mec-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.social-proof-section {
  padding: clamp(64px, 8vw, 110px) clamp(18px, 4vw, 42px);
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.12), transparent 34%),
    linear-gradient(180deg, #071463 0%, #08115c 100%);
}

.social-proof-inner {
  width: min(100%, 1120px);
  margin: 0 auto;
}

.social-proof-header {
  max-width: 720px;
  margin: 0 auto clamp(32px, 5vw, 54px);
  text-align: center;
}

.social-proof-header .section-kicker {
  color: #dbeafe;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
}

.social-proof-header h2 {
  margin: 16px 0 12px;
  color: var(--white);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 850;
  line-height: 1.08;
}

.social-proof-header p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 500;
  line-height: 1.6;
}

.social-proof-carousel {
  position: relative;
}

.social-proof-viewport {
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.social-proof-viewport::-webkit-scrollbar {
  display: none;
}

.social-proof-track {
  display: flex;
  gap: clamp(18px, 2vw, 28px);
  padding: 8px 2px 24px;
}

.proof-card {
  position: relative;
  flex: 0 0 clamp(230px, 25vw, 320px);
  min-height: 420px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.28);
  scroll-snap-align: start;
}

.proof-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.proof-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center top;
}

.carousel-button {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: #071463;
  background: var(--white);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  transform: translateY(-50%);
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.carousel-button span {
  margin-top: -3px;
  font-size: 42px;
  font-weight: 500;
  line-height: 1;
}

.carousel-button:hover,
.carousel-button:focus-visible {
  transform: translateY(-50%) scale(1.06);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.34);
}

.carousel-button-prev {
  left: -24px;
}

.carousel-button-next {
  right: -24px;
}

.carousel-button[disabled] {
  opacity: 0.42;
  cursor: not-allowed;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-top: 18px;
}

.carousel-dot {
  display: inline-flex;
  flex: 0 0 34px;
  align-items: center;
  justify-content: center;
  width: 34px;
  min-width: 34px;
  height: 32px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}

.carousel-dot::before {
  width: 9px;
  height: 9px;
  content: "";
  background: rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  transition: width 180ms ease, background 180ms ease;
}

.carousel-dot.is-active {
  flex-basis: 44px;
  width: 44px;
  min-width: 44px;
}

.carousel-dot.is-active::before {
  width: 28px;
  background: var(--orange-500);
}

.specialized-section,
.which-diploma-section,
.safe-buy-section {
  padding: clamp(64px, 8vw, 104px) clamp(18px, 4vw, 42px);
  background: var(--white);
}

.specialized-inner,
.which-diploma-inner,
.safe-buy-inner {
  width: min(100%, 980px);
  margin: 0 auto;
}

.specialized-heading {
  max-width: 900px;
  margin: 0 auto 10px;
  text-align: center;
}

.specialized-heading h2 {
  margin: 0 0 6px;
  color: var(--orange-500);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 850;
  line-height: 1.1;
}

.specialized-heading p {
  margin: 0;
  color: #111827;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
}

.specialized-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 440px);
  align-items: start;
  gap: clamp(34px, 6vw, 72px);
  margin-top: 8px;
}

.specialized-copy {
  display: grid;
  gap: 18px;
}

.specialized-copy article h3 {
  margin: 0 0 10px;
  color: #525252;
  font-size: clamp(22px, 2vw, 26px);
  font-weight: 500;
  line-height: 1.15;
}

.specialized-copy article p,
.which-diploma-copy p,
.which-diploma-copy li {
  margin: 0;
  color: #3f3f46;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.62;
}

.specialized-copy strong {
  color: var(--orange-500);
}

.specialized-media-placeholder,
.which-image-placeholder,
.safe-buy-image-placeholder {
  display: grid;
  place-items: center;
  min-height: 270px;
  color: rgba(15, 23, 42, 0.56);
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(249, 115, 22, 0.08)),
    #f8fafc;
  border: 2px dashed rgba(37, 99, 235, 0.22);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 850;
  text-align: center;
}

.specialized-media-placeholder {
  aspect-ratio: 16 / 9;
}

.section-whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: clamp(32px, 4vw, 48px);
  padding: 11px 28px;
  color: var(--white);
  background: #071463;
  border-radius: 999px;
  box-shadow: 0 14px 26px rgba(7, 20, 99, 0.2);
  font-size: 14px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease;
}

.section-whatsapp-button::after {
  content: "";
  width: 18px;
  height: 18px;
  margin-left: 8px;
  background: currentColor;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157.1zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7 .9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157.1zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7 .9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
}

.section-whatsapp-button:hover,
.section-whatsapp-button:focus-visible {
  background: var(--orange-500);
  transform: translateY(-2px);
}

.specialized-inner > .section-whatsapp-button {
  display: flex;
  width: max-content;
  margin-left: auto;
  margin-right: auto;
}

.which-diploma-section {
  padding-top: clamp(44px, 6vw, 76px);
}

.which-diploma-inner {
  display: grid;
  grid-template-columns: minmax(260px, 430px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(44px, 8vw, 104px);
}

.which-image-placeholder {
  min-height: 380px;
  border-radius: 18px;
}

.which-diploma-copy h2 {
  margin: 0;
  color: #050505;
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.05;
}

.which-subtitle {
  color: #06b6d4 !important;
  font-size: 17px !important;
  line-height: 1.25 !important;
}

.which-diploma-copy ol {
  margin: 20px 0 12px;
  padding-left: 24px;
}

.which-diploma-copy .section-whatsapp-button {
  margin-top: 24px;
}

.sold-counter-section {
  padding: 8px clamp(18px, 4vw, 42px) 52px;
  background: var(--white);
}

.sold-counter-inner {
  display: grid;
  place-items: center;
  width: min(100%, 980px);
  min-height: 128px;
  margin: 0 auto;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 0% 18%, rgba(0, 29, 198, 0.88) 0 11%, transparent 12%),
    radial-gradient(circle at 8% -12%, rgba(249, 115, 22, 0.98) 0 17%, transparent 18%),
    linear-gradient(105deg, #071463 0%, #071463 68%, rgba(7, 20, 99, 0.78) 69%, rgba(249, 115, 22, 0.34) 100%);
  border-radius: 2px;
  text-align: center;
}

.sold-counter-inner strong {
  font-size: clamp(48px, 6vw, 68px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
}

.sold-counter-inner span {
  margin-top: -12px;
  color: var(--orange-500);
  font-size: clamp(13px, 1.5vw, 16px);
  font-weight: 600;
  line-height: 1.35;
}

.safe-buy-section {
  padding-top: clamp(70px, 8vw, 112px);
  background:
    linear-gradient(180deg, #f8fafc 0%, var(--white) 42%),
    var(--white);
}

.safe-buy-inner {
  display: grid;
  grid-template-columns: minmax(240px, 310px) minmax(0, 1fr);
  align-items: start;
  gap: clamp(34px, 6vw, 72px);
}

.safe-buy-aside {
  position: sticky;
  top: 126px;
  display: grid;
  gap: 18px;
}

.safe-buy-image-placeholder {
  min-height: 260px;
}

.safe-buy-note {
  display: grid;
  gap: 8px;
  padding: 22px;
  color: var(--white);
  background: #071463;
  border-radius: 12px;
  box-shadow: 0 18px 42px rgba(7, 20, 99, 0.16);
}

.safe-buy-note strong {
  color: var(--orange-500);
  font-size: 16px;
}

.safe-buy-note span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.55;
}

.safe-buy-content {
  padding: clamp(28px, 4vw, 46px);
  background: var(--white);
  border: 1px solid rgba(209, 213, 219, 0.86);
  border-radius: 14px;
  box-shadow: 0 22px 52px rgba(15, 23, 42, 0.08);
}

.safe-buy-content h2 {
  margin: 0 0 18px;
  color: #071463;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 900;
  line-height: 1.06;
}

.safe-buy-content h3 {
  margin: 30px 0 10px;
  color: var(--orange-500);
  font-size: clamp(20px, 2vw, 25px);
  font-weight: 850;
  line-height: 1.2;
}

.safe-buy-content p {
  margin: 0;
  color: #374151;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
}

.safe-buy-content p + p {
  margin-top: 12px;
}

.articles-section {
  padding: clamp(58px, 7vw, 94px) clamp(18px, 4vw, 42px) clamp(70px, 8vw, 110px);
  background: var(--white);
}

.articles-inner {
  width: min(100%, 1060px);
  margin: 0 auto;
}

.articles-cta {
  display: flex;
  width: max-content;
  margin: 0 auto clamp(34px, 5vw, 52px);
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(34px, 4.5vw, 54px) clamp(28px, 3.6vw, 44px);
}

.article-card {
  min-width: 0;
}

.article-image-slot {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1.52 / 1;
  margin-bottom: 18px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.86);
  background: #f1f5f9;
  border-radius: 1px;
  isolation: isolate;
}

.article-image-slot::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 44%),
    radial-gradient(circle at 80% 22%, rgba(255, 255, 255, 0.34), transparent 18%);
  z-index: -1;
}

.article-image-slot::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px dashed rgba(255, 255, 255, 0.42);
  border-radius: 2px;
}

.article-image-slot span {
  padding: 8px 12px;
  background: rgba(7, 20, 99, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.article-image-orange {
  background:
    linear-gradient(135deg, rgba(255, 214, 87, 0.96), rgba(249, 115, 22, 0.78)),
    #fb923c;
}

.article-image-blueprint {
  background:
    linear-gradient(135deg, rgba(241, 245, 249, 0.9), rgba(125, 211, 252, 0.46)),
    linear-gradient(45deg, transparent 0 48%, rgba(7, 20, 99, 0.24) 49% 51%, transparent 52%),
    #dbeafe;
}

.article-image-journalism {
  background:
    linear-gradient(135deg, rgba(7, 20, 99, 0.82), rgba(249, 115, 22, 0.42)),
    #cbd5e1;
}

.article-image-career {
  background:
    linear-gradient(135deg, rgba(7, 20, 99, 0.72), rgba(14, 165, 233, 0.34)),
    #e2e8f0;
}

.article-image-student {
  background:
    linear-gradient(135deg, rgba(249, 115, 22, 0.58), rgba(7, 20, 99, 0.62)),
    #dbeafe;
}

.article-image-psychology {
  background:
    linear-gradient(135deg, rgba(203, 213, 225, 0.92), rgba(7, 20, 99, 0.28)),
    #f8fafc;
}

.article-card h3 {
  margin: 0;
  color: var(--orange-500);
  font-size: clamp(17px, 1.55vw, 20px);
  font-weight: 850;
  line-height: 1.12;
}

.article-card h3 .article-title-link {
  display: inline;
  margin: 0;
  color: inherit;
  font: inherit;
}

.article-meta {
  margin: 5px 0 16px !important;
  color: #a3a3a3 !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  line-height: 1.3 !important;
}

.article-card p {
  margin: 0;
  color: #737373;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.72;
}

.article-card a:not(.section-whatsapp-button) {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  margin-top: 10px;
  padding: 8px 0;
  color: var(--orange-500);
  font-size: 12px;
  font-weight: 700;
  transition: color 180ms ease, transform 180ms ease;
}

.article-card a:not(.section-whatsapp-button):hover,
.article-card a:not(.section-whatsapp-button):focus-visible {
  color: #071463;
  transform: translateX(3px);
}

.article-card h3 .article-title-link,
.article-card h3 .article-title-link:hover,
.article-card h3 .article-title-link:focus-visible {
  display: inline;
  margin-top: 0;
  color: inherit;
  font: inherit;
  transform: none;
}

.guide-article {
  background:
    radial-gradient(circle at 10% 8%, rgba(249, 115, 22, 0.12), transparent 25%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 34%, #ffffff 100%);
}

.guide-hero {
  width: min(100% - 36px, 850px);
  margin: 0 auto;
  padding: clamp(56px, 8vw, 104px) 0 clamp(38px, 6vw, 76px);
}

.guide-hero-copy {
  max-width: 760px;
}

.guide-hero h1 {
  margin: 18px 0 20px;
  color: #071463;
  font-size: clamp(38px, 6vw, 70px);
  font-weight: 950;
  line-height: 0.98;
}

.guide-hero p,
.guide-content p,
.guide-content li {
  margin: 0;
  color: #374151;
  font-size: clamp(15px, 1.35vw, 18px);
  font-weight: 500;
  line-height: 1.82;
}

.guide-warning-figure figcaption {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
  text-align: center;
}

.guide-content {
  width: min(100% - 36px, 850px);
  margin: 0 auto;
  padding-bottom: clamp(72px, 9vw, 118px);
}

.guide-content > p + p,
.guide-content section p + p {
  margin-top: 14px;
}

.guide-content section {
  margin-top: clamp(34px, 5vw, 56px);
}

.guide-content h2 {
  margin: 0 0 14px;
  color: var(--orange-500);
  font-size: clamp(25px, 3vw, 38px);
  font-weight: 900;
  line-height: 1.12;
}

.guide-callout {
  padding: clamp(24px, 4vw, 38px);
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(249, 115, 22, 0.08)),
    #ffffff;
  border: 1px solid rgba(37, 99, 235, 0.16);
  border-left: 5px solid var(--blue-600);
  border-radius: 12px;
  box-shadow: 0 20px 46px rgba(15, 23, 42, 0.08);
}

.guide-soft-figure {
  margin: clamp(30px, 5vw, 54px) 0;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(209, 213, 219, 0.9);
  border-radius: 14px;
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.08);
}

.guide-soft-visual {
  position: relative;
  display: grid;
  min-height: 230px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(7, 20, 99, 0.88), rgba(37, 99, 235, 0.78)),
    #071463;
}

.guide-soft-visual::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px dashed rgba(255, 255, 255, 0.26);
  border-radius: 10px;
}

.guide-soft-visual::after {
  content: "";
  position: absolute;
  right: -50px;
  bottom: -56px;
  width: 190px;
  height: 190px;
  background: var(--orange-500);
  border-radius: 999px;
  opacity: 0.88;
}

.guide-soft-visual span {
  position: relative;
  z-index: 1;
  align-self: center;
  justify-self: center;
  max-width: 420px;
  padding: 18px 22px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 900;
  line-height: 1.08;
  text-align: center;
}

.guide-soft-figure figcaption {
  padding: 14px 18px 16px;
  color: #64748b;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
  text-align: center;
}

.guide-warning-figure {
  margin: clamp(34px, 5vw, 58px) 0;
}

.guide-warning-figure {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  padding: clamp(22px, 4vw, 34px);
  background: #fff7ed;
  border: 1px solid rgba(249, 115, 22, 0.24);
  border-radius: 14px;
}

.guide-warning-icon {
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  color: var(--white);
  background: var(--orange-500);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(249, 115, 22, 0.28);
  font-size: 54px;
  font-weight: 900;
}

.guide-warning-figure figcaption {
  color: #7c2d12;
  text-align: left;
}

.partners-section {
  overflow: hidden;
  padding: clamp(34px, 5vw, 52px) 0 clamp(42px, 6vw, 68px);
  background:
    radial-gradient(circle at 0% 18%, rgba(249, 115, 22, 0.2) 0 9%, transparent 10%),
    linear-gradient(135deg, #071463 0%, #081a78 58%, #0b2aa4 100%);
}

.partners-inner {
  width: 100%;
  margin: 0 auto;
}

.partners-inner h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  width: min(100% - 28px, 1220px);
  margin: 0 auto clamp(28px, 4vw, 42px);
  padding: 0;
  color: var(--white);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
  text-align: left;
}

.partners-inner h2::before {
  content: "›";
  color: var(--white);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.partners-marquee {
  position: relative;
  display: flex;
  width: 100%;
  padding: 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.partners-marquee + .partners-marquee {
  margin-top: 24px;
}

.partners-track {
  display: flex;
  align-items: center;
  width: max-content;
  min-width: 200%;
  gap: clamp(26px, 3vw, 38px);
  padding: 0 clamp(14px, 2vw, 22px);
  will-change: transform;
}

.partners-track-left {
  animation: partners-scroll-left 34s linear infinite;
}

.partners-track-right {
  animation: partners-scroll-right 38s linear infinite;
}

.partner-logo-slot {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: clamp(180px, 20vw, 260px);
  height: clamp(80px, 8vw, 110px);
  overflow: hidden;
  color: rgba(7, 20, 99, 0.46);
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 8px;
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.32);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
}



.partner-logo-slot span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: min(66%, 180px);
  min-height: 44px;
  color: rgba(7, 20, 99, 0.5);
  background: rgba(255, 255, 255, 0.66);
  border-radius: 999px;
  font-size: 12px;
}

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

  to {
    transform: translateX(-50%);
  }
}

@keyframes partners-scroll-right {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .partners-track-left,
  .partners-track-right {
    animation: none;
    transform: translateX(0);
  }
}

.diploma-types-section {
  padding: clamp(54px, 7vw, 86px) clamp(18px, 4vw, 42px) clamp(72px, 8vw, 112px);
  background: #fbfbfa;
}

.diploma-types-inner {
  width: min(100%, 980px);
  margin: 0 auto;
}

.diploma-types-inner h2 {
  margin: 0 0 clamp(44px, 5vw, 62px);
  color: #071463;
  font-size: clamp(20px, 2.1vw, 25px);
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
}

.diploma-types-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(30px, 4vw, 42px);
  align-items: stretch;
}

.diploma-type-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  background: var(--white);
  border: 1.5px solid #111827;
  border-radius: 22px;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.07);
}

.diploma-type-header {
  min-height: 188px;
  padding: 34px 34px 26px;
  background: #e4ded7;
}

.diploma-type-header p,
.diploma-type-header h3,
.diploma-type-header span {
  display: block;
  margin: 0;
}

.diploma-type-header p {
  max-width: 230px;
  color: #071463;
  font-size: clamp(24px, 2.4vw, 29px);
  font-weight: 500;
  line-height: 1.02;
}

.diploma-type-header h3 {
  margin-top: 28px;
  color: #071463;
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 850;
  line-height: 1.12;
}

.diploma-type-header span {
  margin-top: 12px;
  color: #66615d;
  font-size: 14px;
  font-weight: 500;
}

.diploma-type-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px 30px 32px;
}

.diploma-type-body ul {
  display: grid;
  gap: 15px;
  margin: 0 0 30px;
  padding-left: 18px;
}

.diploma-type-body li {
  padding-left: 8px;
  color: #242424;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.48;
}

.diploma-type-body li::marker {
  font-size: 0.7em;
}

.diploma-type-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 220px);
  min-height: 42px;
  margin: auto auto 0;
  padding: 10px 22px;
  color: var(--white);
  background: #071463;
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(7, 20, 99, 0.18);
  font-size: 13px;
  font-weight: 800;
  transition: background 180ms ease, transform 180ms ease;
}

.diploma-type-button::after {
  content: "";
  width: 18px;
  height: 18px;
  margin-left: 8px;
  background: currentColor;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157.1zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7 .9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157.1zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7 .9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.diploma-type-button:hover,
.diploma-type-button:focus-visible {
  background: var(--orange-500);
  transform: translateY(-2px);
}

.technical-diplomas-section {
  padding: clamp(58px, 7vw, 92px) clamp(18px, 4vw, 42px) clamp(78px, 8vw, 118px);
  background: var(--white);
}

.technical-list-section {
  padding-top: clamp(34px, 5vw, 62px);
}

.technical-list-section-light {
  background: #fbfbfa;
}

.technical-diplomas-inner {
  width: min(100%, 980px);
  margin: 0 auto;
}

.technical-counter {
  display: grid;
  place-items: center;
  min-height: 128px;
  margin: 0 auto clamp(30px, 4vw, 40px);
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 0% 18%, rgba(0, 29, 198, 0.88) 0 11%, transparent 12%),
    radial-gradient(circle at 8% -12%, rgba(249, 115, 22, 0.98) 0 17%, transparent 18%),
    linear-gradient(105deg, #071463 0%, #071463 68%, rgba(7, 20, 99, 0.78) 69%, rgba(249, 115, 22, 0.34) 100%);
  text-align: center;
}

.technical-counter strong {
  font-size: clamp(48px, 6vw, 68px);
  font-weight: 500;
  line-height: 1;
}

.technical-counter span {
  margin-top: -12px;
  color: var(--orange-500);
  font-size: clamp(13px, 1.5vw, 16px);
  font-weight: 600;
  line-height: 1.35;
}

.technical-diplomas-inner > h2 {
  margin: 0 0 clamp(44px, 5vw, 62px);
  color: #071463;
  font-size: clamp(20px, 2.1vw, 25px);
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
}

.technical-diplomas-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(30px, 4vw, 42px);
  align-items: stretch;
}

.technical-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  background: var(--white);
  border: 1.5px solid #111827;
  border-radius: 22px;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.07);
}

.technical-card-header {
  min-height: 182px;
  padding: 36px 34px 26px;
  background: #e4ded7;
}

.technical-card-header h3 {
  margin: 0;
  color: #071463;
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 850;
  line-height: 1.08;
}

.technical-card-header p {
  margin: 12px 0 0;
  color: #595959;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
}

.technical-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 30px 30px 32px;
}

.technical-card-body ul {
  display: grid;
  gap: 16px;
  margin: 0 0 30px;
  padding-left: 18px;
}

.technical-card-body li {
  padding-left: 8px;
  color: #242424;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.48;
}

.technical-card-body li::marker {
  font-size: 0.7em;
}

.technical-card-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 220px);
  min-height: 42px;
  margin: auto auto 0;
  padding: 10px 22px;
  color: var(--white);
  background: #071463;
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(7, 20, 99, 0.18);
  font-size: 13px;
  font-weight: 800;
  transition: background 180ms ease, transform 180ms ease;
}

.technical-card-button::after {
  content: "";
  width: 18px;
  height: 18px;
  margin-left: 8px;
  background: currentColor;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157.1zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7 .9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157.1zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7 .9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.technical-card-button:hover,
.technical-card-button:focus-visible {
  background: var(--orange-500);
  transform: translateY(-2px);
}

.client-proof-section {
  overflow: hidden;
  background: #f5f5f5;
}

.client-proof-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 54px);
  width: min(100% - 40px, 1120px);
  margin: 0 auto;
  padding: clamp(42px, 5vw, 68px) 0 clamp(44px, 6vw, 72px);
}

.client-stat {
  display: grid;
  justify-items: center;
  text-align: center;
}

.client-stat-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 16px;
  color: var(--orange-500);
  background: #fff0d9;
  border-radius: 999px;
}

.client-stat-icon::before {
  content: "";
  width: 25px;
  height: 25px;
  background: currentColor;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.client-stat-icon-users::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M22 21v-2a4 4 0 0 0-3-3.87'/%3E%3Cpath d='M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M22 21v-2a4 4 0 0 0-3-3.87'/%3E%3Cpath d='M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E");
}

.client-stat-icon-cap::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m22 10-10-5-10 5 10 5 10-5Z'/%3E%3Cpath d='M6 12v5c3 3 9 3 12 0v-5'/%3E%3Cpath d='M22 10v6'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m22 10-10-5-10 5 10 5 10-5Z'/%3E%3Cpath d='M6 12v5c3 3 9 3 12 0v-5'/%3E%3Cpath d='M22 10v6'/%3E%3C/svg%3E");
}

.client-stat strong {
  color: #111827;
  font-size: clamp(38px, 4.8vw, 50px);
  font-weight: 900;
  line-height: 0.95;
}

.client-stat h2 {
  margin: 8px 0 10px;
  color: #111827;
  font-size: clamp(18px, 1.8vw, 23px);
  font-weight: 900;
  line-height: 1.12;
}

.client-stat p {
  max-width: 280px;
  margin: 0;
  color: #5b5b5b;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.58;
}

.client-proof-testimonials {
  position: relative;
  padding: clamp(62px, 5vw, 82px) 0 clamp(70px, 6vw, 96px);
  background:
    radial-gradient(circle at top center, rgba(37, 99, 235, 0.05), transparent 70%),
    linear-gradient(180deg, #f5f5f5 0%, #f1f5f9 100%);
  border-top: 1px solid rgba(15, 23, 42, 0.03);
  box-shadow: inset 0 20px 40px -20px rgba(15, 23, 42, 0.02);
}

.client-proof-heading {
  width: min(100% - 40px, 940px);
  margin: 0 auto clamp(26px, 4vw, 38px);
  text-align: center;
}

.client-proof-heading h2 {
  margin: 0 0 8px;
  color: #111827;
  font-size: clamp(30px, 3.7vw, 42px);
  font-weight: 900;
  line-height: 1.08;
}

.client-proof-heading p {
  margin: 0;
  color: #7a7a7a;
  font-size: 14px;
  font-weight: 600;
}

.testimonial-marquee {
  display: flex;
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.testimonial-marquee + .testimonial-marquee {
  margin-top: 16px;
}

.testimonial-track {
  display: flex;
  width: max-content;
  min-width: 200%;
  gap: clamp(16px, 2vw, 24px);
  padding: 0 clamp(14px, 2vw, 22px);
  will-change: transform;
}

.testimonial-track-left {
  animation: testimonial-scroll-left 46s linear infinite;
}

.testimonial-track-right {
  animation: testimonial-scroll-right 50s linear infinite;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  width: clamp(270px, 26vw, 330px);
  min-height: 286px;
  padding: 26px 24px 22px;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.09);
}

.testimonial-card::before {
  content: none;
}

.testimonial-card p {
  margin: 0 0 16px;
  color: #33383f;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.72;
}

.testimonial-stars {
  margin-top: auto;
  color: var(--orange-500);
  font-size: 18px;
  letter-spacing: 1px;
  line-height: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(15, 23, 42, 0.1);
}

.testimonial-avatar {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  color: var(--white);
  background: linear-gradient(135deg, #071463, var(--orange-500));
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.testimonial-author strong,
.testimonial-author small {
  display: block;
}

.testimonial-author strong {
  color: #111827;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
}

.testimonial-author small {
  margin-top: 2px;
  color: #8a8a8a;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.25;
}

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

  to {
    transform: translateX(-50%);
  }
}

@keyframes testimonial-scroll-right {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .testimonial-track-left,
  .testimonial-track-right {
    animation: none;
    transform: translateX(0);
  }
}

.site-footer {
  color: var(--white);
  background: #0f1b2e;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.15fr 1fr;
  gap: clamp(34px, 6vw, 84px);
  width: min(100% - 48px, 1180px);
  margin: 0 auto;
  padding: clamp(58px, 7vw, 86px) 0 46px;
}

.footer-brand p {
  margin: 26px 0 0;
  max-width: 300px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.75;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 24px;
  text-decoration: none;
}

.footer-logo-img {
  display: block;
  height: 84px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: opacity 0.25s ease;
}

.footer-logo:hover .footer-logo-img {
  opacity: 0.8;
}

.footer-logo-placeholder {
  display: none;
}

.footer-logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange-500), var(--blue-700));
  border-radius: 18px;
  font-size: 30px;
  font-weight: 900;
  box-shadow: 0 18px 38px rgba(37, 99, 235, 0.18);
}

.footer-column h2 {
  margin: 0 0 24px;
  color: var(--white);
  font-size: 18px;
  font-weight: 850;
}

.footer-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-list li {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
}

.footer-icon {
  display: inline-block;
  width: 17px;
  height: 17px;
  margin-top: 2px;
  background: var(--orange-500);
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.footer-icon-phone {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.8 19.8 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.8 19.8 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.12.9.32 1.77.6 2.6a2 2 0 0 1-.45 2.11L8 9.7a16 16 0 0 0 6.3 6.3l1.27-1.27a2 2 0 0 1 2.11-.45c.83.28 1.7.48 2.6.6A2 2 0 0 1 22 16.92Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.8 19.8 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.8 19.8 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.12.9.32 1.77.6 2.6a2 2 0 0 1-.45 2.11L8 9.7a16 16 0 0 0 6.3 6.3l1.27-1.27a2 2 0 0 1 2.11-.45c.83.28 1.7.48 2.6.6A2 2 0 0 1 22 16.92Z'/%3E%3C/svg%3E");
}

.footer-icon-mail {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect width='20' height='16' x='2' y='4' rx='2'/%3E%3Cpath d='m22 7-8.97 5.7a2 2 0 0 1-2.06 0L2 7'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect width='20' height='16' x='2' y='4' rx='2'/%3E%3Cpath d='m22 7-8.97 5.7a2 2 0 0 1-2.06 0L2 7'/%3E%3C/svg%3E");
}

.footer-icon-map {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 10c0 4.99-5.54 10.2-7.4 11.8a1 1 0 0 1-1.2 0C9.54 20.2 4 14.99 4 10a8 8 0 0 1 16 0Z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 10c0 4.99-5.54 10.2-7.4 11.8a1 1 0 0 1-1.2 0C9.54 20.2 4 14.99 4 10a8 8 0 0 1 16 0Z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
}

.footer-icon-clock {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v5l3 2'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v5l3 2'/%3E%3C/svg%3E");
}

.footer-seal-placeholder,
.footer-security-placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 104px;
  margin-top: 36px;
  padding: 16px 18px;
  color: rgba(255, 255, 255, 0.78);
  border: 2px dashed rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.footer-seal-placeholder {
  width: 150px;
}

.footer-security-placeholder {
  width: 176px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  transition: background 180ms ease, transform 180ms ease;
}

.footer-socials a::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background: var(--white);
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.footer-social-facebook::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M14 8.5V6.75c0-.83.67-1.5 1.5-1.5H17V2.1c-.78-.08-1.7-.1-2.2-.1-2.75 0-4.55 1.67-4.55 4.7v1.8H7.5V12h2.75v10H14V12h2.75l.45-3.5H14Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M14 8.5V6.75c0-.83.67-1.5 1.5-1.5H17V2.1c-.78-.08-1.7-.1-2.2-.1-2.75 0-4.55 1.67-4.55 4.7v1.8H7.5V12h2.75v10H14V12h2.75l.45-3.5H14Z'/%3E%3C/svg%3E");
}

.footer-social-instagram::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect width='18' height='18' x='3' y='3' rx='5'/%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3Ccircle cx='17.5' cy='6.5' r='1' fill='black' stroke='none'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect width='18' height='18' x='3' y='3' rx='5'/%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3Ccircle cx='17.5' cy='6.5' r='1' fill='black' stroke='none'/%3E%3C/svg%3E");
}

.footer-social-twitter::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M17.53 3H20.8l-7.14 8.16L22 22h-6.53l-5.11-6.68L4.5 22H1.23l7.64-8.73L1 3h6.7l4.62 6.1L17.53 3Zm-1.15 17.1h1.81L6.72 4.8H4.78l11.6 15.3Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M17.53 3H20.8l-7.14 8.16L22 22h-6.53l-5.11-6.68L4.5 22H1.23l7.64-8.73L1 3h6.7l4.62 6.1L17.53 3Zm-1.15 17.1h1.81L6.72 4.8H4.78l11.6 15.3Z'/%3E%3C/svg%3E");
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  background: var(--orange-500);
  transform: translateY(-2px);
}

.footer-bottom {
  position: relative;
  display: flex;
  justify-content: center;
  width: min(100% - 48px, 1180px);
  margin: 0 auto;
  padding: 20px 0 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.footer-legal {
  display: grid;
  justify-items: center;
  gap: 8px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 180ms ease;
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: var(--orange-500);
}



.back-to-top {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--white);
  background: #4b5563;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.22);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background: #334155;
  transform: translateY(-2px);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.course-card {
  min-height: 208px;
  padding: 24px 24px 28px;
  text-align: center;
  background: var(--white);
  border: 1px solid rgba(209, 213, 219, 0.9);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08), 0 1px 0 rgba(15, 23, 42, 0.04);
}

.course-photo-slot {
  width: 104px;
  height: 86px;
  margin: 0 auto 16px;
  overflow: hidden;
  border-radius: 8px;
  background: #f8fafc;
}

.course-photo-slot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.course-card h3 {
  margin: 0 0 12px;
  color: #071b78;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
}

.course-card p {
  margin: 0;
  color: #111827;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
}

.faq-section {
  scroll-margin-top: 104px;
  padding: clamp(58px, 8vw, 104px) clamp(18px, 4vw, 40px);
  background:
    linear-gradient(180deg, #f8fafc 0%, var(--white) 42%, #f8fafc 100%);
}

.faq-inner {
  width: min(100%, 980px);
  margin: 0 auto;
}

.faq-header {
  max-width: 760px;
  margin: 0 auto clamp(28px, 4vw, 44px);
  text-align: center;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 12px;
  color: var(--blue-700);
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.14);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.faq-header h1,
.faq-header h2 {
  margin: 14px 0 10px;
  color: #071463;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 700;
  line-height: 1.05;
}

.faq-header p {
  margin: 0;
  color: var(--gray-600);
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 500;
  line-height: 1.65;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(209, 213, 219, 0.86);
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
}

.faq-item[open] {
  border-color: rgba(37, 99, 235, 0.28);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.1);
}

.faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 68px;
  padding: 20px 64px 20px 24px;
  color: #071463;
  cursor: pointer;
  font-size: clamp(16px, 1.5vw, 19px);
  font-weight: 800;
  line-height: 1.35;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 24px;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--orange-500);
  border-bottom: 2px solid var(--orange-500);
  transform: translateY(-65%) rotate(45deg);
  transition: transform 180ms ease;
}

.faq-item[open] summary {
  color: var(--blue-700);
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.06), rgba(249, 115, 22, 0.05));
}

.faq-item[open] summary::after {
  transform: translateY(-35%) rotate(225deg);
}

.faq-answer {
  padding: 0 24px 22px;
  color: var(--gray-700);
  border-top: 1px solid rgba(209, 213, 219, 0.62);
}

.faq-answer p,
.faq-answer li {
  color: var(--gray-700);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.75;
}

.faq-answer p {
  margin: 16px 0 0;
}

.faq-answer ul {
  margin: 16px 0 0;
  padding-left: 22px;
}

.faq-answer li + li {
  margin-top: 6px;
}

.catalog-page main {
  background: var(--white);
}

.catalog-section {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 6vw, 82px) clamp(18px, 4vw, 40px) 52px;
  background:
    radial-gradient(circle at 12% 18%, rgba(37, 99, 235, 0.035), transparent 22%),
    radial-gradient(circle at 86% 28%, rgba(249, 115, 22, 0.035), transparent 24%),
    #fff;
}

.catalog-section::before {
  content: "BUSINESS";
  position: absolute;
  inset: 0;
  color: rgba(7, 20, 99, 0.025);
  font-size: clamp(84px, 13vw, 180px);
  font-weight: 900;
  line-height: 1.4;
  text-align: center;
  pointer-events: none;
}

.catalog-section-light {
  padding-top: clamp(32px, 4vw, 54px);
}

.catalog-inner {
  position: relative;
  z-index: 1;
  width: min(100%, 860px);
  margin: 0 auto;
}

.catalog-inner h1,
.catalog-inner h2 {
  margin: 0 0 clamp(38px, 5vw, 62px);
  color: var(--orange-500);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 850;
  line-height: 1.1;
  text-align: center;
}

.catalog-inner h2 {
  color: #111827;
}

.catalog-inner h2 span {
  color: var(--orange-500);
}

.catalog-columns {
  display: grid;
  gap: clamp(28px, 5vw, 62px);
}

.catalog-columns-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.catalog-columns-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(100%, 760px);
  margin: 0 auto;
}

.catalog-columns ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.catalog-columns li {
  position: relative;
  min-height: 18px;
  padding-left: 26px;
  color: #111827;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.catalog-columns li::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 17px;
  height: 14px;
  background: var(--orange-500);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 3 1 8l11 5 9-4.09V17h2V8L12 3Zm-6 9v4.2c0 1.8 3.6 3.3 6 3.3s6-1.5 6-3.3V12l-6 2.73L6 12Z'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 3 1 8l11 5 9-4.09V17h2V8L12 3Zm-6 9v4.2c0 1.8 3.6 3.3 6 3.3s6-1.5 6-3.3V12l-6 2.73L6 12Z'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
}

.catalog-buy-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-height: 42px;
  margin: clamp(36px, 5vw, 56px) auto 0;
  padding: 10px 28px;
  color: #111827;
  background: var(--white);
  border: 3px solid #111827;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.catalog-buy-button::after {
  content: "";
  width: 18px;
  height: 18px;
  margin-left: 8px;
  background: currentColor;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157.1zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7 .9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157.1zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7 .9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.catalog-buy-button:hover,
.catalog-buy-button:focus-visible {
  color: var(--white);
  background: #111827;
  border-color: #111827;
}

.values-section {
  padding: clamp(50px, 6vw, 74px) clamp(18px, 4vw, 40px);
  background: #eeeeee;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(30px, 6vw, 84px);
  width: min(100%, 900px);
  margin: 0 auto;
}

.value-card {
  text-align: center;
}

.value-visual {
  display: block;
  width: clamp(154px, 12vw, 188px);
  height: clamp(132px, 10.5vw, 160px);
  margin: 0 auto 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 20px;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.08);
}

.value-icon {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.value-icon-mission {
  transform: scale(1.45);
}

.value-icon-vision,
.value-icon-values {
  transform: scale(1.9);
}

.value-card h3 {
  margin: 0 0 22px;
  color: #111827;
  font-size: 18px;
  font-weight: 850;
}

.value-card p {
  margin: 0;
  color: #111827;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.65;
}

.privacy-hero {
  padding: clamp(62px, 8vw, 104px) clamp(18px, 4vw, 42px) clamp(42px, 5vw, 68px);
  background:
    linear-gradient(135deg, rgba(7, 20, 99, 0.96), rgba(7, 20, 99, 0.86)),
    #071463;
  color: var(--white);
}

.privacy-hero-inner {
  width: min(100%, 900px);
  margin: 0 auto;
  text-align: center;
}

.privacy-hero .section-kicker {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
}

.privacy-hero h1 {
  margin: 18px 0 16px;
  color: var(--white);
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 900;
  line-height: 1.02;
}

.privacy-hero p {
  margin: 0 auto;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(15px, 1.7vw, 18px);
  font-weight: 500;
  line-height: 1.68;
}

.privacy-hero .privacy-updated {
  margin-top: 18px;
  color: var(--orange-500);
  font-size: 14px;
  font-weight: 800;
}

.privacy-content-section {
  padding: clamp(46px, 6vw, 78px) clamp(18px, 4vw, 42px) clamp(70px, 8vw, 110px);
  background:
    linear-gradient(180deg, #f8fafc 0%, var(--white) 42%),
    var(--white);
}

.privacy-content {
  width: min(100%, 880px);
  margin: 0 auto;
  padding: clamp(28px, 4vw, 48px);
  background: var(--white);
  border: 1px solid rgba(209, 213, 219, 0.86);
  border-radius: 14px;
  box-shadow: 0 22px 52px rgba(15, 23, 42, 0.08);
}

.privacy-content h2 {
  margin: 34px 0 10px;
  color: #071463;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 900;
  line-height: 1.18;
}

.privacy-content h2:first-child {
  margin-top: 0;
}

.privacy-content p {
  margin: 0;
  color: #374151;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.82;
}

.privacy-content p + p {
  margin-top: 12px;
}

.privacy-content a {
  color: var(--orange-500);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.service-page {
  background: var(--white);
}

.service-hero {
  padding: 58px 18px 56px;
  text-align: center;
  background: var(--white);
}

.service-hero h1 {
  margin: 0;
  color: #24468d;
  font-size: clamp(48px, 6vw, 68px);
  font-weight: 400;
  line-height: 1.05;
}

.service-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
  color: #7b8cb6;
  font-size: 17px;
  font-weight: 500;
}

.service-breadcrumb a {
  color: inherit;
}

.service-directory {
  padding: 0 18px 88px;
}

.service-directory-inner {
  width: min(100%, 1060px);
  margin: 0 auto;
}

.service-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px 24px;
}

.service-city-card {
  min-width: 0;
}

.service-card-link {
  display: block;
  color: inherit;
}

.service-card-media {
  aspect-ratio: 1.28 / 1;
  margin-bottom: 20px;
  overflow: hidden;
  background: #f1f5f9;
}

.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.service-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 22px 10px;
  color: #a4a4a4;
  font-size: 15px;
  line-height: 1.45;
}

.service-city-card h3 {
  margin: 0 22px 18px;
  color: #21458e;
  font-size: clamp(24px, 2.4vw, 31px);
  font-weight: 850;
  line-height: 1.2;
}

.service-city-card p {
  margin: 0 22px;
  color: #21458e;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.55;
}

.service-card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 26px 22px 0;
  color: #8aa0d6;
  font-size: 16px;
}

.service-card-actions a,
.service-card-actions span:last-child {
  min-width: 118px;
  padding-left: 18px;
  color: #24468d;
  border-left: 1px solid rgba(7, 20, 99, 0.12);
}

.service-card-link:hover h3,
.service-card-link:focus-visible h3 {
  color: var(--orange-500);
}

.service-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 54px;
}

.service-page-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: #24468d;
  background: var(--white);
  border: 1px solid rgba(7, 20, 99, 0.16);
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(7, 20, 99, 0.08);
  font-size: 15px;
  font-weight: 850;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.service-page-button:hover,
.service-page-button:focus-visible {
  color: var(--white);
  background: #24468d;
  border-color: #24468d;
  transform: translateY(-2px);
}

.service-page-button.is-active {
  color: var(--white);
  background: linear-gradient(135deg, #071463 0%, #24468d 100%);
  border-color: transparent;
  box-shadow: 0 14px 28px rgba(7, 20, 99, 0.2);
}

.service-detail-hero {
  padding: 52px 18px 34px;
  text-align: center;
  background: var(--white);
}

.service-detail-hero-inner {
  width: min(100%, 1060px);
  margin: 0 auto;
}

.service-detail-hero h1 {
  margin: 0;
  color: #24468d;
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 700;
  line-height: 1.12;
}

.service-detail-meta {
  margin: 18px 0 0;
  color: #a4a4a4;
  font-size: 15px;
}

.service-detail-meta strong {
  color: #24468d;
}

.service-detail-article {
  width: min(100% - 36px, 1080px);
  margin: 0 auto;
  padding: 28px 0 90px;
  color: #21458e;
}

.service-detail-image {
  margin: 0 0 44px;
  overflow: hidden;
  background: #f1f5f9;
}

.service-detail-image:not(:first-child) {
  margin-top: 28px;
}

.service-detail-image img {
  display: block;
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  object-position: center;
}

.service-detail-image-cta {
  position: relative;
}

.service-detail-image-cta::after {
  content: "×";
  position: absolute;
  top: 10px;
  right: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 24px;
  line-height: 1;
}

.service-detail-article p,
.service-detail-article li {
  color: #21458e;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.65;
}

.service-detail-article p {
  margin: 0 0 18px;
}

.service-detail-article h2 {
  margin: 34px 0 18px;
  color: #21458e;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 900;
  line-height: 1.05;
}

.service-detail-article ul {
  margin: 0 0 22px;
  padding-left: 28px;
}

.service-detail-article li + li {
  margin-top: 10px;
}

.service-detail-article strong {
  font-weight: 900;
}

.service-detail-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 28px;
  color: var(--white);
  background: #071463;
  border-radius: 999px;
  box-shadow: 0 14px 26px rgba(7, 20, 99, 0.2);
  font-weight: 850;
}

.service-detail-course-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.service-detail-course-links a {
  min-height: 46px;
  padding: 12px 14px;
  color: #071463;
  background: #f8fafc;
  border: 1px solid rgba(7, 20, 99, 0.12);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

@media (max-width: 1320px) {
  .header-inner {
    gap: 16px;
  }
}

@media (max-width: 1120px) and (min-width: 901px) {
  .header-inner {
    padding: 0 16px;
    gap: 10px;
  }

  .logo img,
  .header-logo img,
  .navbar-logo img {
    width: clamp(175px, 22vw, 220px);
  }

  .desktop-nav {
    gap: 2px;
  }

  .desktop-nav a {
    min-height: 34px;
    padding: 7px 7px;
    font-size: 13px;
  }

  .quote-button {
    min-height: 38px;
    padding: 9px 13px;
    font-size: 13px;
  }
}

@media (max-width: 900px) {
  .announcement-bar {
    padding: 4px 0;
  }

  .marquee-track span {
    padding: 0 26px;
    font-size: 12px;
    line-height: 1.3;
  }

  .site-header {
    min-height: 78px;
  }

  .header-inner {
    height: 78px;
    padding: 0 14px;
    gap: 10px;
  }

  .desktop-nav {
    display: none;
  }

  .logo img,
  .header-logo img,
  .navbar-logo img {
    width: clamp(215px, 58vw, 238px);
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .menu-toggle .icon {
    width: 27px;
    height: 27px;
  }

  .quote-button {
    display: none;
  }

  .quote-button-mobile {
    display: inline-flex;
  }

  .hero-banner-image {
    width: 100%;
    height: auto;
    object-position: center top;
  }

  .about-section {
    padding: 34px 0 48px;
    background: #ffffff;
  }

  .about-section::before,
  .about-section::after {
    display: none;
  }

  .about-panel {
    grid-template-columns: 1fr;
    gap: 26px;
    width: min(100% - 32px, 430px);
    min-height: auto;
    padding-left: 0;
  }

  .about-copy {
    max-width: none;
  }

  .about-chevron {
    margin-left: 0;
    font-size: 28px;
  }

  .about-copy h1,
  .about-copy h2 {
    margin-bottom: 16px;
    font-size: clamp(34px, 10vw, 44px);
  }

  .about-copy p {
    font-size: 14px;
    line-height: 1.64;
  }

  .about-copy p + p {
    margin-top: 14px;
  }

  .about-media {
    min-height: auto;
  }

  .about-media::before {
    right: 14px;
    top: 18px;
    width: 84px;
    height: 84px;
    background-size: 14px 14px;
  }

  .about-media::after {
    display: none;
  }

  .about-image-wrapper,
  .about-image {
    width: 100%;
    min-height: 280px;
  }

  .about-story-section {
    padding: 42px 16px 68px;
  }

  .about-story-inner {
    width: min(100%, 430px);
  }

  .about-story-card {
    padding: 24px 20px;
    border-radius: 12px;
  }

  .about-story-card h2 {
    font-size: clamp(23px, 7vw, 30px);
  }

  .about-story-card p,
  .about-story-card li {
    font-size: 14px;
    line-height: 1.72;
  }

  .whatsapp-chat {
    --whatsapp-label-padding: 7px 14px 7px 12px;
    --whatsapp-label-max-width: 134px;
    right: 12px;
    bottom: 14px;
  }

  .whatsapp-chat-label {
    min-height: 32px;
    padding: 7px 0;
    margin-right: -9px;
    font-size: 14px;
  }

  body.sales-notification-active .whatsapp-chat-label,
  body.sales-notification-active .whatsapp-chat:hover .whatsapp-chat-label,
  body.sales-notification-active .whatsapp-chat:focus-visible .whatsapp-chat-label {
    max-width: 0;
    padding: 7px 0;
    border-color: transparent;
    box-shadow: none;
    opacity: 0;
    transform: translateX(12px);
    animation: none;
  }

  body.sales-notification-active .whatsapp-chat-icon,
  body.sales-notification-active .whatsapp-chat-icon::before {
    animation: none;
  }

  .whatsapp-chat-icon {
    width: 52px;
    height: 52px;
    border-width: 4px;
  }

  .whatsapp-chat-icon svg {
    width: 29px;
    height: 29px;
  }

  .courses-intro {
    padding: 34px 18px 94px;
  }

  .courses-copy h2 {
    text-align: left;
  }

  .courses-copy p {
    font-size: 14px;
    line-height: 1.55;
  }

  .courses-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    width: min(100% - 28px, 430px);
    margin-top: -60px;
  }

  .examples-hero {
    min-height: auto;
    padding: 46px 18px 74px;
  }

  .examples-hero-inner {
    grid-template-columns: 1fr;
    gap: 34px;
    width: min(100%, 430px);
  }

  .examples-hero-copy {
    max-width: none;
    text-align: center;
  }

  .examples-hero h1 {
    font-size: clamp(34px, 11vw, 46px);
    line-height: 1.02;
  }

  .examples-hero p {
    font-size: 15px;
    line-height: 1.62;
  }

  .examples-cta {
    width: min(100%, 220px);
    margin-top: 30px;
  }

  .examples-hero-media {
    gap: 24px;
  }

  .vsl-player {
    width: min(100%, 360px);
    margin: 0 auto;
  }

  .vsl-preview,
  .vsl-player iframe,
  .vsl-local-video {
    border-radius: 12px;
  }

  .vsl-overlay {
    width: min(62%, 250px);
    min-height: 42%;
    gap: 10px;
    padding: 16px 14px;
    border-radius: 18px;
  }

  .vsl-overlay-text {
    font-size: clamp(13px, 4vw, 16px);
  }

  .vsl-speaker,
  .vsl-speaker svg {
    width: 30px;
    height: 30px;
  }

  .examples-mec-card {
    width: min(100%, 280px);
    margin: 0 auto;
  }

  .social-proof-section {
    padding: 52px 14px 78px;
  }

  .social-proof-header {
    margin-bottom: 26px;
  }

  .social-proof-header h2 {
    font-size: clamp(28px, 9vw, 38px);
  }

  .social-proof-track {
    gap: 16px;
    padding-inline: 6px;
  }

  .proof-card {
    flex-basis: min(82vw, 330px);
    min-height: 430px;
    border-radius: 12px;
  }

  .proof-card img {
    min-height: 430px;
  }

  .carousel-button {
    display: none;
  }

  .carousel-dots {
    margin-top: 12px;
  }

  .specialized-section,
  .which-diploma-section,
  .safe-buy-section {
    padding: 46px 16px 58px;
  }

  .specialized-heading,
  .specialized-copy {
    text-align: center;
  }

  .specialized-grid,
  .which-diploma-inner,
  .safe-buy-inner {
    grid-template-columns: 1fr;
    width: min(100%, 430px);
  }

  .specialized-grid {
    gap: 28px;
  }

  .specialized-media-placeholder {
    min-height: 210px;
  }

  .section-whatsapp-button {
    width: min(100%, 280px);
  }

  .which-image-placeholder {
    min-height: 280px;
    order: 2;
  }

  .which-diploma-copy {
    order: 1;
    text-align: center;
  }

  .which-diploma-copy ol {
    display: inline-block;
    text-align: left;
  }

  .sold-counter-section {
    padding: 8px 16px 42px;
  }

  .sold-counter-inner {
    min-height: 108px;
  }

  .safe-buy-aside {
    position: static;
  }

  .safe-buy-image-placeholder {
    min-height: 220px;
  }

  .safe-buy-content {
    padding: 24px 20px;
  }

  .safe-buy-content p {
    font-size: 14px;
    line-height: 1.72;
  }

  .articles-section {
    padding: 46px 16px 64px;
  }

  .articles-inner {
    width: min(100%, 430px);
  }

  .articles-cta {
    width: min(100%, 280px);
    margin-bottom: 32px;
  }

  .articles-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .article-image-slot {
    margin-bottom: 14px;
  }

  .article-card h3 {
    font-size: 19px;
    line-height: 1.18;
  }

  .article-card p {
    font-size: 14px;
  }

  .guide-hero {
    grid-template-columns: 1fr;
    width: min(100% - 32px, 430px);
    gap: 28px;
    padding: 42px 0 34px;
  }

  .guide-hero h1 {
    font-size: clamp(34px, 10vw, 46px);
    line-height: 1.02;
  }

  .guide-hero p,
  .guide-content p,
  .guide-content li {
    font-size: 14px;
    line-height: 1.7;
  }

  .guide-content {
    width: min(100% - 32px, 430px);
    padding-bottom: 68px;
  }

  .guide-content section {
    margin-top: 34px;
  }

  .guide-content h2 {
    font-size: clamp(23px, 7vw, 30px);
  }

  .guide-callout {
    padding: 22px 18px;
  }

  .guide-soft-figure {
    border-radius: 12px;
  }

  .guide-soft-visual {
    min-height: 190px;
  }

  .guide-soft-visual span {
    width: min(100% - 48px, 330px);
    font-size: clamp(20px, 7vw, 28px);
  }

  .guide-warning-figure {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 22px 18px;
  }

  .guide-warning-icon {
    width: 68px;
    height: 68px;
    font-size: 42px;
  }

  .guide-warning-figure figcaption {
    text-align: left;
  }

  .partners-section {
    padding: 32px 16px 42px;
  }

  .partners-inner h2 {
    display: block;
    width: min(100%, 430px);
    margin-bottom: 20px;
    font-size: clamp(24px, 7vw, 31px);
    line-height: 1.12;
    text-align: center;
  }

  .partners-inner h2::before {
    display: inline-block;
    margin-right: 8px;
    font-size: 28px;
    vertical-align: baseline;
  }



  .partners-marquee-secondary {
    display: none;
  }







  .diploma-types-section {
    padding: 42px 16px 68px;
  }

  .diploma-types-inner {
    width: min(100%, 430px);
  }

  .diploma-types-inner h2 {
    margin-bottom: 28px;
    font-size: 23px;
  }

  .diploma-types-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .diploma-type-card {
    border-radius: 18px;
  }

  .diploma-type-header {
    min-height: auto;
    padding: 28px 26px 24px;
  }

  .diploma-type-header p {
    font-size: 25px;
  }

  .diploma-type-header h3 {
    margin-top: 22px;
  }

  .diploma-type-body {
    padding: 24px 24px 28px;
  }

  .diploma-type-body ul {
    gap: 12px;
  }

  .diploma-type-body li {
    font-size: 14px;
    line-height: 1.5;
  }

  .technical-diplomas-section {
    padding: 46px 16px 70px;
  }

  .technical-list-section {
    padding-top: 40px;
  }

  .technical-diplomas-inner {
    width: min(100%, 430px);
  }

  .technical-counter {
    min-height: 118px;
    padding: 18px;
  }

  .technical-counter span {
    margin-top: -4px;
    max-width: 320px;
  }

  .technical-diplomas-inner > h2 {
    margin-bottom: 28px;
    font-size: 23px;
  }

  .technical-diplomas-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .technical-card {
    border-radius: 18px;
  }

  .technical-card-header {
    min-height: auto;
    padding: 28px 26px 24px;
  }

  .technical-card-body {
    padding: 24px 24px 28px;
  }

  .technical-card-body ul {
    gap: 12px;
  }

  .technical-card-body li {
    font-size: 14px;
    line-height: 1.5;
  }

  .client-proof-stats {
    grid-template-columns: 1fr;
    gap: 30px;
    width: min(100% - 32px, 430px);
    padding: 38px 0 44px;
  }

  .client-stat-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 12px;
  }

  .client-stat strong {
    font-size: 40px;
  }

  .client-stat h2 {
    margin: 6px 0 8px;
    font-size: 20px;
  }

  .client-stat p {
    max-width: 290px;
    font-size: 13px;
    line-height: 1.5;
  }

  .client-proof-testimonials {
    padding: 44px 0 56px;
    overflow: hidden;
  }

  .client-proof-heading {
    width: min(100% - 32px, 430px);
    margin-bottom: 22px;
  }

  .client-proof-heading h2 {
    font-size: clamp(30px, 9vw, 40px);
  }

  .client-proof-heading p {
    font-size: 14px;
    line-height: 1.55;
  }

  .testimonial-track {
    min-width: 0;
    gap: 14px;
    padding-inline: 18px;
    animation: none;
    transform: none;
  }

  .testimonial-card {
    width: min(78vw, 310px);
    min-height: 330px;
    flex: 0 0 auto;
    scroll-snap-align: center;
    padding: 22px 20px 20px;
  }

  .testimonial-card p {
    font-size: 13px;
    line-height: 1.55;
  }

  .testimonial-marquee {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-mask-image: none;
    mask-image: none;
    scroll-padding-inline: 18px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .testimonial-marquee::-webkit-scrollbar {
    height: 0;
  }

  .testimonial-card[aria-hidden="true"] {
    display: none;
  }

  .testimonial-author {
    align-items: flex-start;
    margin-top: 14px;
    padding-top: 12px;
  }

  .testimonial-marquee-secondary {
    display: none;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 34px;
    width: min(100% - 32px, 430px);
    padding: 48px 0 36px;
    text-align: center;
  }

  .footer-brand p,
  .footer-seal,
  .footer-security-seal {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-logo {
    justify-content: center;
    margin-bottom: 20px;
  }
  
  .footer-logo-img {
    height: 68px;
  }

  .footer-column h2 {
    margin-bottom: 16px;
  }

  .footer-list {
    justify-items: center;
  }

  .footer-list li {
    width: min(100%, 290px);
    text-align: left;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-bottom {
    width: min(100% - 32px, 430px);
    padding: 54px 0 18px;
  }

  .footer-legal {
    gap: 10px;
  }



  .back-to-top {
    left: 16px;
    bottom: 16px;
    width: 40px;
    height: 40px;
    border-radius: 9px;
  }

  .course-card {
    min-height: 190px;
    padding: 22px 20px 24px;
  }

  .faq-section {
    padding: 46px 14px 72px;
  }

  .faq-header h1,
  .faq-header h2 {
    font-size: clamp(32px, 10vw, 42px);
  }

  .faq-item summary {
    min-height: 62px;
    padding: 18px 52px 18px 18px;
    font-size: 16px;
  }

  .faq-item summary::after {
    right: 20px;
  }

  .faq-answer {
    padding: 0 18px 20px;
  }

  .faq-answer p,
  .faq-answer li {
    font-size: 14px;
    line-height: 1.65;
  }

  .catalog-section {
    padding: 42px 18px 46px;
  }

  .catalog-inner h1,
  .catalog-inner h2 {
    margin-bottom: 30px;
  }

  .catalog-columns,
  .catalog-columns-three,
  .catalog-columns-two {
    grid-template-columns: 1fr;
    width: min(100%, 430px);
    gap: 9px;
  }

  .catalog-columns ul {
    gap: 9px;
  }

  .catalog-buy-button {
    width: min(100%, 320px);
  }

  .values-grid {
    grid-template-columns: 1fr;
    width: min(100%, 430px);
    gap: 34px;
  }

  .privacy-hero {
    padding: 46px 16px 40px;
  }

  .privacy-hero h1 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .privacy-content-section {
    padding: 36px 16px 64px;
  }

  .privacy-content {
    padding: 24px 20px;
  }

  .privacy-content p {
    font-size: 14px;
    line-height: 1.72;
  }

  .service-hero {
    padding: 38px 16px 42px;
  }

  .service-hero h1 {
    font-size: clamp(40px, 13vw, 54px);
  }

  .service-breadcrumb {
    gap: 12px;
    font-size: 15px;
  }

  .service-directory {
    padding: 0 14px 64px;
  }

  .service-card-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    width: min(100%, 430px);
    margin: 0 auto;
  }

  .service-card-meta,
  .service-city-card h3,
  .service-city-card p,
  .service-card-actions {
    margin-left: 0;
    margin-right: 0;
  }

  .service-city-card h3 {
    font-size: 26px;
  }

  .service-city-card p,
  .service-card-actions {
    font-size: 15px;
  }

  .service-pagination {
    width: min(100%, 430px);
    margin: 38px auto 0;
    gap: 8px;
  }

  .service-page-button {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }

  .service-detail-hero {
    padding: 38px 16px 26px;
  }

  .service-detail-hero h1 {
    font-size: clamp(30px, 9vw, 42px);
  }

  .service-detail-article {
    width: min(100% - 28px, 430px);
    padding: 18px 0 64px;
  }

  .service-detail-image {
    margin-bottom: 28px;
  }

  .service-detail-image img {
    max-height: 360px;
  }

  .service-detail-article p,
  .service-detail-article li {
    font-size: 16px;
    line-height: 1.62;
  }

  .service-detail-article h2 {
    margin-top: 30px;
    font-size: clamp(30px, 9vw, 42px);
  }

  .service-detail-course-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 430px) {
  .header-inner {
    height: 76px;
    padding: 0 12px;
    gap: 8px;
  }

  .logo img,
  .header-logo img,
  .navbar-logo img {
    width: clamp(205px, 58vw, 228px);
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .menu-toggle .icon {
    width: 26px;
    height: 26px;
  }
}

.cookie-consent {
  position: fixed;
  right: clamp(12px, 2vw, 24px);
  bottom: calc(clamp(16px, 2.8vw, 30px) + 78px);
  z-index: 2000;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  width: min(430px, calc(100vw - 24px));
  padding: 14px;
  color: #10245c;
  background: rgba(248, 251, 255, 0.96);
  border: 1px solid rgba(29, 78, 216, 0.14);
  border-radius: 18px;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.18);
  backdrop-filter: blur(14px);
  transform: translateY(0);
  opacity: 1;
  transition: opacity 180ms ease, transform 180ms ease;
}

.cookie-consent.is-hidden {
  opacity: 0;
  transform: translateY(12px);
}

.cookie-consent-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #1d4ed8;
  background: #eef4ff;
  border-radius: 50%;
  flex: 0 0 auto;
}

.cookie-consent-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3.2;
}

.cookie-consent-copy {
  min-width: 0;
}

.cookie-consent-copy p {
  margin: 0;
  color: #10245c;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.35;
}

.cookie-consent-copy a {
  display: inline-block;
  margin-top: 4px;
  color: #1d4ed8;
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
}

.cookie-consent-copy a:hover,
.cookie-consent-copy a:focus-visible {
  text-decoration: underline;
}

.cookie-consent-accept {
  min-height: 42px;
  padding: 0 18px;
  color: var(--white);
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 12px 22px rgba(37, 99, 235, 0.25);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
}

.cookie-consent-accept:hover,
.cookie-consent-accept:focus-visible {
  transform: translateY(-1px);
}

@media (max-width: 560px) {
  .cookie-consent {
    left: 12px;
    right: 12px;
    bottom: 82px;
    grid-template-columns: auto 1fr;
    width: auto;
    padding: 12px;
  }

  .cookie-consent-accept {
    grid-column: 1 / -1;
    width: 100%;
  }
}

/* Sales Notification */
.sales-notification {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 380px;
  padding: 10px 18px 10px 10px;
  background: #1e1e2d;
  border-radius: 999px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  transform: translateX(-150%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.6s ease, visibility 0.6s;
}

.sales-notification.show {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.notification-avatar-wrapper {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #10b981;
  overflow: hidden;
  background: linear-gradient(135deg, #101827, #334155);
  display: flex;
  align-items: center;
  justify-content: center;
}

.notification-avatar-wrapper img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 180ms ease;
}

.notification-avatar-wrapper img[src] {
  opacity: 1;
}

.notification-content {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
}

.notif-highlight {
  color: #f59e0b;
  font-weight: 800;
}

@media (max-width: 600px) {
  .sales-notification {
    right: 86px;
    left: 12px;
    transform: translateX(-150%);
    bottom: 16px;
    width: auto;
    max-width: none;
    padding: 10px 12px 10px 10px;
  }

  .sales-notification.show {
    transform: translateX(0);
  }
}
