:root {
  --primary: #ff8400;
  --secondary: #7f0b7a;
  --sky: #00adef;
  --yellow: #fef100;
  --dark: #211f20;
  --line: #e3e6e7;
  --muted: #5b6064;
  --surface: #ffffff;
  --success: #25d366;
  --shadow: 0 20px 60px rgba(33, 31, 32, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--dark);
  background:
    radial-gradient(circle at top left, rgba(0, 173, 239, 0.14), transparent 28%),
    linear-gradient(180deg, #fff 0%, #fff7f0 42%, #ffffff 100%);
  font-family: "Roboto", system-ui, sans-serif;
  line-height: 1.6;
}

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

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

h1,
h2,
h3 {
  margin: 0 0 1rem;
  line-height: 1.1;
  font-family: "Roboto", system-ui, sans-serif;
}

p {
  margin: 0 0 1rem;
}

ul {
  margin: 0;
  padding: 0;
}

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(227, 230, 231, 0.9);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.brand-logo,
.footer-logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.brand-text {
  display: inline-flex;
  flex-direction: column;
  font-family: "Roboto", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-text strong {
  color: var(--primary);
}

.menu {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  list-style: none;
}

.menu > li {
  position: relative;
}

.menu a {
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  font-weight: 600;
}

.menu a:hover,
.menu a[aria-current="page"],
.menu .is-current > a {
  background: rgba(127, 11, 122, 0.08);
  color: var(--secondary);
}

.menu-item-has-children > a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.menu-item-has-children > a::after {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
}

.submenu {
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  min-width: 270px;
  padding: 0.65rem;
  list-style: none;
  border: 1px solid rgba(227, 230, 231, 0.95);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 20px 45px rgba(33, 31, 32, 0.14);
  display: none;
  z-index: 20;
}

.submenu li + li {
  margin-top: 0.2rem;
}

.submenu a {
  display: block;
  padding: 0.8rem 0.95rem;
  border-radius: 10px;
  font-size: 0.96rem;
  line-height: 1.35;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.08rem;
  padding: 0.12rem;
  border: 1px solid rgba(227, 230, 231, 0.95);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
}

.language-switcher a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  min-height: 34px;
  padding: 0.18rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1;
}

.language-switcher img {
  width: 22px;
  height: 16px;
  display: block;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(33, 31, 32, 0.12);
}

.language-switcher a:hover,
.language-switcher a[aria-current="true"] {
  background: rgba(127, 11, 122, 0.08);
  color: var(--secondary);
}

.menu-item-has-children:hover .submenu,
.menu-item-has-children:focus-within .submenu {
  display: block;
}

.nav-toggle {
  display: none;
  padding: 0.8rem 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  font: inherit;
  font-weight: 700;
}

.nav-toggle__icon {
  position: relative;
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #2f63e0;
}

.nav-toggle__icon::before,
.nav-toggle__icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #2f63e0;
}

.nav-toggle__icon::before {
  top: -6px;
}

.nav-toggle__icon::after {
  top: 6px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.85rem 1.4rem;
  border: 0;
  border-radius: 16px;
  cursor: pointer;
  font-family: "Roboto", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--yellow), #ffe377);
  color: var(--dark);
  box-shadow: 0 14px 30px rgba(254, 241, 0, 0.22);
}

.btn-secondary {
  background: var(--primary);
  color: #fff;
}

.btn-whatsapp {
  background: var(--success);
  color: #fff;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.28);
}

.btn-outline-light {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: transparent;
}

.robocopa-hero .split-layout {
  align-items: center;
}

.robocopa-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.5rem 0 1.4rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(127, 11, 122, 0.08);
  color: var(--secondary);
  font-size: 0.95rem;
  font-weight: 700;
}

.robocopa-hero-card {
  padding: 0.8rem;
}

.robocopa-banner,
.robocopa-logo,
.robocopa-mode-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
}

.robocopa-logo {
  max-width: 340px;
  margin: 0 auto;
}

.robocopa-mode-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.robocopa-event-details {
  margin-top: 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border);
}

.robocopa-event-details h3 {
  margin-bottom: 0.8rem;
}

.robocopa-mode-image {
  margin-bottom: 0.2rem;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.robocopa-edition-video {
  display: block;
  width: min(100%, 360px);
  aspect-ratio: 9 / 16;
  margin: 1rem auto 1.2rem;
  border: 0;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(20, 12, 21, 0.1), rgba(20, 12, 21, 0.35)),
    url("/assets/images/robocopa/banner.webp") center / cover no-repeat;
}

.robocopa-next-awards {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.2rem;
}

.robocopa-next-awards h4 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.robocopa-next-awards p {
  margin: 0;
}

.robocopa-kit-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.robocopa-next-kit-image {
  max-width: 340px;
}

@media (max-width: 780px) {
  .robocopa-mode-grid {
    grid-template-columns: 1fr;
  }
}

