:root {
  color-scheme: light;
  --white: #fff;
  --black: #000;
  --blue: #3b82f6;
  --blue-strong: #2563eb;
  --blue-hover: #1d4ed8;
  --blue-soft: #eff6ff;
  --blue-pale: #dbeafe;
  --yellow: #fbbf24;
  --yellow-strong: #fbbf24;
  --yellow-hover: #f59e0b;
  --yellow-soft: #fef3c7;
  --bg: #fff;
  --surface: #fff;
  --surface-alt: #fcfdff;
  --surface-subtle: #f8fbff;
  --text: #0f172a;
  --subheading: #334155;
  --muted: #475569;
  --caption: #64748b;
  --line: #e2e8f0;
  --line-strong: #cbd5e1;
  --header-bg: rgba(255, 255, 255, 0.94);
  --shadow: 0 20px 60px rgba(2, 6, 23, 0.08);
  --shadow-soft: 0 14px 40px rgba(2, 6, 23, 0.06);
  --shadow-hover: 0 30px 80px rgba(37, 99, 235, 0.12);
  --radius-lg: 28px;
  --radius-md: 24px;
  --radius-sm: 14px;
  --container: 1180px;
  --header-h: 78px;
}

html[data-theme="dark"] {
  color-scheme: dark;
  --bg: #000;
  --surface: #0b0b0b;
  --surface-alt: #111;
  --surface-subtle: #111;
  --text: #fff;
  --muted: #b5bdc6;
  --subheading: #d6dde6;
  --caption: #aab4c0;
  --line: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(255, 255, 255, 0.24);
  --header-bg: rgba(0, 0, 0, 0.92);
  --blue-soft: #071b27;
  --blue-pale: #0c2536;
  --yellow-soft: #211a05;
  --shadow: 0 22px 55px rgba(0, 0, 0, 0.52);
  --shadow-soft: 0 12px 34px rgba(0, 0, 0, 0.38);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 18px);
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  transition: background-color 180ms ease, color 180ms ease;
}

html[data-theme="light"] body {
  background:
    radial-gradient(circle at 0 0, rgba(59, 130, 246, 0.045), transparent 34rem),
    radial-gradient(circle at 100% 12rem, rgba(251, 191, 36, 0.05), transparent 30rem),
    var(--bg);
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 3000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--black);
  color: var(--white);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: var(--header-bg);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  min-height: var(--header-h);
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.brand-logo {
  width: 50px;
  height: 50px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  line-height: 1.15;
}

.brand-name {
  font-size: 1.05rem;
  font-weight: 800;
}

.brand-subtitle {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}

.nav-link {
  position: relative;
  padding: 10px 11px;
  border-radius: 10px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  transition: background 160ms ease, color 160ms ease;
}

