:root {
  color-scheme: light;
  font-family: "Hind", "Segoe UI", sans-serif;
  --brand-deep: #0f0047;
  --brand-deep-rgb: 15, 0, 71;
  --brand-cloud-surface:
    radial-gradient(circle at 50% 50%, rgba(0, 195, 255, 0.16) 0%, rgba(0, 195, 255, 0.1) 20%, rgba(0, 195, 255, 0.04) 42%, rgba(0, 195, 255, 0) 68%),
    radial-gradient(circle at 50% 50%, rgba(0, 115, 223, 0.2) 0%, rgba(0, 115, 223, 0.12) 24%, rgba(0, 115, 223, 0.05) 46%, rgba(0, 115, 223, 0) 72%),
    linear-gradient(135deg, #0f0047 0%, #17336a 50%, #0f0047 100%);
  --bg: #eef2e8;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --surface-dark: var(--brand-deep);
  --surface-mid: var(--brand-deep);
  --ink: var(--brand-deep);
  --ink-soft: var(--brand-deep);
  --line: rgba(var(--brand-deep-rgb), 0.12);
  --accent-green: #9fda00;
  --accent: #0073df;
  --accent-strong: #f4bf72;
  --shadow: 0 24px 80px rgba(var(--brand-deep-rgb), 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1180px, calc(100vw - 40px));
  --main-section-gap: 108px;
  --hero-header-overlap: clamp(104px, 11vw, 120px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: #ffffff;
  color: var(--ink);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 180ms ease, text-shadow 180ms ease;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

ul {
  margin: 0;
  padding: 0;
}

#app {
  width: 100%;
}

.site-shell {
  position: relative;
  overflow: clip;
}

.announcement-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 3px 12px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: var(--brand-cloud-surface);
  color: #f7fbf9;
}

.announcement-track {
  display: flex;
  gap: 18px;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
}

.announcement-track span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-size: 12px;
  line-height: 1.1;
  letter-spacing: 0.02em;
  animation: marquee 20s linear infinite;
}

.announcement-track span::after {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--accent-green);
}

.announcement-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent);
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, text-shadow 180ms ease;
}

.floating-actions {
  position: fixed;
  top: 88px;
  right: 18px;
  z-index: 30;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.floating-action {
  max-width: 216px;
  padding: 13px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(var(--brand-deep-rgb), 0.1);
  box-shadow: 0 16px 32px rgba(var(--brand-deep-rgb), 0.12);
  backdrop-filter: blur(16px);
  font-size: 0.9rem;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, color 180ms ease, text-shadow 180ms ease;
}

.site-header,
main,
.site-footer {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 18px;
  padding: 16px 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: none;
  transition: background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.35);
  box-shadow: 0 16px 50px rgba(var(--brand-deep-rgb), 0.1);
}

.site-header.menu-open {
  background: rgba(255, 255, 255, 0.35);
}

.site-header:hover,
.site-header:focus-within {
  background: rgba(255, 255, 255, 1);
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0;
  background: transparent;
  border: 0;
}

.brand-logo {
  display: block;
  width: 156px;
  height: auto;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: 0;
}

.site-nav-inline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex: 1;
  min-width: 0;
}

.site-nav-inline .nav-link {
  padding: 10px 12px;
  border: 1px solid var(--brand-deep);
  font-size: 0.92rem;
  color: var(--brand-deep);
  white-space: nowrap;
}

.site-nav {
  position: absolute;
  top: calc(100% + 1px);
  right: -1px;
  display: none;
  min-width: min(92vw, 570px);
  padding: 16px 18px 12px;
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 18px 44px rgba(var(--brand-deep-rgb), 0.08);
}

.menu-dropdown-grid {
  --menu-dropdown-frame-width: 180px;
  display: grid;
  grid-template-columns: repeat(2, var(--menu-dropdown-frame-width));
  grid-template-areas:
    "courses knowledge"
    "about women"
    "contact socials";
  gap: 48px 34px;
  align-items: start;
  justify-content: center;
}

.menu-dropdown-group--courses {
  grid-area: courses;
}

.menu-dropdown-group--knowledge {
  grid-area: knowledge;
}

.menu-dropdown-group--about {
  grid-area: about;
}

.menu-dropdown-group--women {
  grid-area: women;
}

.menu-dropdown-group,
.menu-dropdown-links {
  display: grid;
  gap: 8px;
}

.menu-dropdown-group {
  width: 100%;
  justify-items: stretch;
}

.menu-dropdown-links {
  width: 100%;
}

.menu-dropdown-title,
.menu-dropdown-link {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  min-height: 38px;
  padding: 7px 12px;
  border: 0;
  background: transparent;
  overflow: visible;
  text-align: center;
  line-height: 1.2;
  box-shadow: none;
  transition: none;
}

.menu-dropdown-label {
  display: inline-block;
  transform-origin: center;
  transition: transform 180ms ease;
}

.menu-dropdown-title {
  color: var(--brand-deep);
  font-size: 0.98rem;
  font-weight: 700;
  text-transform: uppercase;
}