.hero,
.dark-panel {
  color: #fff;
  background:
    radial-gradient(circle at top right, rgba(254, 241, 0, 0.15), transparent 22%),
    linear-gradient(120deg, #21071f 0%, #7f0b7a 40%, #ff8400 76%, #00adef 100%);
}

.hero,
.section,
.page-hero,
.article-page {
  padding: 4.5rem 0;
}

.hero-grid,
.split-layout,
.contact-grid,
.footer-grid,
.final-cta-box {
  display: grid;
  gap: 1.5rem;
}

.hero-grid {
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 2rem;
}

.split-layout {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.split-layout.reverse {
  grid-template-columns: 0.85fr 1.15fr;
}

.hero-copy h1,
.page-hero h1,
.article-wrap h1 {
  font-size: clamp(2rem, 4.2vw, 4.2rem);
}

.section-heading h2 {
  font-size: clamp(1.7rem, 3vw, 3.1rem);
}

.split-layout h2 {
  font-size: clamp(1.55rem, 2.6vw, 2.75rem);
}

.hero-lead,
.page-intro {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  max-width: 62ch;
}

.hero-copy {
  max-width: 680px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--secondary);
  font-family: "Roboto", system-ui, sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow.inverse {
  color: var(--yellow);
}

.cta-row,
.cta-column,
.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.cta-column {
  flex-direction: column;
  justify-content: center;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero-metrics div,
.stat-line {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-metrics strong,
.stat-line strong {
  display: block;
  margin-bottom: 0.4rem;
  font-family: "Roboto", system-ui, sans-serif;
}

.card-surface,
.feature-card,
.course-card,
.contact-card,
.blog-card,
.faq-list details,
.map-card,
.legal-content,
.spotlight,
.stat-block {
  background: var(--surface);
  color: var(--dark);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.card-surface,
.spotlight,
.stat-block,
.feature-card,
.course-card,
.contact-card,
.legal-content,
.faq-list details {
  padding: 1.4rem;
}

.hero-visual,
.image-panel,
.blog-card {
  overflow: hidden;
}

.hero-visual {
  width: 100%;
  max-width: 420px;
  justify-self: end;
  display: flex;
  flex-direction: column;
}

.hero-visual img,
.image-panel img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.hero-video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  display: block;
  max-height: 640px;
  border: 0;
  background: #140c15;
}

.lite-youtube {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  padding: 0;
  appearance: none;
  background:
    linear-gradient(180deg, rgba(20, 12, 21, 0.08), rgba(20, 12, 21, 0.3)),
    url("/assets/images/banner.webp") center / cover no-repeat;
}

.lite-youtube::after {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 1;
  color: #fff;
  font-weight: 900;
  text-align: center;
  text-shadow: 0 2px 12px rgba(20, 12, 21, 0.52);
  content: "Assistir video";
}

.lite-youtube__play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 132, 0, 0.96);
  box-shadow: 0 18px 45px rgba(20, 12, 21, 0.28);
  transform: translate(-50%, -50%);
}

.lite-youtube__play::before {
  position: absolute;
  top: 50%;
  left: 54%;
  width: 0;
  height: 0;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 24px solid #fff;
  content: "";
  transform: translate(-50%, -50%);
}

.hero-credit {
  margin: 0;
  padding: 0.55rem 0.85rem 0.9rem;
  text-align: center;
}

.hero-credit a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0.15rem 0.4rem;
  border-radius: 999px;
  color: rgba(127, 11, 122, 0.82);
  font-size: 0.92rem;
  text-decoration: underline;
  text-decoration-color: rgba(255, 132, 0, 0.7);
}

.hero-credit a:hover {
  color: #ff8400;
  text-decoration-color: rgba(127, 11, 122, 0.82);
}

@media (max-width: 1180px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
    align-items: start;
  }

  .hero-visual {
    max-width: 390px;
  }

  .hero-video {
    max-height: 580px;
  }
}

.visual-badge {
  margin: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 18px;
  background: var(--dark);
  color: #fff;
  font-family: "Roboto", system-ui, sans-serif;
  font-weight: 700;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 2rem;
  text-align: center;
}

.section-heading.narrow {
  max-width: 680px;
}

.section-accent {
  background: linear-gradient(180deg, rgba(0, 173, 239, 0.06), rgba(255, 132, 0, 0.06));
}

.feature-grid,
.course-grid,
.blog-grid,
.faq-list,
.contact-grid {
  display: grid;
  gap: 1rem;
}

.feature-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 280px));
  justify-content: center;
}

.about-future-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 360px));
}

.about-essence-list {
  display: grid;
  gap: 1rem;
  max-width: 980px;
  margin: 0 auto;
}

.about-essence-list .feature-card {
  width: 100%;
}

.about-essence-final {
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
}

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

.unit-card {
  overflow-wrap: anywhere;
}

.unit-links {
  margin-top: 1rem;
}

.unit-links a {
  color: var(--secondary);
  font-weight: 700;
}

.robocopa-agenda-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
}

.course-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.course-choice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 360px));
  justify-content: center;
  gap: 1rem;
}

.course-choice-card {
  min-height: 100%;
}

.course-choice-card--cta {
  background:
    radial-gradient(circle at top right, rgba(37, 211, 102, 0.14), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f3fff7 100%);
  border-color: rgba(37, 211, 102, 0.22);
}

.course-proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.course-proof-strip span {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(255, 132, 0, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--dark);
  font-weight: 700;
}

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

.home-updates-section {
  padding-top: 2.1rem;
  padding-bottom: 2.6rem;
  background:
    radial-gradient(circle at 15% 20%, rgba(0, 173, 239, 0.12), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 246, 236, 0.92));
}

.updates-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 360px);
  gap: 1rem;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
  padding: 0.25rem 0.25rem 0.85rem;
}

.updates-carousel::-webkit-scrollbar {
  display: none;
}

.update-card {
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 350px;
  padding: 1.35rem;
  border: 1px solid rgba(127, 11, 122, 0.13);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.update-card > img {
  width: 100%;
  height: 120px;
  object-fit: contain;
  padding: 0.85rem;
  margin-bottom: 0.8rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(0, 173, 239, 0.08), rgba(255, 132, 0, 0.08));
}