.nav-link::after {
  position: absolute;
  right: 12px;
  bottom: 5px;
  left: 12px;
  height: 2px;
  border-radius: 2px;
  background: var(--blue);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-link:hover,
.nav-link.is-active {
  background: var(--blue-soft);
  color: var(--text);
}

.nav-link.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-link.is-blacklight,
.nav-link.is-blacklight:hover,
.nav-link.is-blacklight.is-active {
  border: 1px solid transparent;
  background:
    linear-gradient(#050505, #050505) padding-box,
    linear-gradient(120deg, #8b5cf6, #38bdf8 58%, #facc15) border-box;
  box-shadow: 0 0 12px rgba(99, 102, 241, 0.24);
  color: #fff;
}

.nav-link.is-blacklight::after {
  background: linear-gradient(90deg, #8b5cf6, #38bdf8, #facc15);
  box-shadow: 0 0 7px rgba(56, 189, 248, 0.55);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}

.theme-toggle,
.menu-toggle {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  color: var(--text);
  transition: border-color 160ms ease, transform 160ms ease;
}

.theme-toggle:hover,
.menu-toggle:hover {
  border-color: var(--blue);
  transform: translateY(-1px);
}

.theme-toggle .moon,
html[data-theme="dark"] .theme-toggle .sun {
  display: none;
}

html[data-theme="dark"] .theme-toggle .moon {
  display: inline;
}

.menu-toggle {
  display: none;
}

.menu-lines {
  display: grid;
  gap: 4px;
}

.menu-lines span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-toggle[aria-expanded="true"] .menu-lines span:first-child {
  transform: translateY(6px) rotate(45deg);
}

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

.menu-toggle[aria-expanded="true"] .menu-lines span:last-child {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-drawer {
  display: none;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: #111827;
  color: var(--white);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.16);
}

.btn-primary:hover {
  background: var(--black);
  color: var(--white);
}

.btn-primary span,
.btn-primary svg,
.btn-primary i {
  color: inherit;
}

.btn-primary svg {
  fill: currentColor;
  stroke: currentColor;
}

.whatsapp-button {
  border-color: var(--blue-strong);
  background-color: var(--blue-strong);
  color: var(--white);
}

.whatsapp-button:hover {
  border-color: var(--blue-hover);
  background-color: var(--blue-hover);
  color: var(--white);
}

.whatsapp-button span,
.whatsapp-button svg,
.whatsapp-button i {
  color: inherit;
}

.whatsapp-button svg {
  fill: currentColor;
  stroke: currentColor;
}

.btn-dark {
  background: #111827;
  color: var(--white);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.16);
}

.btn-dark:hover {
  background: var(--black);
}

html[data-theme="dark"] .btn-dark {
  border-color: rgba(255, 255, 255, 0.24);
  background: var(--white);
  color: var(--black);
}

.btn-yellow {
  background: var(--yellow);
  color: #111827;
  box-shadow: 0 10px 24px rgba(245, 158, 11, 0.18);
}

.btn-yellow:hover {
  background: var(--yellow-hover);
}

.btn-outline {
  border-color: #bfdbfe;
  background: var(--blue-soft);
  color: var(--blue-strong);
}

.btn-outline:hover {
  border-color: #93c5fd;
  background: var(--blue-pale);
  color: var(--blue-hover);
}

html[data-theme="dark"] .btn-primary:not(.whatsapp-button) {
  border-color: var(--white);
  background: var(--white);
  color: var(--black);
}

html[data-theme="dark"] .btn-outline {
  border-color: var(--line-strong);
  background: var(--surface);
  color: var(--blue);
}

html[data-theme="dark"] .btn-outline:hover {
  background: var(--blue-soft);
}

.btn-small {
  min-height: 42px;
  padding: 10px 14px;
  font-size: 0.88rem;
}

.icon-inline {
  font-size: 1.05em;
  line-height: 1;
}

.page-main {
  min-height: 65vh;
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(251, 191, 36, 0.1), transparent 45%),
    radial-gradient(circle at top left, rgba(59, 130, 246, 0.08), transparent 45%),
    var(--bg);
}

.hero::before,
.page-hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  opacity: 1;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, #000, transparent 78%);
}

html[data-theme="dark"] .hero::before,
html[data-theme="dark"] .page-hero::before {
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  opacity: 0.24;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 620px;
  align-items: center;
  grid-template-columns: minmax(0, 1.14fr) minmax(320px, 0.86fr);
  column-gap: clamp(36px, 7vw, 92px);
  row-gap: 34px;
  padding-block: 70px 44px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--blue-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 3px;
  border-radius: 3px;
  background: var(--yellow);
  content: "";
}

html[data-theme="dark"] .eyebrow {
  color: var(--blue);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--text);
  line-height: 1.12;
  text-wrap: balance;
}

h1 {
  max-width: 900px;
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 6vw, 5.5rem);
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.45rem);
  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.16rem, 2vw, 1.42rem);
  letter-spacing: -0.025em;
}

.accent-text {
  color: var(--blue-strong);
}

html[data-theme="dark"] .accent-text {
  color: var(--blue);
}

html[data-theme="light"] .light-blue-heading {
  color: var(--blue);
}

.hero-headline {
  line-height: 0.95;
}

.headline-row {
  display: block;
}

.headline-word {
  opacity: 0;
  transform: translateY(24px);
  animation: headline-fade-up 620ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--word-delay, 0ms);
}

.headline-intro {
  margin-bottom: 0.22em;
  color: var(--subheading);
  font-size: 0.43em;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.headline-intro .headline-word {
  display: inline-block;
}

.headline-blue {
  color: var(--blue-strong);
}

.headline-gold {
  color: #d97706;
}

html[data-theme="light"] .headline-gold {
  color: var(--yellow);
}

html[data-theme="dark"] .headline-intro {
  color: #cbd5e1;
}

html[data-theme="dark"] .headline-blue {
  color: var(--blue);
}

html[data-theme="dark"] .headline-gold {
  color: var(--yellow);
}

@keyframes headline-fade-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lead {
  max-width: 700px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
}

.hero-actions,
.section-actions,
.card-actions,
.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.hero-actions {
  margin-top: 32px;
}

.hero-visual {
  position: relative;
  min-height: 420px;
}

.visual-board {
  position: absolute;
  inset: 34px 12px 22px 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 36px;
  background: var(--surface);
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}

.visual-board::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 56px;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  content: "";
}