.menu-dropdown-group--courses .menu-dropdown-title {
  color: var(--accent-green);
}

.menu-dropdown-group--knowledge .menu-dropdown-title {
  color: var(--accent);
}

.menu-dropdown-group--about .menu-dropdown-title {
  color: #00c3ff;
}

.menu-dropdown-group--women .menu-dropdown-title {
  color: var(--accent-green);
}

.menu-dropdown-link {
  color: var(--brand-deep);
  font-size: 0.95rem;
  font-weight: 400;
}

.menu-dropdown-link--violet {
  background: transparent;
}

.menu-dropdown-link--gray {
  background: transparent;
}

.menu-dropdown-contact {
  grid-area: contact;
  width: 100%;
  justify-self: stretch;
  margin-top: -14px;
  font-weight: 700;
  text-transform: uppercase;
}

.menu-dropdown-socials {
  display: flex;
  grid-area: socials;
  align-items: center;
  justify-content: flex-start;
  gap: 38px;
  margin-top: -14px;
  padding-top: 0;
}

.menu-dropdown-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: var(--brand-deep);
  transition: transform 180ms ease, color 180ms ease;
}

.menu-dropdown-social svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.menu-dropdown-title:hover,
.menu-dropdown-title:focus-visible,
.menu-dropdown-link:hover,
.menu-dropdown-link:focus-visible {
  color: var(--brand-deep);
  text-shadow: none;
  filter: none;
  z-index: 2;
}

.menu-dropdown-title:hover .menu-dropdown-label,
.menu-dropdown-title:focus-visible .menu-dropdown-label,
.menu-dropdown-link:hover .menu-dropdown-label,
.menu-dropdown-link:focus-visible .menu-dropdown-label {
  transform: scale(1.5);
}

.menu-dropdown-social:hover,
.menu-dropdown-social:focus-visible {
  color: var(--brand-deep);
  transform: translateY(-1px);
}

.nav-link {
  display: block;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(var(--brand-deep-rgb), 0.08);
  font-size: 0.94rem;
  color: var(--brand-deep);
  font-weight: 700;
}

.site-nav-inline .nav-link,
.nav-link,
.pathway-card a,
.skill-card a,
.footer-columns a {
  transition: color 180ms ease, text-shadow 180ms ease;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease, text-shadow 180ms ease;
}

.header-cta,
.button-primary {
  background: var(--surface-dark);
  color: var(--accent);
  box-shadow: 0 14px 34px rgba(var(--brand-deep-rgb), 0.18);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(var(--brand-deep-rgb), 0.12);
  color: var(--accent);
}

.button-dark {
  background: var(--brand-deep);
  color: var(--accent);
}

.button:hover,
.header-cta:hover,
.floating-action:hover,
.announcement-cta:hover {
  transform: translateY(-2px);
}

.site-nav-inline .nav-link:hover,
.site-nav-inline .nav-link:focus-visible,
.nav-link:hover,
.nav-link:focus-visible,
.header-cta:hover,
.header-cta:focus-visible,
.button:hover,
.button:focus-visible,
.announcement-cta:hover,
.announcement-cta:focus-visible,
.floating-action:hover,
.floating-action:focus-visible,
.pathway-card a:hover,
.pathway-card a:focus-visible,
.skill-card a:hover,
.skill-card a:focus-visible,
.callpage-button:hover,
.callpage-button:focus-visible,
.callpage-bubble:hover,
.callpage-bubble:focus-visible,
.footer-columns a:hover,
.footer-columns a:focus-visible {
  color: var(--brand-deep);
  text-shadow: 0 0 12px rgba(var(--brand-deep-rgb), 0.24), 0 0 24px rgba(var(--brand-deep-rgb), 0.16);
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(var(--brand-deep-rgb), 0.14);
  border-radius: 0;
  background: #ffffff;
  font: inherit;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle-icon {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.menu-toggle-icon span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav.is-open {
  display: block;
}

.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;
}

main {
  display: grid;
  gap: var(--main-section-gap);
  padding: 28px 0 56px;
}

.hero-section + .announcement-bar {
  margin-top: calc(-1 * var(--main-section-gap));
}

.hero-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 28px;
  padding: 44px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  border-radius: 0;
  background: #ffffff;
  box-shadow: none;
  color: var(--brand-deep);
  overflow: hidden;
}

.hero-section-minimal {
  grid-template-columns: 1fr;
  align-items: end;
  min-height: clamp(380px, 52vw, 680px);
  margin-top: calc(-1 * var(--hero-header-overlap));
  padding: var(--hero-header-overlap) 0 36px;
}

.hero-section-minimal .hero-copy {
  width: var(--container);
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 10px;
  pointer-events: none;
}

.hero-section-minimal .hero-copy h1 {
  max-width: 12ch;
  margin: 0;
  color: var(--brand-deep);
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
  pointer-events: none;
}

.hero-photo-wash {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.45);
  z-index: 1;
  pointer-events: none;
}