.update-card h3 {
  margin: 0.85rem 0 0.65rem;
  font-size: 1.25rem;
}

.update-card p {
  flex: 1;
  color: var(--muted);
}

.updates-dots {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 0.35rem;
}

.updates-dots button {
  width: 0.68rem;
  height: 0.68rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(127, 11, 122, 0.24);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, width 0.2s ease;
}

.updates-dots button.is-active,
.updates-dots button[aria-current="true"] {
  width: 1.6rem;
  background: var(--secondary);
}

.updates-dots button:focus-visible {
  outline: 3px solid rgba(0, 173, 239, 0.45);
  outline-offset: 3px;
}

.solution-card {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: 1.45rem;
  background: linear-gradient(180deg, #ffffff 0%, #fff8f1 100%);
  border: 1px solid rgba(255, 132, 0, 0.16);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.solution-card h3,
.service-card h3 {
  margin-bottom: 0;
}

.solution-card p,
.service-card p {
  color: var(--muted);
}

.solution-card .btn,
.service-card .btn {
  margin-top: auto;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 360px));
  justify-content: center;
  gap: 1rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.45rem;
  background: #fff;
  border: 1px solid rgba(227, 230, 231, 0.9);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.play-format-grid {
  grid-template-columns: repeat(3, minmax(280px, 1fr));
  justify-content: center;
  gap: 1.25rem;
}

.course-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 98px;
  margin-bottom: 0.5rem;
}

.course-logo {
  display: block;
  width: 100%;
  max-width: 280px;
  height: auto;
  max-height: 88px;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(10, 32, 63, 0.14);
  margin-inline: auto;
  object-fit: contain;
}

.course-logo-badge {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 0.7rem 1rem;
  border-radius: 18px;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, #ff8400 0%, #7f0b7a 100%);
  box-shadow: 0 16px 34px rgba(127, 11, 122, 0.18);
}

.course-card .course-logo-wrap + p {
  margin-top: 0.25rem;
}

.course-logo-badge--ai {
  background: linear-gradient(135deg, #00adef 0%, #7f0b7a 100%);
}

.course-logo-badge--print {
  background: linear-gradient(135deg, #ff8400 0%, #fef100 100%);
  color: var(--dark);
}

.course-logo-badge--electro {
  background: linear-gradient(135deg, #11254d 0%, #00adef 100%);
}

.course-logo-badge--business {
  background: linear-gradient(135deg, #7f0b7a 0%, #ff8400 100%);
}

.course-logo-badge--firstbot {
  background: linear-gradient(135deg, #ff8400 0%, #f04d00 100%);
}

.course-logo-badge--onebot {
  background: linear-gradient(135deg, #00adef 0%, #0068a8 100%);
}

.course-logo-badge--gamebot {
  background: linear-gradient(135deg, #ff5b7f 0%, #7f0b7a 100%);
}

.course-logo-badge--techbot {
  background: linear-gradient(135deg, #11254d 0%, #ff8400 100%);
}

.course-logo-badge--autobot {
  background: linear-gradient(135deg, #00a86b 0%, #00adef 100%);
}

.quick-links-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.makersmart-logo {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 24px;
  object-fit: cover;
}

.cursos-image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 24px;
  object-fit: cover;
}


.makersmart-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.makersmart-gallery img {
  width: 100%;
  border-radius: 22px;
  border: 1px solid rgba(227, 230, 231, 0.95);
  box-shadow: var(--shadow);
}

.offer-grid,
.feature-list-grid,
.pricing-grid {
  display: grid;
  gap: 1rem;
}

.offer-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.pricing-grid,
.feature-list-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

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

.makersmart-pricing-wrap {
  max-width: 1080px;
  margin: 0 auto;
}

.offer-card,
.pricing-card,
.feature-list-card {
  padding: 1.45rem;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #fff8f1 100%);
  border: 1px solid rgba(255, 132, 0, 0.16);
  box-shadow: var(--shadow);
}

.pricing-card__image {
  display: block;
  width: 100%;
  margin: 1rem 0 1.2rem;
  border-radius: 18px;
  object-fit: cover;
}

.competition-logo {
  display: block;
  width: auto;
  max-width: min(180px, 100%);
  max-height: 72px;
  margin: 0 0 1rem;
  object-fit: contain;
}

.competition-highlight {
  margin-top: 1.25rem;
  padding: 1rem 1.05rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 132, 0, 0.12), rgba(132, 0, 255, 0.08));
  border: 1px solid rgba(255, 132, 0, 0.16);
}

.competition-highlight__title {
  margin: 0 0 0.85rem;
  font-weight: 700;
}

.competition-highlight__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.competition-highlight__links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(132, 0, 255, 0.16);
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.competition-highlight__links a:hover,
.competition-highlight__links a:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 132, 0, 0.45);
  box-shadow: 0 10px 24px rgba(255, 132, 0, 0.14);
}

.competition-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 132, 0, 0.14), rgba(132, 0, 255, 0.08));
  border: 1px solid rgba(255, 132, 0, 0.2);
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.competition-link:hover,
.competition-link:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 132, 0, 0.45);
  box-shadow: 0 10px 24px rgba(255, 132, 0, 0.14);
}

.offer-card h3,
.pricing-card h3,
.feature-list-card h3 {
  margin-bottom: 0.55rem;
}

.offer-card p,
.pricing-card p,
.feature-list-card p {
  color: var(--muted);
}