.visual-dots {
  position: absolute;
  z-index: 1;
  top: 23px;
  left: 24px;
  display: flex;
  gap: 8px;
}

.visual-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
}

.visual-dots span:nth-child(2) {
  background: var(--yellow);
}

.visual-dots span:nth-child(3) {
  background: var(--black);
}

html[data-theme="dark"] .visual-dots span:nth-child(3) {
  background: var(--white);
}

.visual-content {
  position: absolute;
  inset: 92px 36px 36px;
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 18px;
}

.visual-column {
  display: grid;
  align-content: start;
  gap: 13px;
}

.visual-line,
.visual-card,
.visual-chart {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
}

.visual-line {
  height: 13px;
  border: 0;
  background: var(--text);
  opacity: 0.78;
}

.visual-line.short {
  width: 64%;
  background: var(--blue);
  opacity: 1;
}

.visual-card {
  min-height: 104px;
  padding: 18px;
}

.visual-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--blue-strong);
  font-size: 1.4rem;
}

html[data-theme="dark"] .visual-card strong {
  color: var(--blue);
}

.visual-card span {
  color: var(--muted);
  font-size: 0.78rem;
}

.visual-chart {
  position: relative;
  min-height: 205px;
  border-color: var(--line);
  background: #1e293b;
}

.visual-chart::before,
.visual-chart::after {
  position: absolute;
  bottom: 26px;
  width: 26%;
  border-radius: 10px 10px 4px 4px;
  content: "";
}

.visual-chart::before {
  left: 18%;
  height: 44%;
  background: var(--blue);
}

.visual-chart::after {
  right: 18%;
  height: 68%;
  background: var(--yellow);
}

.floating-note {
  position: absolute;
  z-index: 2;
  right: -2px;
  bottom: 16px;
  max-width: 195px;
  padding: 17px 18px;
  border-radius: 18px;
  background: var(--yellow);
  color: var(--black);
  font-size: 0.86rem;
  font-weight: 800;
  box-shadow: var(--shadow-soft);
  transform: rotate(-3deg);
}

.section {
  padding-block: clamp(74px, 9vw, 120px);
}

.section-alt {
  border-block: 1px solid var(--line);
  background: var(--surface-alt);
}

.section-alt:nth-of-type(even) {
  background: var(--surface-subtle);
}

.section-head {
  display: grid;
  max-width: 780px;
  margin-bottom: 42px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head.center .eyebrow,
.section-head.center .lead {
  margin-inline: auto;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 430px;
  align-items: end;
  grid-template-columns: 1fr auto;
  gap: 44px;
  padding-block: 96px 72px;
}

.page-hero h1 {
  max-width: 850px;
  font-size: clamp(2.7rem, 5vw, 4.7rem);
}

.page-mark {
  display: grid;
  width: 130px;
  height: 130px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 30px;
  background: var(--yellow);
  color: var(--black);
  font-size: 3rem;
  font-weight: 800;
  box-shadow: var(--shadow-soft);
  transform: rotate(4deg);
}

.services-page .page-hero-inner {
  min-height: 470px;
  align-items: center;
}

.service-scene {
  position: relative;
  width: clamp(330px, 35vw, 440px);
  height: 330px;
  isolation: isolate;
}

.service-scene-halo {
  position: absolute;
  z-index: -1;
  inset: 28px 16px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 44% 56% 48% 52%;
  background:
    radial-gradient(circle at 28% 34%, rgba(59, 130, 246, 0.18), transparent 44%),
    radial-gradient(circle at 76% 66%, rgba(251, 191, 36, 0.18), transparent 42%),
    var(--surface);
  box-shadow: var(--shadow-soft);
}

.service-person {
  position: absolute;
  bottom: 22px;
  width: 58%;
  height: 86%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 18px 20px rgba(15, 23, 42, 0.12)) saturate(1.18);
  will-change: transform;
}

.service-consultant {
  z-index: 2;
  left: 0;
  animation: service-person-left 5.2s ease-in-out infinite;
}

.service-client {
  z-index: 1;
  right: -2px;
  width: 54%;
  animation: service-person-right 5.8s ease-in-out infinite;
}