.hero-art-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.hero-section::before,
.hero-section::after {
  content: "";
  position: absolute;
  inset: auto;
  border-radius: 999px;
}

.hero-section::before {
  top: -40px;
  right: -50px;
  width: 280px;
  height: 280px;
  background: none;
}

.hero-section::after {
  bottom: -80px;
  left: 20%;
  width: 340px;
  height: 340px;
  background: none;
}

.hero-copy,
.hero-panel,
.editorial-card,
.skill-card,
.step-card,
.section-heading,
.contact-copy,
.contact-actions,
.partner-pill,
.trust-copy,
.proof-item,
.pathway-card,
.split-copy,
.detail-list,
.metric-card {
  position: relative;
  z-index: 3;
}

.section-kicker {
  margin: 0 0 12px;
  color: #0073df;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-copy h1,
.section-heading h2,
.editorial-card h2,
.split-copy h2,
.contact-copy h2 {
  margin: 0;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero-copy h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 7vw, 6rem);
}

.hero-description,
.section-heading p,
.editorial-card p,
.split-copy p,
.contact-copy p,
.skill-card p,
.step-card p,
.pathway-card p,
.trust-copy li {
  color: rgba(244, 249, 247, 0.82);
  font-size: 1.02rem;
  line-height: 1.7;
}

.hero-description {
  max-width: 62ch;
  margin: 20px 0 0;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-highlights {
  display: grid;
  gap: 14px;
  margin-top: 28px;
  list-style: none;
}

.hero-highlights li,
.detail-list li {
  position: relative;
  padding-left: 24px;
  color: rgba(244, 249, 247, 0.88);
  line-height: 1.6;
}

.hero-highlights li::before,
.detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
}

.hero-panel {
  display: grid;
  gap: 18px;
}

.quote-card,
.metric-card,
.pathway-card,
.editorial-card,
.skill-card,
.trust-copy,
.step-card,
.contact-section {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.quote-card {
  display: grid;
  gap: 18px;
  padding: 28px;
}

.quote-card p {
  margin: 0;
  line-height: 1.7;
}

.quote-mark {
  color: var(--accent-strong);
  font-size: 4rem;
  line-height: 0.8;
}

.quote-card strong,
.quote-card span {
  display: block;
}

.quote-card span {
  color: rgba(244, 249, 247, 0.7);
  margin-top: 5px;
}

.metric-grid,
.pathway-grid,
.skills-grid,
.steps-grid {
  display: grid;
  gap: 18px;
}

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

.metric-card {
  padding: 20px;
}

.metric-card strong,
.proof-item strong {
  display: block;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.metric-card span,
.proof-item span {
  display: block;
  margin-top: 8px;
  color: rgba(244, 249, 247, 0.72);
  line-height: 1.5;
}

.program-strip,
.skills-section,
.trust-section,
.steps-section {
  display: grid;
  gap: 24px;
}

.trust-intro {
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
}

.trust-proof-layout {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(360px, 581px);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}

.trust-proof-layout .section-heading {
  max-width: 480px;
}

.trust-proof-layout .proof-bar {
  margin: 0;
  justify-self: end;
}

.trust-portrait {
  justify-self: center;
  width: clamp(220px, 28vw, 320px);
  height: clamp(220px, 28vw, 320px);
  position: relative;
  display: block;
  padding: 0;
  box-sizing: border-box;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  background: transparent;
  box-shadow: 0 24px 56px rgba(var(--brand-deep-rgb), 0.16);
}

.trust-portrait-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 18%;
  transform: scale(1.01);
}

.trust-quote {
  margin: 0;
  padding: clamp(24px, 3vw, 34px);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(var(--brand-deep-rgb), 0.08);
  box-shadow: 0 18px 46px rgba(var(--brand-deep-rgb), 0.08);
}

.trust-quote p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  line-height: 1.75;
  letter-spacing: -0.02em;
}

.skills-section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
}

.skills-section-intro .section-heading {
  max-width: none;
}

.skills-section-visual {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.skills-section-image {
  display: block;
  width: min(100%, 420px);
  height: auto;
}

.program-strip .section-heading h2 {
  color: #000000;
}

.section-heading {
  max-width: 780px;
}

.section-heading h2,
.editorial-card h2,
.split-copy h2,
.contact-copy h2 {
  font-size: 45px;
}

.section-heading p,
.editorial-card p,
.split-copy p,
.contact-copy p,
.pathway-card p,
.skill-card p,
.step-card p,
.trust-copy li {
  margin: 16px 0 0;
  color: var(--ink-soft);
}

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

#test.pathway-card {
  grid-column: 1 / -1;
  width: 100%;
  max-width: none;
  justify-self: stretch;
  display: grid;
  justify-items: center;
  padding: 30px 32px;
  border: 0;
  border-radius: 30px;
  background: var(--brand-cloud-surface);
  box-shadow: 0 18px 48px rgba(var(--brand-deep-rgb), 0.18);
  text-align: center;
  color: #f5faf8;
}

