: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: 14px;
  font-size: 0.96rem;
  line-height: 1.35;
}

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

.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,
.section-heading h2,
.split-layout h2,
.article-wrap h1 {
  font-size: clamp(2rem, 4.8vw, 4.6rem);
}

.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;
  background: #140c15;
}

.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(4, 1fr);
}

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

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

.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(3, minmax(0, 1fr));
  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);
}

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

.course-logo {
  max-width: 180px;
  max-height: 62px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.course-logo-badge {
  display: inline-flex;
  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-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: 0.9rem 0 1rem;
  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(3, 1fr);
  gap: 1rem;
}

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

.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 {
  padding: 0;
}

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

.blog-card-body {
  padding: 1.35rem;
}

.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,
.step-list,
.icon-list,
.footer-list {
  list-style: none;
}

.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-video-link:hover {
  border-color: var(--sky);
  color: var(--secondary);
}

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

.mini-list li::before,
.step-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);
}

.step-list li {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  flex-wrap: wrap;
}

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

.step-list li span {
  display: inline;
}

.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 .step-list li::before,
.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-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: 12px;
  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-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;
}

.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-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,
  .solution-grid,
  .service-grid,
  .quick-links-grid,
  .robot-grid,
  .contact-grid,
  .reviews-grid,
  .blog-grid,
  .footer-grid,
  .final-cta-box {
    grid-template-columns: 1fr 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);
  }

  .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) {
  .header-inner {
    flex-wrap: wrap;
    min-height: auto;
    padding: 0.4rem 0;
    gap: 0.45rem;
  }

  .nav-toggle {
    display: inline-flex;
    order: 3;
    width: auto;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0.55rem 0.8rem;
    border-radius: 12px;
    border-color: rgba(227, 230, 231, 0.82);
  }

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

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

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

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

  .brand {
    gap: 0.6rem;
  }

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

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

  .header-cta {
    width: auto;
    min-height: 38px;
    margin-left: auto;
    max-width: 210px;
    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;
    font-size: 0.82rem;
  }

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