:root {
  --ast-ink: #162033;
  --ast-muted: #667085;
  --ast-line: #d8dee8;
  --ast-soft: #f5f7fb;
  --ast-white: #ffffff;
  --ast-navy: #0b2447;
  --ast-blue: #1f5eff;
  --ast-orange: #f97316;
  --ast-green: #16a34a;
  --ast-shadow: 0 18px 45px rgba(20, 30, 50, 0.12);
}

.page-1 .t-Header,
.page-1 .t-Footer {
  display: none !important;
}

.page-1 .t-Body-content,
.page-1 .t-Body-main,
.page-1 .t-Body-contentInner,
.page-1 .t-Region {
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ast-ink);
  background: var(--ast-white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

body.ast-modal-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

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

.ast-page {
  min-height: 100vh;
  background: var(--ast-white);
}

.ast-container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.ast-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 12px max(20px, calc((100vw - 1180px) / 2));
  color: var(--ast-white);
  background: rgba(9, 20, 42, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.ast-nav.is-scrolled {
  background: rgba(9, 20, 42, 0.94);
  box-shadow: 0 8px 28px rgba(6, 17, 36, 0.2);
}

.ast-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  text-decoration: none;
}

.ast-brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.ast-brand strong {
  color: var(--ast-white);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0;
}

.ast-brand span {
  color: var(--ast-orange);
}

.ast-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}

.ast-menu a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  padding: 10px 13px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  font-weight: 650;
  text-decoration: none;
  border-radius: 8px;
}

.ast-menu a:hover,
.ast-menu a.is-active {
  color: var(--ast-white);
  background: rgba(255, 255, 255, 0.12);
}

.ast-menu .ast-nav-demo {
  margin-left: 8px;
  color: var(--ast-white);
  background: var(--ast-orange);
}

.ast-menu .ast-nav-demo:hover {
  background: #ea580c;
}

.ast-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.ast-menu-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--ast-white);
}

.ast-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 88svh;
  padding: 136px 0 96px;
  color: var(--ast-white);
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.ast-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 12, 28, 0.92) 0%, rgba(4, 12, 28, 0.74) 48%, rgba(4, 12, 28, 0.35) 100%),
    linear-gradient(180deg, rgba(4, 12, 28, 0.2), rgba(4, 12, 28, 0.55));
}

.ast-hero-content {
  position: relative;
  z-index: 1;
}

.ast-kicker {
  margin: 0 0 12px;
  color: var(--ast-orange);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.ast-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: 4rem;
  line-height: 1.05;
  letter-spacing: 0;
}

.ast-lead {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.18rem;
}

.ast-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.ast-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.ast-btn-primary {
  color: var(--ast-white);
  background: var(--ast-orange);
}

.ast-btn-primary:hover {
  background: #ea580c;
}

.ast-btn-light {
  color: var(--ast-white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
}

.ast-btn-light:hover {
  background: rgba(255, 255, 255, 0.2);
}

.ast-btn-secondary {
  color: var(--ast-navy);
  background: var(--ast-white);
  border-color: var(--ast-line);
}

.ast-btn-secondary:hover {
  border-color: var(--ast-blue);
}

.ast-hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.ast-hero-proof span {
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.ast-metrics {
  background: var(--ast-navy);
  color: var(--ast-white);
}

.ast-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.ast-metrics-grid div {
  padding: 24px 22px;
  background: var(--ast-navy);
}

.ast-metrics-grid strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
}

.ast-metrics-grid span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 650;
}

.ast-section {
  padding: 92px 0;
}

.ast-section-head {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.ast-section-head h2,
.ast-copy h2 {
  margin: 0;
  color: var(--ast-ink);
  font-size: 2.45rem;
  line-height: 1.16;
  letter-spacing: 0;
}

.ast-section-head p:not(.ast-kicker),
.ast-copy p {
  color: var(--ast-muted);
  font-size: 1rem;
}

.ast-split,
.ast-suite-grid,
.ast-contact-grid,
.ast-faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 52px;
}

.ast-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--ast-shadow);
}