#test.pathway-card h3 {
  color: #f5faf8;
}

#test.pathway-card .card-meta {
  color: rgba(245, 250, 248, 0.92);
}

#test.pathway-card p {
  color: rgba(245, 250, 248, 0.84);
}

#test.pathway-card a {
  margin-top: 22px;
  padding: 14px 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(var(--brand-deep-rgb), 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

#test.pathway-card a:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

.pathway-card,
.editorial-card,
.skill-card,
.step-card,
.trust-copy {
  padding: 26px;
  border-color: rgba(var(--brand-deep-rgb), 0.08);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 36px rgba(var(--brand-deep-rgb), 0.06);
}

.skill-card {
  display: flex;
  flex-direction: column;
}

.card-meta,
.skill-tag {
  margin: 0 0 14px;
  color: #0073df;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pathway-card h3,
.skill-card h3,
.step-card h3 {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.pathway-card a,
.skill-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--accent);
  font-weight: 800;
}

.skill-card a {
  margin-top: auto;
  padding-top: 18px;
}

.proof-bar {
  display: grid;
  position: relative;
  width: min(100%, 581px);
  justify-self: center;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(11, 39px);
  gap: 7px;
  padding: 18px;
  border-radius: 22px;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
  isolation: isolate;
}

.proof-bar::before,
.proof-bar::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
  background: rgba(255, 255, 255, 0.97);
  filter: drop-shadow(10px 10px 10px rgba(170, 181, 200, 0.34));
}

.proof-bar::before {
  top: 8px;
  left: 11px;
  width: 46px;
  height: 46px;
  box-shadow:
    78px -5px 0 0 rgba(255, 255, 255, 0.95),
    159px 5px 0 0 rgba(255, 255, 255, 0.97),
    243px -7px 0 0 rgba(255, 255, 255, 0.94),
    326px 1px 0 0 rgba(255, 255, 255, 0.96),
    411px 7px 0 0 rgba(255, 255, 255, 0.94),
    497px -1px 0 0 rgba(255, 255, 255, 0.95),
    567px 11px 0 0 rgba(255, 255, 255, 0.94),
    21px 85px 0 0 rgba(255, 255, 255, 0.95),
    100px 96px 0 0 rgba(255, 255, 255, 0.96),
    183px 79px 0 0 rgba(255, 255, 255, 0.94),
    267px 92px 0 0 rgba(255, 255, 255, 0.96),
    353px 83px 0 0 rgba(255, 255, 255, 0.94),
    440px 97px 0 0 rgba(255, 255, 255, 0.96),
    524px 81px 0 0 rgba(255, 255, 255, 0.95),
    63px 169px 0 0 rgba(255, 255, 255, 0.96),
    145px 160px 0 0 rgba(255, 255, 255, 0.95),
    229px 174px 0 0 rgba(255, 255, 255, 0.97),
    314px 163px 0 0 rgba(255, 255, 255, 0.95),
    400px 178px 0 0 rgba(255, 255, 255, 0.96),
    485px 165px 0 0 rgba(255, 255, 255, 0.94),
    566px 175px 0 0 rgba(255, 255, 255, 0.95),
    36px 251px 0 0 rgba(255, 255, 255, 0.94),
    121px 235px 0 0 rgba(255, 255, 255, 0.96),
    206px 260px 0 0 rgba(255, 255, 255, 0.94),
    292px 241px 0 0 rgba(255, 255, 255, 0.96),
    378px 257px 0 0 rgba(255, 255, 255, 0.95),
    462px 237px 0 0 rgba(255, 255, 255, 0.96),
    547px 253px 0 0 rgba(255, 255, 255, 0.94);
}

.proof-bar::after {
  top: 52px;
  left: 54px;
  width: 26px;
  height: 26px;
  box-shadow:
    68px 6px 0 0 rgba(255, 255, 255, 0.96),
    154px -11px 0 0 rgba(255, 255, 255, 0.94),
    242px 2px 0 0 rgba(255, 255, 255, 0.95),
    327px -6px 0 0 rgba(255, 255, 255, 0.95),
    413px 4px 0 0 rgba(255, 255, 255, 0.94),
    498px -9px 0 0 rgba(255, 255, 255, 0.96),
    584px 6px 0 0 rgba(255, 255, 255, 0.94),
    -29px 77px 0 0 rgba(255, 255, 255, 0.95),
    56px 101px 0 0 rgba(255, 255, 255, 0.94),
    143px 84px 0 0 rgba(255, 255, 255, 0.96),
    231px 105px 0 0 rgba(255, 255, 255, 0.95),
    320px 82px 0 0 rgba(255, 255, 255, 0.95),
    408px 104px 0 0 rgba(255, 255, 255, 0.94),
    497px 87px 0 0 rgba(255, 255, 255, 0.95),
    19px 169px 0 0 rgba(255, 255, 255, 0.95),
    106px 157px 0 0 rgba(255, 255, 255, 0.96),
    195px 183px 0 0 rgba(255, 255, 255, 0.94),
    283px 150px 0 0 rgba(255, 255, 255, 0.95),
    372px 177px 0 0 rgba(255, 255, 255, 0.95),
    461px 154px 0 0 rgba(255, 255, 255, 0.96),
    549px 180px 0 0 rgba(255, 255, 255, 0.94),
    58px 255px 0 0 rgba(255, 255, 255, 0.95),
    146px 234px 0 0 rgba(255, 255, 255, 0.94),
    235px 259px 0 0 rgba(255, 255, 255, 0.96),
    323px 236px 0 0 rgba(255, 255, 255, 0.95),
    412px 260px 0 0 rgba(255, 255, 255, 0.95),
    500px 237px 0 0 rgba(255, 255, 255, 0.94);
}