.service-scene-note {
  position: absolute;
  z-index: 3;
  right: 24px;
  bottom: 12px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--yellow);
  color: var(--black);
  font-size: 0.75rem;
  font-weight: 800;
  box-shadow: var(--shadow-soft);
  animation: service-note 4.4s ease-in-out infinite;
}

@keyframes service-person-left {
  50% { transform: translate3d(0, -10px, 0) rotate(-1deg); }
}

@keyframes service-person-right {
  50% { transform: translate3d(0, -7px, 0) rotate(1deg); }
}

@keyframes service-note {
  50% { transform: translate3d(0, -5px, 0); }
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 20px;
}

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

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

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

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

html[data-theme="light"] .card:hover {
  border-color: #bfdbfe;
  box-shadow: var(--shadow-hover);
  transform: translateY(-6px);
}

.feature-card,
.value-card,
.contact-card {
  padding: 26px;
}

.icon-box {
  display: inline-grid;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  place-items: center;
  border: 1px solid #bfdbfe;
  border-radius: 14px;
  background: var(--blue-strong);
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
}

.icon-box.yellow {
  border-color: #fde68a;
  background: var(--yellow);
  color: var(--black);
}

.feature-card p,
.value-card p,
.contact-card p,
.service-card p,
.testimonial-card p,
.audience-card p,
.class-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.stat-card {
  padding: 28px;
  border-top: 4px solid var(--blue);
}

.stat-card:nth-child(2) {
  border-top-color: var(--yellow);
}

.stat-value {
  display: block;
  margin-bottom: 7px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
}

.stat-label {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-stats {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  margin-top: 38px;
  padding-top: 30px;
  border-top: 1px solid #e2e8f0;
}

.stat-item {
  min-width: 0;
  padding: 0 32px;
}

.stat-item:first-child {
  padding-left: 0;
}

.stat-item:not(:last-child) {
  border-right: 1px solid #e2e8f0;
}

.rolling-number {
  display: flex;
  height: 68px;
  align-items: center;
  flex-wrap: nowrap;
  overflow: hidden;
  color: #0f172a;
  font-size: clamp(48px, 4.5vw, 70px);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.045em;
  line-height: 1;
  white-space: nowrap;
}

.rolling-number.blue {
  color: var(--blue-strong);
}

.rolling-number.gold {
  color: #d97706;
}

html[data-theme="light"] .rolling-number.gold {
  color: var(--yellow);
}

.digit-window {
  position: relative;
  display: inline-block;
  width: 0.64em;
  height: 1em;
  overflow: hidden;
}

.digit-strip {
  display: flex;
  flex-direction: column;
  transform: translateY(0);
  will-change: transform;
}

.digit-strip span {
  display: flex;
  width: 0.64em;
  height: 1em;
  flex: 0 0 1em;
  align-items: center;
  justify-content: center;
}

.number-separator,
.number-suffix {
  display: inline-flex;
  height: 1em;
  align-items: center;
}

.number-separator {
  width: 0.32em;
  justify-content: center;
}

.number-suffix {
  margin-left: 0.02em;
}

.hero-stats .stat-label {
  display: block;
  margin-top: 12px;
  color: #475569;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 600;
}

html[data-theme="dark"] .hero-stats {
  border-top-color: var(--line-strong);
}

html[data-theme="dark"] .stat-item:not(:last-child) {
  border-right-color: var(--line-strong);
}

html[data-theme="dark"] .rolling-number {
  color: var(--text);
}

html[data-theme="dark"] .rolling-number.blue {
  color: var(--blue);
}

html[data-theme="dark"] .rolling-number.gold {
  color: var(--yellow);
}

html[data-theme="dark"] .hero-stats .stat-label {
  color: var(--muted);
}

@media (max-width: 768px) {
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 32px;
  }

  .stat-item,
  .stat-item:first-child {
    padding: 22px 0;
  }

  .stat-item:first-child {
    padding-top: 0;
  }

  .stat-item:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid #e2e8f0;
  }

  html[data-theme="dark"] .stat-item:not(:last-child) {
    border-bottom-color: var(--line-strong);
  }

  .rolling-number {
    height: 58px;
    font-size: clamp(44px, 13vw, 58px);
  }
}