.ast-text-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--ast-blue);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 2px solid currentColor;
}

.ast-modules,
.ast-process {
  background: var(--ast-soft);
}

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

.ast-card,
.ast-price-card,
.ast-steps article,
.ast-faq-list details,
.ast-contact-form {
  border: 1px solid var(--ast-line);
  border-radius: 8px;
  background: var(--ast-white);
}

.ast-card {
  min-height: 300px;
  padding: 24px;
  box-shadow: 0 12px 32px rgba(20, 30, 50, 0.08);
}

.ast-card img {
  width: 66px;
  height: 66px;
  object-fit: contain;
  margin-bottom: 24px;
}

.ast-card h3,
.ast-steps h3 {
  margin: 0 0 10px;
  color: var(--ast-ink);
  font-size: 1.15rem;
}

.ast-card p,
.ast-steps p,
.ast-faq-list p,
.ast-contact-form p {
  margin: 0;
  color: var(--ast-muted);
}

.ast-suite {
  background:
    linear-gradient(180deg, rgba(245, 247, 251, 0), rgba(245, 247, 251, 0.85)),
    var(--ast-white);
}

.ast-feature-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.ast-feature-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--ast-ink);
  font-weight: 650;
}

.ast-feature-list li span {
  position: relative;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  border-radius: 50%;
  background: rgba(22, 163, 74, 0.14);
}

.ast-feature-list li span::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 3px;
  width: 5px;
  height: 9px;
  border: solid var(--ast-green);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.ast-dashboard {
  overflow: hidden;
  border: 1px solid rgba(31, 94, 255, 0.18);
  border-radius: 8px;
  background: #0d1b32;
  box-shadow: var(--ast-shadow);
}

.ast-dashboard-top {
  display: flex;
  gap: 8px;
  padding: 14px 16px;
  background: #111f38;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ast-dashboard-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #f97316;
}

.ast-dashboard-top span:nth-child(2) {
  background: #facc15;
}

.ast-dashboard-top span:nth-child(3) {
  background: #22c55e;
}

.ast-dashboard-body {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 18px;
}

.ast-panel {
  min-height: 118px;
  padding: 18px;
  color: var(--ast-white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.ast-panel-wide {
  grid-column: span 2;
}

.ast-panel small {
  color: rgba(255, 255, 255, 0.62);
  font-weight: 700;
}

.ast-panel strong {
  display: block;
  margin-top: 8px;
  font-size: 1.4rem;
}

.ast-panel p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.ast-bars {
  display: flex;
  align-items: end;
  gap: 10px;
  height: 118px;
  margin-top: 16px;
}

.ast-bars span {
  flex: 1;
  min-width: 22px;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--ast-orange), var(--ast-blue));
}

.ast-pricing {
  background: var(--ast-navy);
  color: var(--ast-white);
}

.ast-pricing .ast-section-head h2,
.ast-pricing .ast-section-head p:not(.ast-kicker) {
  color: var(--ast-white);
}

.ast-pricing .ast-section-head p:not(.ast-kicker) {
  color: rgba(255, 255, 255, 0.76);
}

.ast-price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 380px));
  justify-content: center;
  gap: 22px;
}

.ast-price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 28px;
  min-height: 520px;
  padding: 30px;
  color: var(--ast-ink);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.16);
}

.ast-price-card.ast-featured {
  border-color: var(--ast-orange);
}

.ast-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 9px;
  color: var(--ast-white);
  font-size: 0.78rem;
  font-weight: 800;
  background: var(--ast-orange);
  border-radius: 8px;
}

.ast-plan-label {
  margin: 0 0 8px;
  color: var(--ast-orange);
  font-weight: 800;
  text-transform: uppercase;
}

.ast-price-card h3 {
  margin: 0;
  font-size: 2.15rem;
}

.ast-price-card h3 span {
  color: var(--ast-muted);
  font-size: 1rem;
  font-weight: 700;
}

.ast-price-card > .ast-btn {
  margin-top: auto;
}

.ast-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.ast-steps article {
  padding: 24px;
}