.proof-item {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px 9px;
  min-height: 0;
  border-radius: 0;
  text-align: center;
  color: #f5faf8;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 14px 28px rgba(var(--brand-deep-rgb), 0.18);
}

.proof-item strong,
.proof-item span {
  position: relative;
  z-index: 1;
}

.proof-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 42%);
  pointer-events: none;
}

.proof-item strong {
  margin: 0;
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 0.88;
  letter-spacing: -0.075em;
  font-weight: 800;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.proof-item span {
  max-width: 92%;
  margin-top: 5px;
  color: rgba(245, 250, 248, 0.95);
  font-size: clamp(0.66rem, 1.05vw, 0.9rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
  font-weight: 500;
  text-wrap: balance;
}

.proof-item-1 {
  grid-column: 2 / 5;
  grid-row: 2 / 5;
  background: linear-gradient(160deg, #0098ff 0%, #0073df 56%, #0f0047 100%);
  transform: translate3d(3px, -4px, 0);
}

.proof-item-2 {
  grid-column: 8 / 11;
  grid-row: 2 / 5;
  background: linear-gradient(160deg, #38d9ff 0%, #00c3ff 52%, #0073df 100%);
  transform: translate3d(-4px, -10px, 0);
}

.proof-item-3 {
  grid-column: 5 / 8;
  grid-row: 5 / 8;
  background: linear-gradient(160deg, #0098ff 0%, #0073df 56%, #0f0047 100%);
  transform: translate3d(0, -6px, 0);
}

.proof-item-4 {
  grid-column: 1 / 4;
  grid-row: 7 / 10;
  background: linear-gradient(160deg, #b9e51d 0%, #9fda00 52%, #79af16 100%);
  transform: translate3d(5px, 3px, 0);
}

.proof-item-5 {
  grid-column: 5 / 8;
  grid-row: 8 / 11;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(247, 250, 241, 0.98) 100%);
  color: var(--brand-deep);
  border-color: rgba(255, 255, 255, 0.85);
  box-shadow: 0 14px 28px rgba(var(--brand-deep-rgb), 0.12);
  transform: translate3d(-3px, 7px, 0);
}

.proof-item-6 {
  grid-column: 9 / 12;
  grid-row: 7 / 10;
  background: linear-gradient(160deg, #b4e428 0%, #9fda00 52%, #79af16 100%);
  transform: translate3d(-6px, 5px, 0);
}

.proof-item-1::before,
.proof-item-2::before,
.proof-item-4::before {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  top: -10px;
  right: -10px;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 7px 14px rgba(var(--brand-deep-rgb), 0.16);
}

.proof-item-2::before {
  top: -14px;
  left: -9px;
  right: auto;
  background: linear-gradient(160deg, #30d8ff 0%, #00c3ff 52%, #0073df 100%);
}

.proof-item-4::before {
  background: linear-gradient(160deg, #28d6ff 0%, #00c3ff 60%, #0073df 100%);
}

.proof-item-4 strong,
.proof-item-6 strong {
  font-size: clamp(2.2rem, 3.4vw, 3.1rem);
}

.proof-item-5 strong,
.proof-item-5 span {
  color: var(--brand-deep);
}

.proof-item-5::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0) 52%);
}

.proof-item-5 strong {
  color: #79af16;
  text-shadow: none;
}

.proof-item-5 span {
  color: rgba(var(--brand-deep-rgb), 0.8);
}

.proof-item--rating {
  gap: 1px;
}

.proof-stars {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 4px;
  font-size: clamp(0.82rem, 1.4vw, 1.2rem);
  line-height: 1;
  letter-spacing: 0.12em;
  font-weight: 800;
  background: linear-gradient(90deg, #ffe86a 0%, #ffd53d 82%, rgba(255, 255, 255, 0.98) 82%, rgba(255, 255, 255, 0.98) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.reason-card {
  padding: 30px;
  border: 1px solid rgba(var(--brand-deep-rgb), 0.08);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 36px rgba(var(--brand-deep-rgb), 0.06);
}

.reason-card h2 {
  margin: 0;
  font-size: 45px;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.reason-card p {
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.7;
}

.editorial-grid,
.trust-grid,
.contact-section,
.split-band,
.bottom-call-section {
  display: grid;
  gap: 22px;
}

.editorial-grid {
  grid-template-columns: 1.05fr 0.95fr;
}

.editorial-card-accent {
  background:
    linear-gradient(135deg, rgba(0, 115, 223, 0.2), rgba(244, 191, 114, 0.18)),
    rgba(255, 255, 255, 0.78);
}

.detail-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
  list-style: none;
}

.detail-list li {
  color: var(--ink);
}

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

.skill-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
  list-style: none;
}

.skill-card li {
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(var(--brand-deep-rgb), 0.05);
  color: var(--ink);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.35;
}

.split-band {
  grid-template-columns: 0.92fr 1.08fr;
  padding: 34px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--brand-deep), var(--brand-deep));
  color: #f4faf7;
}

.detail-list-dark li {
  color: rgba(244, 249, 247, 0.86);
}

.trust-grid {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: start;
}

.partner-cloud-board,
.certification-cloud-board {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: 100%;
  margin: 0;
  padding: 20px 24px;
  border-radius: 30px;
  background: var(--brand-cloud-surface);
  box-shadow: 0 18px 48px rgba(var(--brand-deep-rgb), 0.18);
  overflow: hidden;
}

.certification-cloud-board {
  margin-top: 18px;
}

.partner-cloud-intro,
.certification-cloud-intro {
  margin: 0;
  max-width: 760px;
  text-align: center;
  color: rgba(245, 250, 248, 0.92);
  font-size: 1rem;
  line-height: 1.65;
}

.partner-cloud-row,
.certification-cloud-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  width: 100%;
}

.partner-cloud-row {
  gap: 10px;
}

.certification-cloud-row {
  gap: 18px;
}

.partner-cloud-card,
.certification-cloud-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 74px;
  padding: 14px 16px;
  border-radius: 24px;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.certification-cloud-card {
  min-height: 86px;
  padding: 12px 10px;
}

.partner-cloud-logo {
  display: block;
  max-width: 100%;
  max-height: 42px;
  width: auto;
  height: auto;
  filter: brightness(0) saturate(100%) invert(100%);
  opacity: 0.96;
}

.certification-cloud-logo {
  display: block;
  max-width: 100%;
  max-height: 64px;
  width: auto;
  height: auto;
}

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

.contact-section {
  grid-template-columns: 1.05fr 0.95fr;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.62)),
    linear-gradient(180deg, rgba(0, 115, 223, 0.08), rgba(244, 191, 114, 0.1));
  border-color: rgba(var(--brand-deep-rgb), 0.08);
}