.price-tag,
.time-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0.5rem 0 0;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
}

.time-tag {
  background: rgba(0, 173, 239, 0.12);
  color: #016e98;
}

.price-tag {
  background: rgba(127, 11, 122, 0.12);
  color: var(--secondary);
}

.media-card {
  overflow: hidden;
  padding: 0;
}

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

.section-note {
  max-width: 70ch;
  margin: 0 auto 2rem;
  text-align: center;
  color: var(--muted);
}

.quick-link-card {
  padding: 1.35rem;
  border-radius: 22px;
  border: 1px solid rgba(227, 230, 231, 0.95);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
}

.quick-link-card p {
  color: var(--muted);
}

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

.blog-grid {
  grid-template-columns: 1.4fr 1fr 1fr;
}

.reviews-summary {
  margin: 0 auto 1.25rem;
  max-width: 720px;
  padding: 1rem 1.2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 132, 0, 0.18);
  background: rgba(255, 132, 0, 0.08);
  text-align: center;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 420px));
  justify-content: center;
  gap: 1rem;
}

.review-card {
  display: block;
  padding: 1.4rem;
  border-radius: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  color: inherit;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.review-card:hover {
  transform: translateY(-2px);
  border-color: rgba(127, 11, 122, 0.24);
  box-shadow: 0 18px 48px rgba(33, 31, 32, 0.12);
  text-decoration: none;
}

.review-card:focus-visible {
  outline: 3px solid rgba(0, 173, 239, 0.45);
  outline-offset: 4px;
}

.review-card-loading,
.review-card-empty {
  grid-column: 1 / -1;
  text-align: center;
}

.review-card-header {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.review-card-header img {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  object-fit: cover;
  background: #f1f3f4;
}

.review-author {
  font-weight: 700;
}

.review-meta {
  color: var(--muted);
  font-size: 0.92rem;
}

.review-stars {
  margin-bottom: 0.8rem;
  color: var(--primary);
  letter-spacing: 0.12em;
}

.review-text {
  color: var(--muted);
}

.blog-card {
  display: flex;
  flex-direction: column;
  padding: 0;
}

.blog-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.blog-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.35rem;
}

.blog-card h3 {
  font-size: clamp(1.25rem, 2vw, 1.55rem);
}

.blog-card .btn {
  width: max-content;
  margin-top: auto;
}

.course-age,
.blog-tag {
  display: inline-block;
  margin-bottom: 0.8rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(127, 11, 122, 0.1);
  color: var(--secondary);
  font-family: "Roboto", system-ui, sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
}

.featured-card {
  border-color: rgba(255, 132, 0, 0.28);
}

.mini-list,
.icon-list,
.footer-list {
  list-style: none;
}

ul.step-list {
  list-style: none;
  padding-left: 0;
}

.course-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.course-video-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 173, 239, 0.24);
  background: rgba(0, 173, 239, 0.08);
  color: #005a7c;
  font-size: 0.92rem;
  font-weight: 500;
}

.course-whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(37, 211, 102, 0.34);
  background: rgba(37, 211, 102, 0.12);
  color: #137a37;
  font-size: 0.92rem;
  font-weight: 700;
}

.course-whatsapp-link:hover {
  border-color: var(--success);
  color: var(--secondary);
}

.course-video-link:hover {
  border-color: var(--sky);
  color: var(--secondary);
}

.mini-list li,
.icon-list li,
.footer-list li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.65rem;
}

.mini-list li::before,
.icon-list li::before,
.footer-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  background: var(--primary);
}

.step-list span,
.feature-card p,
.course-card p,
.legal-content p,
.contact-card p,
.blog-card p {
  color: var(--muted);
}

ul.step-list li {
  position: relative;
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  align-items: start;
  gap: 0.45rem;
  padding-left: 0;
  margin-bottom: 0.65rem;
}

.step-list li strong {
  color: inherit;
  white-space: nowrap;
}

.step-list li span {
  display: block;
  min-width: 0;
}

.dark-panel .spotlight,
.dark-panel .card-surface,
.dark-panel .stat-block {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
}

.dark-panel .step-list li {
  color: #fff;
}

.dark-panel .step-list li span,
.dark-panel .step-list li strong,
.dark-panel .spotlight .eyebrow.inverse {
  color: #fff;
}

.dark-panel .spotlight .eyebrow.inverse {
  color: var(--yellow);
}

.dark-panel .icon-list li::before {
  background: var(--yellow);
}

.map-card {
  min-height: 360px;
  padding: 0;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

.video-panel {
  padding: 0;
  overflow: hidden;
}

.video-panel iframe {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  min-height: 360px;
  border: 0;
}

.video-panel video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  min-height: 360px;
  object-fit: cover;
  border: 0;
  background: #000;
}

.video-panel1-1 iframe {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  min-height: 360px;
  border: 0;
}

.video-panel1-1 video {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  min-height: 360px;
  object-fit: cover;
  border: 0;
  background: #000;
}

.video-panel16-9 iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 360px;
  border: 0;
}

.video-panel16-9 video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 360px;
  object-fit: cover;
  border: 0;
  background: #000;
}

.faq-list details summary {
  cursor: pointer;
  font-family: "Roboto", system-ui, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  list-style: none;
}

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

.site-content-detail summary {
  cursor: pointer;
  font-weight: 800;
}

