.brand {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
}

.brand-logo {
  width: 108px;
  height: 54px;
  object-fit: contain;
}

.btn,
.icon-btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 14px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn {
  padding: 12px 22px;
}

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

.btn-sm {
  min-height: 42px;
  padding: 9px 16px;
}

.btn-primary {
  background: var(--color-brand);
  color: #fff;
  box-shadow: 0 14px 26px rgba(249, 115, 22, 0.28);
}

.btn-primary:hover {
  background: var(--color-brand-dark);
}

.btn-dark {
  background: #101a33;
  color: #fff;
  box-shadow: var(--shadow-md);
}

.btn-light,
.btn-outline {
  background: #fff;
  color: var(--color-ink);
  border: 1px solid var(--color-line);
}

.icon-btn {
  width: 46px;
  padding: 0;
  background: #fff;
  border: 1px solid var(--color-line);
  color: var(--color-ink);
}

.eyebrow,
.pill-note,
.popular {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #fde1c8;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--color-brand-dark);
  font-size: 14px;
  font-weight: 800;
  padding: 5px 13px;
}

.pill-note {
  margin-top: 20px;
  color: #2b3448;
}

.video-card {
  width: min(88%, 100%);
  height: 400px;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid #1d293d;
  border-radius: 18px;
  background: #05070c;
  box-shadow: 0 26px 44px rgba(249, 115, 22, 0.18);
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 38px;
  padding: 0 14px;
  color: #f6c096;
  background: #111a2d;
  font-size: 12px;
}

.window-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-brand);
}

.window-bar span:nth-child(2) {
  background: #eab308;
}

.window-bar span:nth-child(3) {
  background: #22c55e;
}

.window-bar strong {
  margin-inline-start: auto;
}

.play-btn {
  display: grid;
  width: 74px;
  height: 54px;
  margin: 150px auto 0;
  place-items: center;
  border: 0;
  border-radius: 16px;
  background: #ff1f1f;
  color: #fff;
  font-size: 34px;
}

.feature-card,
.quote-card,
.price-card,
.faq-item,
.support-box,
.dashboard-preview,
.showcase-copy {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.feature-card {
  position: relative;
  padding: 28px;
}

.feature-card .count {
  color: #c7d0df;
  font-family: var(--font-display);
  font-weight: 900;
}

.feature-card > i {
  display: grid;
  width: 48px;
  height: 48px;
  margin-top: 18px;
  place-items: center;
  border-radius: 14px;
  background: var(--color-soft);
  color: var(--color-brand);
  font-size: 22px;
}

.feature-card h3 {
  margin-top: 20px;
  font-size: 24px;
}

.feature-card strong {
  display: block;
  margin-top: 8px;
}

.feature-card p {
  margin-top: 12px;
  color: var(--color-muted);
}

.feature-card button {
  display: inline-flex;
  align-items: center;
  border: 0;
  background: transparent;
  padding: 0;
  margin-top: 18px;
  color: var(--color-brand);
  font-weight: 800;
}

.feature-card button:hover {
  color: var(--color-brand-dark);
}

.video-modal-open {
  overflow: hidden;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

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

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(16, 26, 51, 0.72);
  backdrop-filter: blur(8px);
}

.video-modal__dialog {
  position: relative;
  width: min(920px, 100%);
  border-radius: 18px;
  background: #05070c;
  box-shadow: 0 28px 70px rgba(16, 26, 51, 0.32);
  transform: translateY(12px) scale(0.98);
  transition: transform 180ms ease;
}

.video-modal.open .video-modal__dialog {
  transform: translateY(0) scale(1);
}

.video-modal__close {
  position: absolute;
  top: -18px;
  inset-inline-end: -18px;
  z-index: 1;
  box-shadow: var(--shadow-sm);
}

.video-modal__frame {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid #1d293d;
  border-radius: 18px;
}

.video-modal__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.tabs,
.billing-toggle {
  display: flex;
  width: fit-content;
  margin: 0 auto 34px;
  padding: 8px;
  border: 1px solid var(--color-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.tab,
.billing-toggle button {
  position: relative;
  border: 0;
  border-radius: 13px;
  background: transparent;
  color: #536078;
  font-weight: 800;
  padding: 12px 22px;
}

.billing-toggle button small {
  position: absolute;
  top: -18px;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  border: 1px solid rgba(22, 163, 74, 0.22);
  border-radius: 999px;
  background: #16a34a;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  padding: 5px 9px;
  box-shadow: 0 10px 20px rgba(22, 163, 74, 0.22);
}

.tab.active,
.billing-toggle button.active {
  background: var(--color-brand);
  color: #fff;
  box-shadow: 0 12px 24px rgba(249, 115, 22, 0.25);
}

.dashboard-preview {
  grid-area: media;
  overflow: hidden;
  padding: 18px;
}

.showcase-panel[hidden] {
  display: none;
}

.dashboard-preview img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border-radius: 14px;
  object-fit: contain;
}

.showcase-copy {
  grid-area: copy;
  padding: 38px;
}

.showcase-copy h3 {
  margin-top: 16px;
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.25;
}

.showcase-copy p,
.quote-card p,
.price-card p,
.site-footer p {
  margin-top: 14px;
  color: var(--color-muted);
}

.check-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
  font-weight: 800;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.check-list i,
.price-card li i {
  color: var(--color-brand);
}

.mini-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: #d8e0ef;
  font-weight: 700;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  margin-bottom: 34px;
  color: #8a95a8;
  font-weight: 900;
}

.quote-card {
  padding: 30px;
}

.stars {
  color: var(--color-brand);
}

.quote-card footer {
  display: grid;
  gap: 2px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--color-line);
}