.contact-section-summary {
  grid-template-columns: 1fr;
  background: transparent;
  padding: 10px 0 0;
}

.contact-section-summary .contact-copy {
  max-width: 760px;
}

.contact-section-summary .contact-actions {
  margin-top: 0;
}

.callpage-strip {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 34px;
  padding-top: 46px;
}

.callpage-band {
  position: relative;
  min-height: 208px;
  background: var(--brand-cloud-surface);
  overflow: visible;
}

.callpage-inner {
  width: min(1770px, calc(100vw - 72px));
  margin: 0 auto;
  padding: 19px 0 27px;
  display: flex;
  align-items: center;
  gap: 42px;
}

.callpage-actions {
  display: flex;
  flex: 1;
  align-items: center;
  gap: 46px;
  min-width: 0;
}

.callpage-button,
.callpage-bubble {
  transition: transform 180ms ease, color 180ms ease, text-shadow 180ms ease;
}

.callpage-icon {
  transition: transform 180ms ease;
}

.callpage-button,
.callpage-bubble {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 76px;
  padding: 0 40px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  color: #ffffff;
  font-family: "Hind", "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2;
  white-space: nowrap;
}

.callpage-button {
  box-shadow: 0 12px 28px rgba(var(--brand-deep-rgb), 0.18);
}

.callpage-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(var(--brand-deep-rgb), 0.18);
}

.callpage-icon-phone {
  width: 90px;
  height: 90px;
}

.callpage-icon-chat {
  width: 102px;
  height: 102px;
}

.callpage-icon svg {
  width: 46px;
  height: 46px;
  fill: currentColor;
}

.callpage-icon-chat svg {
  width: 52px;
  height: 52px;
}

.callpage-chat {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
  min-width: 0;
  padding-top: 0;
}

.callpage-bubble {
  position: static;
  min-width: 0;
  padding: 0 40px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 28px rgba(var(--brand-deep-rgb), 0.18);
}

.callpage-button:hover,
.callpage-bubble:hover,
.callpage-icon:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

.site-footer {
  display: grid;
  gap: 34px;
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 36px max(calc((100vw - var(--container)) / 2), 20px) 56px;
  background: var(--brand-cloud-surface);
  color: #f5faf8;
  font-size: 15px;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(180px, 220px) minmax(260px, 1fr) minmax(300px, 1.05fr);
  gap: 38px;
  align-items: start;
}

.footer-brand-panel {
  display: flex;
  align-items: flex-start;
}