.audience-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.audience-pill {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  font-size: 0.9rem;
  font-weight: 700;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.audience-card {
  overflow: hidden;
}

.audience-figure {
  display: grid;
  min-height: 240px;
  place-items: end center;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(145deg, var(--blue-soft), var(--yellow-soft));
}

.audience-figure img {
  max-height: 230px;
  object-fit: contain;
}

.audience-copy {
  padding: 24px;
}

.split-panel {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  gap: clamp(34px, 7vw, 90px);
}

.quote-panel {
  padding: clamp(28px, 5vw, 54px);
  border-radius: var(--radius-lg);
  background: var(--black);
  color: var(--white);
  box-shadow: var(--shadow);
}

.quote-panel .eyebrow {
  color: var(--blue);
}

html[data-theme="light"] .experience-main {
  color: var(--white);
}

html[data-theme="light"] .experience-date {
  color: var(--blue);
}

.quote-panel p {
  color: rgba(255, 255, 255, 0.74);
}

.check-list,
.detail-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.detail-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before,
.detail-list li::before {
  position: absolute;
  top: 2px;
  left: 0;
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 7px;
  background: var(--yellow);
  color: var(--black);
  content: "✓";
  font-size: 0.75rem;
  font-weight: 900;
}

.services-catalog {
  padding-block: clamp(56px, 6vw, 76px) clamp(72px, 8vw, 96px);
}

.service-controls {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(30px, 5vw, 64px);
  margin-bottom: 24px;
}

.service-controls .eyebrow {
  margin-bottom: 12px;
}

.service-controls h2 {
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 3vw, 2.55rem);
}

.service-controls p {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.service-search {
  display: grid;
  width: 100%;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 800;
}

.service-search-field {
  display: flex;
  min-height: 52px;
  align-items: center;
  gap: 10px;
  padding-inline: 16px;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background: var(--surface);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.service-search-field:focus-within {
  border-color: var(--blue-strong);
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.14);
}

.service-search-field > span {
  color: var(--blue-strong);
  font-size: 1.5rem;
  line-height: 1;
}

.service-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
}

.service-search input::placeholder {
  color: var(--muted);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: clamp(48px, 5vw, 60px);
  gap: 10px;
  overflow: visible;
  padding: 0;
}

.filter-button {
  padding: 10px 15px;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  background: #fff;
  color: #475569;
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.3;
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.filter-button:hover {
  border-color: #7dd3fc;
  background: var(--blue-soft);
  color: var(--blue-strong);
  transform: translateY(-1px);
}

.filter-button.is-active {
  border-color: var(--blue-strong);
  background: var(--blue-strong);
  color: #fff;
}

.filter-button.is-active:hover {
  border-color: var(--blue-hover);
  background: var(--blue-hover);
  color: #fff;
}

html[data-theme="dark"] .filter-button {
  border-color: var(--line-strong);
  background: var(--surface);
  color: var(--muted);
}

html[data-theme="dark"] .filter-button:hover {
  border-color: var(--blue);
  background: var(--blue-soft);
  color: var(--blue);
}

html[data-theme="dark"] .filter-button.is-active,
html[data-theme="dark"] .filter-button.is-active:hover {
  border-color: var(--blue-strong);
  background: var(--blue-strong);
  color: #fff;
}

.service-list-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.service-list-head h2,
.service-list-head p {
  margin-bottom: 0;
}

.service-list-head p {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.service-results-head {
  align-items: center;
}

.service-results-head h2 {
  font-size: clamp(1.55rem, 2.5vw, 2.15rem);
  letter-spacing: -0.035em;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 22px;
}

.service-card {
  position: relative;
  display: flex;
  height: 100%;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  padding: 24px;
  border: 1px solid #e2e8f0;
  border-top: 3px solid var(--blue-strong);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: 0 20px 60px rgba(2, 6, 23, 0.08);
  transition: transform 250ms ease, box-shadow 250ms ease, border-color 250ms ease;
}

.service-card::before {
  display: none;
}

.service-card:hover {
  border-color: #bfdbfe;
  border-top-color: var(--blue-strong);
  box-shadow: var(--shadow-hover);
  transform: translateY(-6px);
}

.service-card h3 {
  margin-bottom: 16px;
  color: #0f172a;
  font-size: clamp(1.25rem, 1.7vw, 1.48rem);
  font-weight: 700;
  line-height: 1.35;
}

.service-card h3::after {
  display: block;
  width: 54px;
  height: 3px;
  margin-top: 11px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--yellow));
  content: "";
}

html[data-theme="dark"] .service-card h3 {
  color: var(--text);
}