.site-content-detail pre {
  max-height: 420px;
  margin: 1rem 0 0;
  padding: 1rem;
  overflow: auto;
  border: 1px solid rgba(227, 230, 231, 0.95);
  border-radius: 16px;
  background: #f7f8f9;
  color: var(--dark);
  font-family: "Roboto", system-ui, sans-serif;
  font-size: 0.95rem;
  line-height: 1.55;
  white-space: pre-wrap;
}

.site-footer {
  padding: 2rem 0 3rem;
  background: #fff;
  border-top: 1px solid var(--line);
}

.footer-grid {
  grid-template-columns: 1.2fr 1fr 1fr;
}

.social-row a {
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-family: "Roboto", system-ui, sans-serif;
  font-weight: 600;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
}

.footer-social a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.footer-social a:hover {
  transform: translateY(-1px);
  border-color: var(--primary);
  color: var(--secondary);
}

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

.footer-sitemap {
  display: grid;
  gap: 1rem;
}

.footer-sitemap-group strong {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--dark);
  font-family: "Roboto", system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-sitemap .footer-list {
  margin: 0;
}

.footer-sitemap .footer-list li {
  margin-bottom: 0.45rem;
}

.footer-link-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
  text-align: left;
}

.footer-link-button:hover {
  color: var(--secondary);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 120;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(33, 31, 32, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 50px rgba(33, 31, 32, 0.18);
}

.cookie-banner__content p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cookie-banner__button {
  min-width: 132px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: none;
}

.cookie-modal.open {
  display: block;
}

.cookie-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(33, 31, 32, 0.56);
}

.cookie-modal__panel {
  position: relative;
  width: min(680px, calc(100% - 32px));
  margin: min(10vh, 72px) auto 0;
  padding: 1.5rem;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  overscroll-behavior: contain;
  border-radius: 28px;
  border: 1px solid rgba(227, 230, 231, 0.95);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.cookie-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.cookie-modal__eyebrow {
  margin-bottom: 0.4rem;
  color: var(--secondary);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cookie-modal__header h2 {
  margin-bottom: 0;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.cookie-modal__intro {
  margin-bottom: 1.2rem;
  color: var(--muted);
}

.cookie-modal__close {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--dark);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.cookie-option {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}

.cookie-option strong {
  display: block;
  margin-bottom: 0.2rem;
}

.cookie-option p {
  margin-bottom: 0;
  color: var(--muted);
}

.cookie-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
}

.cookie-switch input {
  width: 18px;
  height: 18px;
  accent-color: var(--success);
}

.cookie-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.privacy-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.privacy-card {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.privacy-card h3 {
  font-size: 1.2rem;
}

.privacy-note {
  margin-top: 1.5rem;
  padding: 1rem 1.2rem;
  border-radius: 18px;
  border: 1px solid rgba(37, 211, 102, 0.22);
  background: rgba(37, 211, 102, 0.08);
}

.whats-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1rem;
  border-radius: 999px;
  background: var(--success);
  color: #fff;
  font-family: "Roboto", system-ui, sans-serif;
  font-weight: 700;
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.35);
}

.whats-float img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.article-wrap {
  max-width: 860px;
}

.course-detail-hero .split-layout {
  align-items: start;
}

.course-detail-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.course-detail-logo {
  width: 100%;
  max-width: 320px;
  max-height: 110px;
  margin: 0 auto;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(10, 32, 63, 0.14);
}

.hero-robot {
  width: min(100%, 220px);
  max-height: 260px;
  margin: 0.2rem auto 0;
  object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(33, 31, 32, 0.16));
}

.robot-credit {
  margin: 0.75rem auto 0;
  max-width: 260px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
  text-align: center;
}

.robot-credit a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(127, 11, 122, 0.25);
  text-underline-offset: 0.22em;
}

.robot-credit a:hover {
  color: var(--secondary);
  text-decoration-color: currentColor;
}

.course-detail-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.course-detail-badges .course-age,
.course-detail-badges .blog-tag {
  margin-bottom: 0;
}

.course-detail-grid,
.course-topic-grid,
.course-video-grid {
  display: grid;
  gap: 1rem;
}

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

.course-topic-grid,
.course-video-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 520px));
  justify-content: center;
}

.course-topic-grid.course-module-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.course-shorts-panel {
  max-width: 420px;
  margin: 0 auto;
}

.course-detail-list {
  list-style: none;
}

.course-detail-list li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.7rem;
  color: var(--muted);
}

.course-detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: var(--primary);
}