.footer-logo {
  display: block;
  width: min(190px, 100%);
  height: auto;
  filter: brightness(0) saturate(100%) invert(100%);
}

.footer-summary,
.footer-test,
.footer-contact {
  display: grid;
  gap: 12px;
}

.footer-summary p,
.footer-test p,
.footer-contact p,
.footer-legal,
.footer-columns a,
.footer-policy-links a,
.footer-contact-email {
  color: #f5faf8;
}

.footer-summary p,
.footer-test p,
.footer-contact p {
  margin: 0;
  line-height: 1.45;
}

.footer-stats {
  font-weight: 700;
}

.footer-google-word {
  color: var(--accent);
}

.footer-test-title,
.footer-columns h4,
.footer-contact h4 {
  margin: 0;
  color: #f5faf8;
  font-size: 15px;
  line-height: 1.2;
}

.footer-test-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  color: #ffffff;
  font-weight: 800;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease, text-shadow 180ms ease;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 300px);
  gap: 42px;
  align-items: start;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.footer-columns ul {
  display: grid;
  gap: 4px;
  list-style: none;
}

.footer-columns a,
.footer-contact-email,
.footer-policy-links a {
  line-height: 1.35;
}

.footer-contact-email {
  font-weight: 700;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
}

.footer-legal {
  margin: 0;
  font-size: 15px;
}

.footer-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.footer-social-link {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #f5faf8;
}

.footer-social-link svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.footer-policy-links {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-policy-separator {
  opacity: 0.6;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #f5faf8;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.28), 0 0 24px rgba(255, 255, 255, 0.16);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 480ms ease, transform 480ms ease;
}

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

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

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

@media (max-width: 1180px) {
  .proof-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    padding: 24px;
  }

  .proof-bar::before,
  .proof-bar::after {
    opacity: 0.72;
  }

  .proof-item,
  .proof-item-1,
  .proof-item-2,
  .proof-item-3,
  .proof-item-4,
  .proof-item-5,
  .proof-item-6 {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    min-height: 0;
    aspect-ratio: 1 / 1;
    transform: none;
  }

  .pathway-grid,
  .skills-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #test.pathway-card {
    max-width: none;
  }

  .callpage-inner {
    width: calc(100vw - 48px);
    gap: 24px;
  }

  .callpage-actions {
    gap: 18px;
  }

  .callpage-button,
  .callpage-bubble {
    min-height: 68px;
    padding: 0 28px;
    font-size: 16px;
  }

  .callpage-chat {
    min-width: 0;
  }

  .callpage-bubble {
    min-width: 336px;
  }

  .hero-section,
  .reasons-grid,
  .editorial-grid,
  .split-band,
  .trust-grid,
  .contact-section,
  .bottom-call-section,
  .steps-grid,
  .metric-grid,
  .proof-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partner-cloud-board,
  .certification-cloud-board {
    gap: 14px;
    padding: 18px 20px;
  }

  .partner-cloud-row {
    gap: 8px;
  }

  .certification-cloud-row {
    gap: 14px;
  }

  .partner-cloud-card,
  .certification-cloud-card {
    min-height: 68px;
    padding: 12px 14px;
  }

  .partner-cloud-logo {
    max-height: 36px;
  }

  .certification-cloud-logo {
    max-height: 54px;
  }

  .footer-top {
    grid-template-columns: minmax(180px, 220px) 1fr;
  }

  .footer-test {
    grid-column: 1 / -1;
    max-width: 560px;
  }

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

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

  .skills-section-intro {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 340px);
  }

  .trust-intro {
    grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  }

  .trust-proof-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .trust-proof-layout .section-heading,
  .trust-proof-layout .proof-bar {
    justify-self: start;
  }
}