html[data-theme="dark"] .service-card {
  border-color: var(--line-strong);
  border-top-color: var(--blue);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.service-summary {
  flex: 1;
  margin-bottom: 20px;
  color: #64748b;
  font-size: clamp(0.94rem, 1.15vw, 1.02rem);
  line-height: 1.65;
}

html[data-theme="dark"] .service-summary {
  color: var(--muted);
}

.service-card-footer {
  display: grid;
  gap: 18px;
  margin-top: auto;
}

.service-card-footer .btn {
  width: 100%;
}

.service-button,
.service-card-cta {
  width: 100%;
  min-height: 48px;
  margin-top: 6px;
  border-color: #111827;
  border-radius: 14px;
  background: #111827;
  color: #fff;
  font-weight: 700;
  box-shadow: none;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.service-button:hover,
.service-card-cta:hover {
  border-color: var(--black);
  background: var(--black);
  color: #fff;
  transform: translateY(-2px);
}

.service-card-cta:active {
  transform: translateY(-1px);
}

.service-card:not([hidden]) {
  animation: service-card-fade-up 420ms cubic-bezier(0.22, 1, 0.36, 1) backwards;
  animation-delay: var(--card-delay, 0ms);
}

@keyframes service-card-fade-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

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

.services-page .modal-actions .btn-primary {
  border-color: var(--blue-strong);
  border-radius: var(--radius-sm);
  background: var(--blue-strong);
  color: #fff;
  box-shadow: 0 12px 28px color-mix(in srgb, var(--blue) 28%, transparent);
}

.services-page .modal-actions .btn-primary:hover {
  border-color: var(--blue-hover);
  background: var(--blue-hover);
  color: #fff;
  box-shadow: 0 15px 32px rgba(37, 99, 235, 0.2);
}

.price-row {
  display: grid;
  margin-block: 22px 18px;
  gap: 2px;
}

.price-label {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
}

.price-value {
  font-size: 1.05rem;
  font-weight: 800;
}

.service-card[hidden],
.testimonial-card[hidden] {
  display: none;
}

.ethics-section {
  padding-block: clamp(58px, 7vw, 84px);
}

.ethics-panel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 24px;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid #bfdbfe;
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.ethics-mark {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 18px;
  background: var(--yellow);
  color: var(--black);
  font-size: 1.5rem;
  font-weight: 900;
}

.ethics-panel h2 {
  margin-bottom: 12px;
}

.ethics-panel p {
  max-width: 900px;
  margin-bottom: 8px;
  color: var(--muted);
}

.modal-grid-details {
  margin-top: 12px;
}

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

.class-card {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 5vw, 46px);
}

.class-card::after {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--yellow);
  content: "";
  opacity: 0.16;
}

.class-card .price-value {
  font-size: 1.45rem;
}

.class-points {
  display: grid;
  margin: 22px 0 28px;
  gap: 10px;
  color: var(--muted);
}

.class-points span::before {
  margin-right: 8px;
  color: var(--blue-strong);
  content: "•";
  font-weight: 900;
}

.pricing-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 26px;
  padding: 20px;
  border: 1px solid #fde68a;
  border-radius: var(--radius-sm);
  background: var(--yellow-soft);
}

.pricing-note strong {
  color: var(--text);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.testimonial-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 25px;
}

.testimonial-card p {
  flex: 1;
  margin-bottom: 22px;
}

.testimonial-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.testimonial-name {
  display: block;
  font-weight: 800;
}

.rating {
  color: #b57500;
  font-size: 0.86rem;
  font-weight: 800;
  white-space: nowrap;
}

html[data-theme="dark"] .rating {
  color: var(--yellow);
}