.course-topic-card {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.course-topic-card h3 {
  font-size: 1.2rem;
}

.course-topic-card p:last-child,
.course-detail-card p:last-child,
.course-topic-card ul:last-child,
.course-detail-card ul:last-child {
  margin-bottom: 0;
}

.course-module-card {
  min-height: 100%;
  border-width: 1px;
  color: #211f20;
}

.course-module-card p {
  color: #211f20;
}

.course-module-card.course-module-card--bronze {
  background: linear-gradient(135deg, #f3d7b8 0%, #fff2e6 100%);
  border-color: #bd8550;
  border-top: 5px solid #b7783f;
  box-shadow: 0 18px 44px rgba(161, 103, 45, 0.16);
}

.course-module-card.course-module-card--silver {
  background: linear-gradient(135deg, #e2e8ee 0%, #f9fbfd 100%);
  border-color: #9eabb7;
  border-top: 5px solid #8b9aa8;
  box-shadow: 0 18px 44px rgba(91, 105, 117, 0.16);
}

.course-module-card.course-module-card--gold {
  background: linear-gradient(135deg, #ffe99a 0%, #fff8dc 100%);
  border-color: #c8a22f;
  border-top: 5px solid #c29616;
  box-shadow: 0 18px 44px rgba(174, 132, 18, 0.16);
}

.course-help-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.25rem;
  align-items: center;
  max-width: 980px;
  margin: 1.5rem auto 0;
}

.course-help-card p {
  color: var(--muted);
}

.market-intelligence-card {
  border-color: rgba(0, 173, 239, 0.24);
  background: linear-gradient(135deg, rgba(0, 173, 239, 0.08), rgba(255, 255, 255, 0.96));
}

.market-intelligence-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: auto;
}

.market-intelligence-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.course-cta-panel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: start;
}

.article-image {
  width: 100%;
  margin: 1.5rem 0;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.article-content h2 {
  margin-top: 2rem;
  font-size: 1.8rem;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1rem;
  align-items: center;
  margin: 0.2rem 0 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.article-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.article-author-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--secondary);
  font-weight: 800;
}

.article-author-link svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.article-content code {
  padding: 0.12rem 0.32rem;
  border-radius: 0.35rem;
  background: rgba(127, 11, 122, 0.08);
  color: var(--secondary);
  font-size: 0.95em;
}

.article-content pre {
  margin: 1rem 0 1.4rem;
  padding: 1rem;
  overflow-x: auto;
  border: 1px solid rgba(127, 11, 122, 0.18);
  border-radius: 1rem;
  background: #211f20;
  color: #fff;
  box-shadow: 0 16px 42px rgba(33, 31, 32, 0.12);
}

.article-content pre code {
  display: block;
  padding: 0;
  background: transparent;
  color: inherit;
  white-space: pre;
}

.article-content blockquote {
  margin: 1rem 0 1.4rem;
  padding: 1rem 1.2rem;
  border-left: 5px solid var(--primary);
  border-radius: 0.9rem;
  background: rgba(255, 132, 0, 0.08);
}

.article-content blockquote p:last-child {
  margin-bottom: 0;
}

.article-project-links {
  margin: 1.25rem 0 1.9rem;
  padding: 1.15rem 1.2rem;
  border: 1px solid rgba(33, 31, 32, 0.10);
  border-left: 4px solid var(--primary);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 32px rgba(33, 31, 32, 0.07);
}

.article-project-links h2 {
  margin: 0.45rem 0 0.45rem;
  font-size: 1.35rem;
}

.article-project-links p {
  margin-bottom: 0.9rem;
  color: var(--muted);
}

.article-project-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.75rem;
}

.article-project-action {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 0.1rem 0.75rem;
  min-height: 74px;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(127, 11, 122, 0.14);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(33, 31, 32, 0.05);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.article-project-action::after {
  content: "\2192";
  grid-column: 2;
  grid-row: 1 / 3;
  flex: 0 0 auto;
  color: var(--primary);
  font-size: 1.15rem;
  font-weight: 900;
}

.article-project-action span,
.article-project-action strong {
  display: block;
  grid-column: 1;
}

.article-project-action span {
  align-self: end;
  margin-bottom: 0.1rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.article-project-action strong {
  align-self: start;
  color: var(--dark);
  font-size: 1rem;
}

.article-project-action:hover,
.article-project-action:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 132, 0, 0.38);
  box-shadow: 0 12px 28px rgba(33, 31, 32, 0.09);
}

.article-course-callout {
  display: grid;
  grid-template-columns: minmax(120px, 220px) 1fr;
  gap: 1.4rem;
  align-items: center;
  margin: 1.6rem 0 2rem;
  padding: 1.4rem;
  border: 1px solid rgba(127, 11, 122, 0.16);
  border-radius: 1.4rem;
  background:
    radial-gradient(circle at top left, rgba(0, 173, 239, 0.16), transparent 34%),
    linear-gradient(135deg, #fff 0%, #fff7f0 100%);
  box-shadow: var(--shadow);
}

.article-course-callout img {
  width: 100%;
  max-width: 220px;
  border-radius: 1rem;
  background: #fff;
}

.article-course-callout h3 {
  margin-top: 0.4rem;
}

.article-course-callout p {
  color: var(--muted);
}

.article-course-callout p:last-of-type {
  margin-bottom: 1rem;
}

.article-course-recommendations {
  margin: 2.2rem 0;
  padding: 1.5rem;
  border: 1px solid rgba(127, 11, 122, 0.14);
  border-radius: 1.5rem;
  background:
    radial-gradient(circle at top left, rgba(255, 132, 0, 0.13), transparent 34%),
    radial-gradient(circle at bottom right, rgba(4, 184, 230, 0.14), transparent 36%),
    #fff;
  box-shadow: var(--shadow);
}

.article-course-recommendations h2 {
  margin-top: 0.5rem;
}

.article-course-recommendations > p {
  color: var(--muted);
}

.article-course-recommendation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.article-course-recommendation-card {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  min-height: 100%;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.88);
}

.article-course-recommendation-card img {
  width: 100%;
  height: 86px;
  object-fit: contain;
  border-radius: 0.8rem;
  background: #fff;
}

.article-course-recommendation-card h3 {
  margin: 0;
  font-size: 1.05rem;
}

.article-course-recommendation-card p {
  margin-bottom: 0.25rem;
  color: var(--muted);
}

.article-course-recommendation-card .course-video-link {
  width: max-content;
  margin-top: auto;
}