.ast-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  color: var(--ast-blue);
  font-weight: 900;
  background: rgba(31, 94, 255, 0.1);
  border-radius: 8px;
}

.ast-faq-grid {
  align-items: start;
}

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

.ast-faq-list details {
  padding: 18px 20px;
}

.ast-faq-list summary {
  color: var(--ast-ink);
  font-weight: 800;
  cursor: pointer;
}

.ast-faq-list p {
  margin-top: 12px;
}

.ast-contact {
  background: #f8fafc;
}

.ast-contact-grid {
  align-items: start;
}

.ast-contact-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.ast-contact-list a {
  width: max-content;
  color: var(--ast-blue);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 2px solid transparent;
}

.ast-contact-list a:hover {
  border-color: currentColor;
}

.ast-contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  box-shadow: var(--ast-shadow);
}

.ast-contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ast-ink);
  font-weight: 800;
}

.ast-contact-form input,
.ast-contact-form textarea {
  width: 100%;
  padding: 12px 13px;
  color: var(--ast-ink);
  font: inherit;
  border: 1px solid var(--ast-line);
  border-radius: 8px;
  background: var(--ast-white);
}

.ast-contact-form input:focus,
.ast-contact-form textarea:focus {
  outline: 3px solid rgba(31, 94, 255, 0.14);
  border-color: var(--ast-blue);
}

.ast-form-note {
  font-size: 0.9rem;
}

.ast-footer {
  color: rgba(255, 255, 255, 0.76);
  background: #08162b;
}

.ast-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 1fr;
  gap: 32px;
  padding: 48px 0;
}

.ast-brand-footer {
  margin-bottom: 16px;
}

.ast-footer p {
  margin: 0 0 10px;
}

.ast-footer nav {
  display: grid;
  gap: 10px;
}

.ast-footer a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
}

.ast-footer a:hover {
  color: var(--ast-white);
}

.ast-footer-bottom {
  padding: 16px 20px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ast-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  color: var(--ast-white);
  font-weight: 900;
  text-decoration: none;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.28);
}

@media (max-width: 980px) {
  .ast-menu-toggle {
    display: block;
  }

  .ast-menu {
    position: absolute;
    top: 72px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 12px;
    background: rgba(9, 20, 42, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    box-shadow: 0 20px 36px rgba(0, 0, 0, 0.25);
  }

  .ast-menu.is-open {
    display: flex;
  }

  .ast-menu .ast-nav-demo {
    margin-left: 0;
  }

  .ast-hero h1 {
    font-size: 3rem;
  }

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

  .ast-split,
  .ast-suite-grid,
  .ast-contact-grid,
  .ast-faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .ast-container {
    width: min(100% - 28px, 1180px);
  }

  .ast-nav {
    min-height: 64px;
    padding: 10px 14px;
  }

  .ast-brand strong {
    font-size: 1.1rem;
  }

  .ast-brand img {
    width: 36px;
    height: 36px;
  }

  .ast-menu {
    top: 64px;
    right: 14px;
    left: 14px;
  }

  .ast-hero {
    min-height: 88svh;
    padding: 112px 0 70px;
  }

  .ast-hero h1 {
    font-size: 2.35rem;
  }

  .ast-lead {
    font-size: 1rem;
  }

  .ast-hero-actions {
    flex-direction: column;
  }

  .ast-btn {
    width: 100%;
  }

  .ast-metrics-grid,
  .ast-card-grid,
  .ast-price-grid,
  .ast-steps,
  .ast-footer-grid,
  .ast-dashboard-body {
    grid-template-columns: 1fr;
  }

  .ast-metrics-grid div {
    padding: 20px;
  }

  .ast-section {
    padding: 68px 0;
  }

  .ast-section-head h2,
  .ast-copy h2 {
    font-size: 2rem;
  }

  .ast-panel-wide {
    grid-column: auto;
  }

  .ast-price-card {
    min-height: auto;
  }

  .ast-whatsapp {
    width: 48px;
    height: 48px;
    right: 14px;
    bottom: 14px;
  }
}