.testimonial-foot {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.testimonial-foot span {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
}

.testimonial-marquee,
.tools-marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.testimonial-track,
.tool-track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.testimonial-track {
  animation: testimonial-slide 72s linear infinite;
}

.testimonial-set,
.tool-set {
  display: flex;
  flex: 0 0 auto;
  align-items: stretch;
  gap: 20px;
  padding-right: 20px;
}

.testimonial-marquee .testimonial-card {
  width: min(380px, calc(100vw - 54px));
  flex: 0 0 auto;
}

.testimonial-marquee:hover .testimonial-track,
.testimonial-marquee:focus-within .testimonial-track,
.tools-marquee:hover .tool-track,
.tools-marquee:focus-within .tool-track {
  animation-play-state: paused;
}

.tools-marquee {
  display: grid;
  gap: 16px;
}

.tool-marquee-row {
  overflow: hidden;
}

.tool-track {
  animation: tool-slide 42s linear infinite;
}

.tool-marquee-row.reverse .tool-track {
  animation-direction: reverse;
  animation-duration: 48s;
}

.tool-set {
  gap: 14px;
  padding-right: 14px;
}

.tool-card {
  display: grid;
  width: 154px;
  min-height: 104px;
  flex: 0 0 auto;
  place-items: center;
  gap: 9px;
  padding: 16px;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: #fff;
  color: #000;
  box-shadow: 0 12px 34px rgba(2, 6, 23, 0.06);
  text-align: center;
}

.tool-card img {
  width: auto;
  max-width: 104px;
  height: 42px;
  object-fit: contain;
}

.tool-card span {
  font-size: 0.76rem;
  font-weight: 800;
}

@keyframes testimonial-slide {
  to { transform: translate3d(-50%, 0, 0); }
}

@keyframes tool-slide {
  to { transform: translate3d(-50%, 0, 0); }
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 28px;
}

.contact-stack {
  display: grid;
  gap: 14px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-card .icon-box {
  flex: 0 0 auto;
  margin: 0;
}

.contact-card h3 {
  margin-bottom: 4px;
}

.contact-card a {
  color: var(--blue-strong);
  font-weight: 800;
}

html[data-theme="dark"] .contact-card a {
  color: var(--blue);
}

.form-card {
  padding: clamp(25px, 5vw, 42px);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 0.86rem;
  font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: var(--surface-alt);
  padding: 13px 14px;
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: clamp(30px, 5vw, 54px);
  border-radius: var(--radius-lg);
  background: var(--blue-strong);
  color: #fff;
  box-shadow: var(--shadow);
}

.cta-panel h2 {
  max-width: 720px;
  margin-bottom: 10px;
}

.cta-panel p {
  max-width: 680px;
  margin-bottom: 0;
  color: #fff;
}

.blue-section,
.blue-section h1,
.blue-section h2,
.blue-section h3,
.blue-section p,
.blue-section a,
.blue-section button,
.blue-section span,
.blue-section i,
.blue-section svg {
  color: #fff;
}

.blue-section svg {
  fill: currentColor;
  stroke: currentColor;
}

.services-page .cta-panel .btn {
  min-width: 190px;
  border-color: var(--yellow);
  border-radius: var(--radius-sm);
  background: var(--yellow);
  color: #111827;
  box-shadow: 0 12px 28px color-mix(in srgb, var(--black) 24%, transparent);
}

.services-page .cta-panel .btn:hover {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
  box-shadow: 0 16px 34px color-mix(in srgb, var(--black) 36%, transparent);
}

html[data-theme="dark"] .services-page .cta-panel .btn:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--black);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--surface-alt);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr;
  gap: 50px;
  padding-block: 64px 42px;
}

.footer-brand p {
  max-width: 420px;
  margin-top: 18px;
  color: var(--muted);
}

.footer-heading {
  display: block;
  margin-bottom: 15px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a {
  width: fit-content;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
}

.floating-whatsapp {
  position: fixed;
  z-index: 850;
  right: 20px;
  bottom: 20px;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  gap: 8px;
  padding: 13px 17px;
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  background: var(--blue-strong);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 800;
  box-shadow: 0 14px 32px rgba(37, 99, 235, 0.22);
}

.floating-whatsapp:hover {
  background: var(--blue-hover);
  color: #fff;
}

.modal-backdrop {
  position: fixed;
  z-index: 2000;
  inset: 0;
  display: grid;
  overflow-y: auto;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.72);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.modal-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  position: relative;
  width: min(760px, 100%);
  max-height: min(86vh, 860px);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: 0 30px 90px rgba(2, 6, 23, 0.18);
  transform: translateY(18px) scale(0.98);
  transition: transform 180ms ease;
}

.modal-backdrop.is-open .modal-card {
  transform: translateY(0) scale(1);
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 26px;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.modal-header h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}

.modal-close {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface-alt);
  font-size: 1.4rem;
  line-height: 1;
}

.modal-scroll {
  max-height: calc(min(86vh, 860px) - 91px);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 26px;
}

.modal-intro {
  color: var(--muted);
  font-size: 1.02rem;
}

.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 26px;
}

.modal-section {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface-alt);
}

.modal-section.full {
  grid-column: 1 / -1;
}

.modal-section h3 {
  font-size: 1rem;
}

.modal-section p,
.modal-section ol,
.modal-section ul {
  margin-bottom: 0;
  color: var(--muted);
}

.modal-section ol,
.modal-section ul {
  padding-left: 20px;
}