.article-product-recommendations {
  margin: 1.5rem 0 2.2rem;
  padding: 1.4rem;
  border: 1px solid rgba(255, 132, 0, 0.22);
  border-radius: 1.5rem;
  background:
    radial-gradient(circle at top right, rgba(255, 132, 0, 0.16), transparent 34%),
    radial-gradient(circle at bottom left, rgba(127, 11, 122, 0.10), transparent 36%),
    #fffaf4;
  box-shadow: var(--shadow-soft);
}

.article-product-recommendations h2 {
  margin-top: 0.5rem;
}

.article-product-recommendations > p,
.article-product-note {
  color: var(--muted);
}

.article-product-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 0.9rem;
  margin-top: 1rem;
}

.article-product-card {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  min-height: 100%;
  padding: 1rem;
  border: 1px solid rgba(255, 132, 0, 0.22);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.9);
}

.article-product-card img {
  width: 100%;
  height: 135px;
  object-fit: contain;
  padding: 0.55rem;
  border: 1px solid rgba(255, 132, 0, 0.16);
  border-radius: 0.85rem;
  background: #fff;
}

.article-product-card h3 {
  margin: 0;
  font-size: 1rem;
}

.article-product-card p {
  margin-bottom: 0.2rem;
  color: var(--muted);
}

.article-product-card .course-video-link {
  width: max-content;
  margin-top: auto;
}

.article-product-note {
  margin-top: 0.9rem;
  font-size: 0.9rem;
}

.course-blog-recommendations {
  background:
    radial-gradient(circle at top left, rgba(4, 184, 230, 0.13), transparent 34%),
    radial-gradient(circle at bottom right, rgba(255, 132, 0, 0.12), transparent 36%),
    var(--surface);
}

.course-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
  margin-top: 1.2rem;
}

.course-blog-card {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.course-blog-card img {
  width: 100%;
  height: 145px;
  object-fit: cover;
  border-radius: 0.9rem;
  border: 1px solid var(--line);
  background: #fff;
}

.course-blog-card h3 {
  margin: 0;
}

.course-blog-card p {
  color: var(--muted);
}

.course-blog-card .course-video-link {
  width: max-content;
  margin-top: auto;
}

.article-content ul,
.article-content ol {
  margin: 1rem 0 1.5rem 0;
  padding-left: 1.5rem;
}

.article-content li {
  margin: 0.35rem 0;
  padding-left: 0.2rem;
}

.article-content ul + p,
.article-content ol + p {
  margin-top: 1.3rem;
}

.breadcrumbs {
  color: var(--muted);
}

.top-gap {
  margin-top: 1.5rem;
}

.center {
  text-align: center;
}

.squad-preview {
  align-items: stretch;
}

.squad-preview-card,
.squad-hero-card {
  background:
    radial-gradient(circle at top right, rgba(254, 241, 0, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fff7ef 100%);
}

.squad-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: end;
}

.squad-mini-grid img {
  width: 100%;
  max-height: 170px;
  object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(33, 31, 32, 0.12));
}

.squad-mini-grid-large img {
  max-height: 210px;
}

.squad-preview-note {
  margin: 1.2rem 0 0;
  color: var(--muted);
}

.squad-hero {
  padding-bottom: 3rem;
}

.squad-hero-grid {
  align-items: center;
}

.robot-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.robot-card {
  display: grid;
  grid-template-columns: minmax(180px, 240px) 1fr;
  gap: 1.25rem;
  align-items: center;
  padding: 1.5rem;
  background: linear-gradient(180deg, #ffffff 0%, #fffaf5 100%);
  border: 1px solid rgba(255, 132, 0, 0.14);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.robot-card-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
  border-radius: 22px;
  background:
    radial-gradient(circle at top, rgba(0, 173, 239, 0.12), transparent 38%),
    linear-gradient(180deg, #f7fbff 0%, #fff4ea 100%);
}

.robot-card-media img {
  width: min(100%, 210px);
  max-height: 240px;
  object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(33, 31, 32, 0.16));
}

.robot-card-body h3 {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.robot-tag {
  display: inline-flex;
  margin-bottom: 0.9rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(127, 11, 122, 0.09);
  color: var(--secondary);
  font-size: 0.9rem;
  font-weight: 700;
}

.robot-skill-list {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.1rem;
  list-style: none;
}

.robot-skill-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 600;
}

.robot-skill-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--yellow), var(--primary));
  box-shadow: 0 0 0 5px rgba(255, 132, 0, 0.12);
}

.squad-summary-card .step-list.compact li {
  grid-template-columns: 1.4fr 1fr;
}

@media (max-width: 1040px) {
  .hero-grid,
  .split-layout,
  .split-layout.reverse,
  .feature-grid,
  .course-grid,
  .course-detail-grid,
  .course-topic-grid,
  .course-video-grid,
  .solution-grid,
  .course-choice-grid,
  .service-grid,
  .quick-links-grid,
  .robot-grid,
  .contact-grid,
  .reviews-grid,
  .blog-grid,
  .footer-grid,
  .final-cta-box {
    grid-template-columns: 1fr 1fr;
  }

  .home-solution-grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hero-visual {
    max-width: 420px;
    justify-self: center;
  }

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

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

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

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

  .header-inner {
    min-height: 74px;
    gap: 0.85rem;
  }

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

  .brand-text {
    font-size: 0.96rem;
  }

  .menu a {
    padding: 0.6rem 0.8rem;
  }
}