@media (max-width: 920px) {
  .proof-bar {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    padding: 20px;
  }

  .proof-bar::before,
  .proof-bar::after {
    opacity: 0.52;
  }

  .proof-item,
  .proof-item-1,
  .proof-item-2,
  .proof-item-3,
  .proof-item-4,
  .proof-item-5,
  .proof-item-6 {
    width: min(100%, 360px);
    min-height: 0;
    aspect-ratio: 1 / 1;
    justify-self: center;
  }

  .floating-actions {
    position: static;
    width: var(--container);
    margin: 14px auto 0;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .site-header {
    top: 10px;
    padding: 14px 18px;
  }

  .site-nav-inline {
    display: none;
  }

  .site-nav {
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    padding: 18px;
    min-width: 0;
  }

  .skills-section-intro {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .trust-intro {
    grid-template-columns: 1fr;
  }

  .trust-proof-layout {
    grid-template-columns: 1fr;
  }

  .skills-section-visual {
    justify-content: center;
  }

  .menu-dropdown-grid {
    gap: 24px 18px;
  }

  .menu-dropdown-group,
  .menu-dropdown-contact {
    width: 100%;
  }

  .menu-dropdown-title,
  .menu-dropdown-link {
    width: 100%;
  }

  .hero-section,
  .reasons-grid,
  .editorial-grid,
  .split-band,
  .trust-grid,
  .contact-section,
  .bottom-call-section,
  .pathway-grid,
  .skills-grid,
  .steps-grid,
  .metric-grid,
  .proof-bar,
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .footer-top,
  .footer-main,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-brand-panel,
  .footer-socials,
  .footer-policy-links {
    justify-content: flex-start;
  }

  .footer-test-button {
    width: 100%;
  }

  #test.pathway-card {
    grid-column: auto;
    max-width: none;
  }

  .partner-cloud-board,
  .certification-cloud-board {
    width: 100%;
    padding: 24px;
    gap: 16px;
  }

  .partner-cloud-intro,
  .certification-cloud-intro {
    max-width: 100%;
  }

  .partner-cloud-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 16px;
  }

  .certification-cloud-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    gap: 14px;
  }

  .partner-cloud-card,
  .partner-cloud-card-wide,
  .partner-cloud-card-medium,
  .partner-cloud-card-compact,
  .certification-cloud-card {
    width: 100%;
    min-height: 96px;
    padding: 18px 20px;
  }

  .hero-section {
    padding: 0 0 28px;
  }

  .hero-section-minimal {
    padding: var(--hero-header-overlap) 0 28px;
  }

  .callpage-strip {
    margin-top: 28px;
    padding-top: 0;
  }

  .callpage-band {
    min-height: 0;
    padding: 22px 0;
  }

  .callpage-inner {
    width: min(100vw - 32px, 680px);
    display: grid;
    gap: 18px;
  }

  .callpage-icon-phone {
    width: 78px;
    height: 78px;
  }

  .callpage-actions {
    flex-direction: column;
    gap: 14px;
  }

  .callpage-button {
    width: 100%;
    padding: 0 24px;
  }

  .callpage-chat {
    min-width: 0;
    width: 100%;
    padding-top: 0;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 14px;
    align-items: center;
  }

  .callpage-bubble {
    position: static;
    min-width: 0;
    width: 100%;
    padding: 0 24px;
  }

  .callpage-icon-chat {
    width: 78px;
    height: 78px;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .hero-section-minimal {
    min-height: 420px;
  }

  .hero-section-minimal .hero-copy {
    padding: 0 16px;
  }

  .bottom-call-card {
    padding: 24px;
  }

  .announcement-bar {
    align-items: stretch;
    flex-direction: column;
    justify-content: center;
    padding: 4px 12px;
  }

  .announcement-track {
    width: 100%;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(100vw - 24px, 1180px);
  }

  .announcement-track span {
    animation-duration: 28s;
  }

  .floating-action,
  .announcement-cta,
  .button,
  .header-cta {
    width: 100%;
  }

  .callpage-inner {
    width: min(100vw - 24px, 500px);
  }

  .skills-section-image {
    width: min(100%, 320px);
  }

  .menu-dropdown-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "courses"
      "knowledge"
      "about"
      "women"
      "contact"
      "socials";
    justify-content: stretch;
  }

  .menu-dropdown-contact,
  .menu-dropdown-socials {
    grid-area: auto;
  }


  .menu-dropdown-group {
    justify-items: stretch;
  }

  .menu-dropdown-socials {
    justify-content: flex-start;
    gap: 22px;
  }

  .callpage-button,
  .callpage-bubble {
    min-height: 62px;
    font-size: 16px;
    text-align: center;
  }

  .callpage-icon-phone,
  .callpage-icon-chat {
    width: 70px;
    height: 70px;
  }

  .callpage-icon svg {
    width: 40px;
    height: 40px;
  }

  .hero-section,
  .split-band,
  .contact-section,
  .bottom-call-section {
    padding: 24px;
  }

  .partner-cloud-board,
  .certification-cloud-board {
    gap: 14px;
    width: 100%;
    padding: 20px;
  }


  .site-footer {
    padding: 32px 20px 44px;
  }

  .footer-columns {
    gap: 22px;
  }

  .footer-socials {
    gap: 12px;
  }
  .partner-cloud-intro,
  .certification-cloud-intro {
    font-size: 0.96rem;
    line-height: 1.6;
  }

  .partner-cloud-row {
    grid-template-columns: 1fr;
    gap: 14px;
    width: 100%;
  }

  .certification-cloud-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
  }

  .partner-cloud-card,
  .partner-cloud-card-wide,
  .partner-cloud-card-medium,
  .partner-cloud-card-compact,
  .certification-cloud-card {
    min-height: 84px;
    padding: 20px 22px;
  }

  .partner-cloud-logo {
    max-height: 40px;
  }

  .certification-cloud-logo {
    max-height: 52px;
  }

  .hero-section {
    padding: 0 0 24px;
  }

  .hero-section-minimal {
    min-height: 360px;
    padding: var(--hero-header-overlap) 0 24px;
  }

  .hero-section-minimal .hero-copy {
    padding: 0 12px;
  }

  .pathway-card,
  .editorial-card,
  .skill-card,
  .step-card,
  .trust-copy {
    padding: 22px;
  }
}