.modal-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.modal-meta div {
  padding: 16px;
  border-radius: 14px;
  background: var(--yellow-soft);
}

.modal-meta span,
.modal-meta strong {
  display: block;
}

.modal-meta span {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
}

.modal-meta strong {
  margin-top: 3px;
}

.modal-actions {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.empty-state {
  grid-column: 1 / -1;
  padding: 32px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius-md);
  color: var(--muted);
  text-align: center;
}

.service-empty-state {
  padding: 34px 24px;
  border-color: #cbd5e1;
  background: var(--surface-subtle);
  color: #475569;
  line-height: 1.65;
}

html[data-theme="dark"] .service-empty-state {
  border-color: var(--line-strong);
  background: var(--surface-alt);
  color: var(--muted);
}

@media (max-width: 1040px) {
  .desktop-nav,
  .nav-whatsapp {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
  }

  .mobile-drawer {
    position: fixed;
    z-index: 999;
    top: var(--header-h);
    right: 0;
    left: 0;
    display: grid;
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
    gap: 12px;
    padding: 18px 20px 24px;
    border-bottom: 1px solid var(--line);
    background: var(--bg);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-16px);
    transition: opacity 170ms ease, transform 170ms ease;
  }

  .mobile-drawer.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-drawer .nav-link {
    padding: 13px 14px;
  }

  .mobile-drawer .nav-link::after {
    display: none;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr 0.8fr;
  }

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

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

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

@media (max-width: 760px) {
  :root {
    --header-h: 70px;
  }

  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .brand-logo {
    width: 44px;
    height: 44px;
  }

  .brand-subtitle {
    display: none;
  }

  .theme-toggle,
  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-block: 58px 38px;
  }

  h1 {
    font-size: clamp(2.45rem, 13vw, 4rem);
  }

  .hero-visual {
    min-height: 330px;
  }

  .visual-board {
    inset: 20px 8px 16px;
  }

  .visual-content {
    inset: 82px 24px 28px;
  }

  .page-hero-inner {
    min-height: 380px;
    grid-template-columns: 1fr;
    gap: 20px;
    padding-block: 70px 56px;
  }

  .page-mark {
    display: none;
  }

  .services-page .page-hero-inner {
    min-height: auto;
  }

  .service-scene {
    width: min(100%, 390px);
    height: 285px;
    margin-inline: auto;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .stats-grid,
  .audience-grid,
  .services-grid,
  .class-grid,
  .testimonial-grid,
  .contact-grid,
  .split-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-list-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .service-card {
    padding: 21px;
  }

  .services-catalog {
    padding-block: 52px 72px;
  }

  .ethics-panel {
    grid-template-columns: 1fr;
  }

  .section {
    padding-block: 68px;
  }

  .section-head {
    margin-bottom: 32px;
  }

  .hero-actions,
  .section-actions,
  .card-actions,
  .modal-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .btn,
  .section-actions .btn,
  .card-actions .btn,
  .modal-actions .btn {
    width: 100%;
  }

  .footer-grid {
    gap: 30px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .modal-backdrop {
    padding: 12px;
  }

  .modal-card {
    width: 100%;
    max-height: calc(100dvh - 24px);
    border-radius: 20px;
  }

  .modal-header {
    padding: 19px 18px;
  }

  .modal-scroll {
    max-height: calc(100dvh - 103px);
    padding: 20px 18px 24px;
  }

  .modal-grid,
  .modal-meta,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .modal-section.full,
  .form-field.full {
    grid-column: auto;
  }

  .cta-panel {
    align-items: stretch;
    flex-direction: column;
  }

  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
    width: 50px;
    height: 50px;
    justify-content: center;
    padding: 0;
  }

  .floating-whatsapp span:last-child {
    display: none;
  }
}

@media (max-width: 430px) {
  .brand-copy {
    display: none;
  }

  .hero-visual {
    min-height: 300px;
  }

  .visual-content {
    grid-template-columns: 1fr 0.7fr;
    gap: 10px;
  }

  .floating-note {
    right: 0;
    max-width: 160px;
    font-size: 0.74rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .testimonial-marquee,
  .tools-marquee,
  .tool-marquee-row {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .testimonial-track,
  .tool-track {
    animation: none !important;
  }

  .service-person,
  .service-scene-note {
    animation: none !important;
  }

  .headline-word {
    opacity: 1;
    transform: none;
    animation: none !important;
  }

  .service-card {
    animation: none !important;
  }
}