@media (max-width: 760px) {
  .hero-copy h1,
  .page-hero h1,
  .article-wrap h1 {
    font-size: clamp(1.9rem, 9.5vw, 2.65rem);
  }

  .section-heading h2 {
    font-size: clamp(1.45rem, 7.2vw, 2.1rem);
  }

  .split-layout h2 {
    font-size: clamp(1.4rem, 6.5vw, 1.95rem);
  }

  .course-help-card {
    grid-template-columns: 1fr;
  }

  .course-help-card .btn {
    width: 100%;
  }

  .eyebrow {
    margin-bottom: 0.7rem;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
  }

  .header-inner {
    flex-wrap: wrap;
    min-height: auto;
    padding: 0.4rem 0;
    gap: 0.45rem;
  }

  .language-switcher {
    order: 2;
    margin-left: auto;
  }

  .language-switcher a {
    min-width: 32px;
    min-height: 32px;
    padding: 0.16rem;
    font-size: 1rem;
  }

  .language-switcher img {
    width: 21px;
    height: 15px;
  }

  .nav-toggle {
    display: inline-flex !important;
    flex: 0 0 100%;
    order: 4;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 38px;
    padding: 0.55rem 0.8rem;
    border-radius: 12px;
    border-color: rgba(227, 230, 231, 0.82);
    background: #ffffff;
  }

  .nav-toggle::after {
    content: "Menu";
    color: var(--secondary);
    font-size: 0.86rem;
    font-weight: 800;
  }

  .site-nav {
    width: 100%;
    order: 5;
  }

  .menu {
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    padding-top: 0.1rem;
  }

  .menu.open {
    display: flex;
  }

  .menu > li {
    width: 100%;
  }

  .menu a {
    width: 100%;
  }

  .submenu {
    position: static;
    display: block;
    min-width: 0;
    margin-top: 0.15rem;
    margin-left: 0.4rem;
    padding: 0.25rem 0 0.25rem 0.65rem;
    border: 0;
    border-left: 2px solid rgba(127, 11, 122, 0.14);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .submenu a {
    padding: 0.55rem 0.35rem;
    border-radius: 0;
    font-size: 0.95rem;
  }

  .hero,
  .section,
  .page-hero,
  .article-page {
    padding: 3.2rem 0;
  }

  .hero-grid,
  .split-layout,
  .split-layout.reverse,
  .feature-grid,
  .course-grid,
  .course-detail-grid,
  .course-topic-grid,
  .course-video-grid,
  .solution-grid,
  .course-choice-grid,
  .service-grid,
  .quick-links-grid,
  .makersmart-gallery,
  .offer-grid,
  .pricing-grid,
  .feature-list-grid,
  .robot-grid,
  .contact-grid,
  .reviews-grid,
  .blog-grid,
  .footer-grid,
  .final-cta-box {
    grid-template-columns: 1fr;
  }

  .home-solution-grid {
    grid-template-columns: 1fr;
  }

  .course-proof-strip {
    grid-template-columns: 1fr;
  }

  .course-topic-grid.course-module-grid {
    grid-template-columns: 1fr;
  }

  .step-list.compact li,
  .squad-summary-card .step-list.compact li {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .updates-carousel {
    grid-auto-columns: minmax(245px, 86vw);
  }

  .article-course-callout {
    grid-template-columns: 1fr;
  }

  .article-course-callout img {
    max-width: 260px;
  }

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

  .robot-card {
    grid-template-columns: 1fr;
  }

  .robot-card-media {
    min-height: 180px;
  }

  .hero-visual {
    max-width: 100%;
  }

  .hero-video {
    max-height: none;
  }

  .robocopa-agenda-grid {
    grid-template-columns: 1fr;
  }

  .hero-credit {
    padding-left: 0.7rem;
    padding-right: 0.7rem;
  }

  .hero-credit a {
    font-size: 0.88rem;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  #maker-smart .pricing-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    margin-bottom: 0.8rem;
  }

  .hero-lead {
    margin-bottom: 0.85rem;
  }

  .btn {
    width: 100%;
  }

  .blog-card .btn {
    width: 100%;
  }

  .brand {
    gap: 0.6rem;
  }

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

  .brand-text {
    font-size: 0.8rem;
    line-height: 1.15;
  }

  .header-cta {
    order: 3;
    width: 100%;
    min-height: 38px;
    margin-left: 0;
    max-width: none;
    padding: 0.55rem 0.85rem;
    border-radius: 14px;
    font-size: 0.86rem;
    box-shadow: 0 10px 22px rgba(37, 211, 102, 0.22);
  }

  .hero .cta-row .btn {
    min-height: 44px;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
  }

  .cookie-banner__actions {
    width: 100%;
  }

  .cookie-banner__button {
    width: 100%;
  }

  .cookie-modal__panel {
    max-height: calc(100vh - 24px);
    margin-top: 12px;
    padding: 1.25rem;
    border-radius: 24px;
  }

  .cookie-option {
    grid-template-columns: 1fr;
  }

  .cookie-modal__actions .cookie-banner__button {
    width: 100%;
  }

  .privacy-card-grid {
    grid-template-columns: 1fr;
  }

  .whats-float span {
    display: none;
  }
}

@media (max-width: 560px) {
  .brand-text {
    font-size: 0.76rem;
  }

  .header-cta {
    max-width: 190px;
    padding-inline: 0.45rem;
    white-space: nowrap;
    font-size: 0.82rem;
  }

  .header-cta {
    max-width: none;
    font-size: 0.82rem;
  }

  .header-cta::after {
    content: none;
  }

  .hero,
  .section,
  .page-hero,
  .article-page {
    padding: 3rem 0;
  }
}