.quote-card footer span {
  color: var(--color-muted);
  font-size: 14px;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px;
}

.price-card.featured {
  background: #101a33;
  color: #fff;
  border-color: #101a33;
  box-shadow: 0 25px 55px rgba(16, 26, 51, 0.22);
}

.price-card.featured p,
.price-card.featured small {
  color: #cbd5e1;
}

.price-card h3 {
  font-size: 26px;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 18px;
}

.price strong {
  font-family: var(--font-display);
  font-size: 54px;
  line-height: 1;
}

.price-card .btn {
  margin-top: 22px;
}

.price-card ul {
  display: grid;
  gap: 12px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--color-line);
  font-weight: 700;
}

.price-card.featured ul {
  border-color: rgba(255, 255, 255, 0.14);
}

.price-card .muted {
  color: #a6b0c0;
  text-decoration: line-through;
}

.popular {
  position: absolute;
  top: -16px;
  inset-inline-start: 24px;
  background: var(--color-brand);
  color: #fff;
}

.pricing-compare {
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.pricing-compare:focus {
  outline: 3px solid rgba(249, 115, 22, 0.24);
  outline-offset: 4px;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.pricing-table th,
.pricing-table td {
  width: 23%;
  padding: 18px 20px;
  border-bottom: 1px solid var(--color-line);
  overflow-wrap: anywhere;
  text-align: center;
  vertical-align: middle;
}

.pricing-table th:first-child,
.pricing-table td:first-child {
  width: 31%;
  text-align: start;
}

.pricing-table thead th {
  position: relative;
  padding-top: 26px;
  background: #fbfdff;
  vertical-align: top;
}

.pricing-table thead th:first-child {
  color: var(--color-muted);
  font-size: 15px;
}

.pricing-table tbody tr:last-child th,
.pricing-table tbody tr:last-child td {
  border-bottom: 0;
}

.pricing-table tbody th {
  color: var(--color-ink);
  font-size: 15px;
  font-weight: 900;
}

.pricing-table tbody td {
  color: #445066;
  font-weight: 800;
}

.pricing-table .featured-plan {
  background: #101a33;
  color: #fff;
  box-shadow: inset 0 4px 0 var(--color-brand);
}

.pricing-table .featured-plan .popular {
  position: static;
  margin-bottom: 13px;
}

.plan-name,
.plan-desc,
.plan-price {
  display: block;
}

.plan-name {
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 900;
}

.plan-desc {
  min-height: 42px;
  margin-top: 8px;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.6;
}

.featured-plan .plan-desc {
  color: #cbd5e1;
}

.plan-price {
  display: grid;
  min-height: 72px;
  align-content: end;
  justify-items: center;
  gap: 3px;
  margin-top: 14px;
  color: var(--color-ink);
  font-weight: 900;
}

.featured-plan .plan-price {
  color: #fff;
}

.plan-price strong {
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 1;
}

.plan-price .old-price {
  color: #8a95a8;
  font-size: 14px;
  font-weight: 800;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.featured-plan .plan-price .old-price {
  color: #aeb9cb;
}

.plan-price small {
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 800;
}

.featured-plan .plan-price small {
  color: #cbd5e1;
}

.pricing-table .btn {
  width: 100%;
  margin-top: 16px;
}

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

.pricing-plan-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 20px;
  padding: 26px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.pricing-plan-card.featured {
  border-color: #101a33;
  background: #101a33;
  color: #fff;
  box-shadow: 0 25px 55px rgba(16, 26, 51, 0.22);
}

.pricing-plan-card.featured .popular {
  position: absolute;
  top: -16px;
  inset-inline-start: 22px;
}

.plan-card-head {
  display: grid;
  gap: 6px;
}

.pricing-plan-card .plan-desc {
  min-height: 0;
}

.pricing-plan-card.featured .plan-desc,
.pricing-plan-card.featured .plan-fit p,
.pricing-plan-card.featured .plan-delta p,
.pricing-plan-card.featured .plan-price small {
  color: #cbd5e1;
}

.pricing-plan-card .plan-price {
  justify-items: start;
  min-height: 86px;
}

.pricing-plan-card.featured .plan-price {
  color: #fff;
}

.plan-fit,
.plan-delta {
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid var(--color-line);
  border-radius: 14px;
  background: #fbfdff;
}

.pricing-plan-card.featured .plan-fit,
.pricing-plan-card.featured .plan-delta {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.plan-fit strong,
.plan-delta strong {
  color: var(--color-brand-dark);
  font-size: 13px;
  font-weight: 900;
}

.pricing-plan-card.featured .plan-fit strong,
.pricing-plan-card.featured .plan-delta strong {
  color: #fdba74;
}

.plan-fit p,
.plan-delta p {
  color: #526079;
  font-size: 14px;
  line-height: 1.65;
}

.plan-feature-list {
  display: grid;
  gap: 12px;
}

.plan-feature-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #344054;
  font-weight: 800;
  line-height: 1.55;
}

.pricing-plan-card.featured .plan-feature-list li {
  color: #f8fafc;
}

.plan-feature-list i {
  margin-top: 3px;
  color: #16a34a;
}

.pricing-plan-card .btn {
  width: 100%;
  margin-top: auto;
}

.pricing-hero__panel {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(16, 26, 51, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(16px);
}

.pricing-hero__panel > span {
  color: var(--color-brand-dark);
  font-weight: 900;
}

.pricing-hero__panel > strong {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
}

.pricing-hero__panel > p {
  color: var(--color-muted);
  font-weight: 800;
}

.mini-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--color-line);
}

.mini-metrics span {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.mini-metrics b {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1;
}

.mini-metrics small {
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.pricing-table--detailed .plan-price {
  min-height: 58px;
}

.table-group-row th {
  background: #fff7ed;
  color: var(--color-brand-dark);
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0;
}

.pricing-help {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  padding: 30px;
  border-radius: var(--radius);
  background: #101a33;
  color: #fff;
  box-shadow: var(--shadow-md);
}

.pricing-help div {
  display: grid;
  gap: 10px;
  margin-inline-end: auto;
}

.pricing-help p {
  max-width: 700px;
  color: #cbd5e1;
  font-size: 18px;
}

.pricing-help .eyebrow {
  width: fit-content;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: #fdba74;
}

.included,
.excluded {
  font-size: 22px;
}

.included {
  color: #16a34a;
}

.excluded {
  color: #cbd5e1;
}

.tax-note {
  margin-top: 26px;
  text-align: center;
  color: var(--color-muted);
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 930px;
  margin: auto;
}

.faq-item {
  overflow: hidden;
}

.faq-item button {
  display: grid;
  width: 100%;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 22px;
  border: 0;
  background: transparent;
  color: var(--color-ink);
  text-align: start;
  font-size: 19px;
  font-weight: 900;
}

.faq-item button strong {
  font: inherit;
}

.faq-item button span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 13px;
  background: #101a33;
  color: #fff;
  direction: ltr;
}

.faq-item p {
  display: none;
  padding-block: 0 24px;
  padding-inline: 78px 24px;
  color: var(--color-muted);
}

.faq-item.open {
  border-color: #fdba74;
}

.faq-item.open p {
  display: block;
}

.faq-item.open button span {
  background: var(--color-brand);
}

.support-box {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: center;
  max-width: 930px;
  margin: 28px auto 0;
  padding: 22px;
}

.support-box div {
  display: grid;
  margin-inline-end: auto;
}

.support-box span {
  color: var(--color-muted);
}

.site-footer h3 {
  color: #fff;
  font-size: 18px;
}

.site-footer a {
  display: block;
  margin-top: 9px;
  color: #d7deea;
}

.footer-brand {
  margin-bottom: 14px;
}

.footer-brand .brand-logo {
  width: 126px;
  height: 64px;
}

.footer-languages {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.footer-languages button {
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font-weight: 800;
}

.whatsapp-float {
  position: fixed;
  inset-inline-start: 24px;
  bottom: 24px;
  z-index: 30;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  font-size: 27px;
  box-shadow: 0 12px 25px rgba(37, 211, 102, 0.36);
}

.nav .nav-toggle {
  display: none;
}

@media (max-width: 1100px) {
  .pricing-details-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .tabs,
  .billing-toggle {
    width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
  }

  .tab,
  .billing-toggle button {
    white-space: nowrap;
  }

  .showcase-copy,
  .feature-card,
  .quote-card,
  .price-card,
  .pricing-plan-card,
  .pricing-hero__panel,
  .pricing-help {
    padding: 22px;
  }

  .pricing-details-grid {
    grid-template-columns: 1fr;
  }

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

  .video-modal {
    padding: 18px;
  }

  .video-modal__close {
    top: 10px;
    inset-inline-end: 10px;
  }

  .pricing-compare {
    margin-inline: 0;
  }

  .pricing-table {
    min-width: 0;
  }

  .pricing-table th,
  .pricing-table td {
    padding: 9px 4px;
    font-size: 11px;
    line-height: 1.35;
  }

  .pricing-table thead th {
    padding-top: 14px;
  }

  .pricing-table thead th:first-child,
  .pricing-table tbody th {
    font-size: 11px;
  }

  .pricing-table .plan-desc {
    display: none;
  }

  .plan-name {
    font-size: 13px;
    line-height: 1.25;
  }

  .pricing-table .popular {
    padding: 5px 7px;
    font-size: 9px;
    line-height: 1.2;
  }

  .pricing-table .featured-plan .popular {
    margin-bottom: 8px;
  }

  .plan-price {
    min-height: 52px;
    margin-top: 8px;
    gap: 2px;
  }

  .plan-price .old-price,
  .plan-price small {
    font-size: 9px;
  }

  .plan-price strong {
    font-size: 20px;
  }

  .pricing-table .btn {
    min-height: 31px;
    margin-top: 9px;
    padding: 5px 4px;
    border-radius: 9px;
    font-size: 10px;
  }

  .pricing-table--detailed .plan-price {
    min-height: 46px;
  }

  .table-group-row th {
    font-size: 12px;
  }

  .included,
  .excluded {
    font-size: 16px;
  }

  .faq-item button {
    grid-template-columns: auto 1fr;
    font-size: 16px;
  }

  .faq-item button i {
    display: none;
  }

  .faq-item p {
    padding-block: 0 22px;
    padding-inline: 22px;
  }
}

@media (max-width: 820px) {
  .nav .nav-toggle {
    display: inline-flex;
  }
}
