:root {
  --header-bg: rgba(83, 104, 116, 0.9);
  --header-border: rgba(255, 255, 255, 0.12);
  --footer-border: rgba(255, 255, 255, 0.12);

  --bg: #08161d;
  --text: #ffffff;
  --text-soft: rgba(255, 255, 255, 0.93);
  --text-dim: rgba(255, 255, 255, 0.84);

  --yellow: #e5de1d;
  --yellow-strong: #efe72a;
  --yellow-border: rgba(229, 222, 29, 0.42);
  --card-border: rgba(255, 255, 255, 0.14);
  --card-bg: linear-gradient(135deg, rgba(52, 60, 66, 0.82), rgba(21, 23, 25, 0.82));

  --shadow-soft: 0 10px 24px rgba(0, 0, 0, 0.24);
  --shadow-strong: 0 20px 50px rgba(0, 0, 0, 0.38);

  --container-width: 1710px;
  --header-height: 86px;
  --footer-height: 84px;
  --radius: 16px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body {
  font-family: "Nunito Sans", Arial, sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
}

body.modal-open,
body.plans-open {
  overflow: hidden;
}

a,
button,
input {
  font: inherit;
  color: inherit;
}

a {
  text-decoration: none;
}

button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

input {
  outline: none;
}

/* HEADER */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-height);
  z-index: 70;
  background: var(--header-bg);
  border-bottom: 1px solid var(--header-border);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
}

.header-inner {
  width: min(95.5%, var(--container-width));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo {
  display: block;
  width: auto;
  height: 76px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 34px;
  flex: 1;
}

.nav-link {
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  color: rgba(255, 255, 255, 0.96);
  white-space: nowrap;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--yellow-strong);
}

.nav-button {
  padding: 0;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: #ffffff;
}

/* HERO */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  isolation: isolate;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.015);
  z-index: -3;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(
      to bottom,
      rgba(7, 23, 29, 0.14) 0%,
      rgba(5, 17, 22, 0.24) 40%,
      rgba(2, 8, 11, 0.48) 78%,
      rgba(0, 0, 0, 0.58) 100%
    );
}

.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(
      circle at center,
      rgba(0, 0, 0, 0.02) 0%,
      rgba(0, 0, 0, 0.08) 35%,
      rgba(0, 0, 0, 0.24) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 5;
  width: min(95%, 1560px);
  height: 100%;
  margin: 0 auto;
  padding-top: 118px;
  padding-bottom: 112px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: translateY(-2px);
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.hero.plans-open .hero-content {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.hero-title {
  max-width: 1420px;
  font-size: clamp(52px, 4.35vw, 72px);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.24);
}

.hero-title span {
  color: var(--yellow-strong);
}

.hero-subtitle {
  margin-top: 20px;
  font-size: clamp(17px, 1.45vw, 26px);
  line-height: 1.25;
  font-weight: 400;
  color: var(--text-soft);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-highlight {
  margin-top: 28px;
  font-size: clamp(26px, 2.05vw, 40px);
  line-height: 1.18;
  font-weight: 600;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.22);
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  height: 54px;
  min-width: 215px;
  padding: 0 26px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-icon svg {
  width: 18px;
  height: 18px;
}

.btn-primary {
  background: var(--yellow-strong);
  color: #1a1a1a;
}

.btn-primary:hover {
  background: #f6ef35;
}

.btn-outline {
  min-width: 255px;
  background: rgba(18, 18, 18, 0.34);
  border: 1px solid var(--yellow-border);
  color: var(--yellow-strong);
}

.btn-outline:hover {
  background: rgba(10, 10, 10, 0.48);
  border-color: rgba(239, 231, 42, 0.72);
}

/* PLANOS */
.plans-panel {
  position: absolute;
  inset: calc(var(--header-height) + 10px) 18px 16px 18px;
  z-index: 25;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.hero.plans-open .plans-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.plans-shell {
  position: relative;
  height: 100%;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) 108px;
  gap: 12px;
}

.plans-shell.has-expanded {
  grid-template-rows: auto minmax(0, 1fr) 0px;
}

.plans-topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 0 6px;
}

.plans-heading {
  flex: 1;
  text-align: center;
}

.plans-heading h2 {
  font-size: clamp(34px, 3vw, 58px);
  line-height: 1.02;
  font-weight: 600;
}

.plans-heading h2 span {
  color: var(--yellow-strong);
}

.plans-heading p {
  margin-top: 8px;
  font-size: clamp(18px, 1.1vw, 22px);
  line-height: 1.25;
  font-weight: 400;
}

.plans-heading small {
  display: block;
  margin-top: 6px;
  font-size: clamp(14px, 0.92vw, 16px);
  line-height: 1.3;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.82);
}

.plans-close {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.88);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.plans-close:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.plans-close svg {
  width: 18px;
  height: 18px;
}

.plans-grid {
  min-height: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.plan-card {
  border-radius: 14px;
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  min-height: 0;
  display: flex;
  position: relative;
}

.plan-card-featured {
  border-color: rgba(69, 160, 255, 0.7);
  box-shadow: 0 0 0 1px rgba(69, 160, 255, 0.18), var(--shadow-soft);
}

.plan-card.is-expanded {
  z-index: 2;
}

.plan-card-inner {
  width: 100%;
  height: 100%;
  padding: 14px 14px 12px;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.plan-name {
  text-align: center;
  font-size: clamp(14px, 0.9vw, 18px);
  line-height: 1.15;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.96);
}

.plan-speed {
  margin-top: 6px;
  text-align: center;
  font-size: clamp(22px, 1.7vw, 32px);
  line-height: 1.05;
  font-weight: 700;
  color: var(--yellow-strong);
}

.plan-price {
  margin-top: 6px;
  text-align: center;
  font-size: clamp(13px, 1vw, 18px);
  line-height: 1.1;
  font-weight: 700;
  color: var(--yellow-strong);
}

.plan-custom-input-wrap {
  margin-top: 10px;
}

.plan-custom-input {
  width: 100%;
  height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 400;
}

.plan-custom-input::placeholder {
  color: rgba(255, 255, 255, 0.68);
}

.plan-mini-list {
  margin-top: 12px;
  list-style: none;
  display: grid;
  gap: 6px;
}

.plan-mini-list li {
  position: relative;
  padding-left: 16px;
  font-size: clamp(11px, 0.78vw, 13px);
  line-height: 1.25;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
}

.plan-mini-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--yellow-strong);
  font-weight: 800;
}

.plan-expanded {
  display: none;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.plan-card.is-expanded .plan-expanded {
  display: block;
}

.plan-expanded-text {
  font-size: 12px;
  line-height: 1.35;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
}

.plan-expanded-list {
  margin-top: 10px;
  list-style: none;
  display: grid;
  gap: 5px;
}

.plan-expanded-list li {
  position: relative;
  padding-left: 16px;
  font-size: 12px;
  line-height: 1.28;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.96);
}

.plan-expanded-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--yellow-strong);
  font-weight: 800;
}

.plan-actions-row {
  margin-top: auto;
  padding-top: 10px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.plan-btn {
  min-height: 36px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 12px;
  font-size: 12px;
  line-height: 1.1;
  font-weight: 800;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.plan-btn:hover {
  transform: translateY(-1px);
}

.plan-btn-primary {
  background: var(--yellow-strong);
  color: #161616;
}

.plan-btn-primary:hover {
  background: #f6ef35;
}

.plan-btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.plan-btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.3);
}

.plan-toggle-active {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.28);
}

.plan-mobile-nav {
  display: none;
}

.plans-info {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
}

.plans-shell.has-expanded .plans-info {
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
}

.info-card {
  border-radius: 14px;
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  box-shadow: var(--shadow-soft);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 6px;
}

.info-card-icon {
  width: 34px;
  height: 34px;
  color: var(--yellow-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.info-card-icon svg {
  width: 34px;
  height: 34px;
}

.info-card h3 {
  font-size: 16px;
  line-height: 1.1;
  font-weight: 700;
  color: var(--yellow-strong);
}

.info-card p {
  font-size: 12px;
  line-height: 1.35;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.92);
}

/* FOOTER */
.hero-footer {
  position: absolute;
  inset: auto 0 0 0;
  height: var(--footer-height);
  z-index: 12;
  border-top: 1px solid var(--footer-border);
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.54),
    rgba(0, 0, 0, 0.4)
  );
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.hero.plans-open .hero-footer {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.footer-inner {
  width: min(95.5%, var(--container-width));
  height: 100%;
  margin: 0 auto;
  padding: 10px 0 10px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-link-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 10px;
  font-weight: 700;
  transition: color 0.2s ease;
}

.footer-link-action:hover {
  color: var(--yellow-strong);
}

.footer-link-icon {
  width: 12px;
  height: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-link-icon svg {
  width: 12px;
  height: 12px;
}

.footer-address {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  line-height: 1.35;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
}

.address-icon {
  display: inline-flex;
  width: 12px;
  height: 12px;
  align-items: center;
  justify-content: center;
  color: var(--yellow-strong);
  flex: 0 0 auto;
}

.address-icon svg {
  width: 12px;
  height: 12px;
}

.footer-right {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.footer-right p {
  font-size: 10px;
  line-height: 1.2;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.92);
  text-align: right;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 13px;
}

.social-links a {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: color 0.22s ease, transform 0.22s ease;
}

.social-links a:hover {
  color: var(--yellow-strong);
  transform: translateY(-1px);
}

.social-links svg {
  width: 18px;
  height: 18px;
}

/* MODAIS */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.modal-window {
  position: relative;
  width: min(94vw, 820px);
  max-height: min(84vh, 820px);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(135deg, rgba(40, 49, 56, 0.92), rgba(23, 25, 28, 0.92));
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}

.modal-window.modal-size-small {
  width: min(94vw, 520px);
}

.modal-window.modal-size-wide {
  width: min(96vw, 980px);
}

.modal-scroll {
  max-height: min(84vh, 820px);
  overflow: auto;
  padding: 26px 28px 24px;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.84);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.modal-close svg {
  width: 18px;
  height: 18px;
}

.modal-content {
  color: #ffffff;
}

.modal-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-right: 24px;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--yellow-strong);
  text-align: center;
}

.modal-title--small {
  font-size: 18px;
}

.modal-title-mark {
  font-size: 18px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.modal-title-mark svg {
  width: 26px;
  height: 26px;
}

.modal-intro {
  margin-top: 24px;
  text-align: center;
}

.modal-intro h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--yellow-strong);
}

.modal-intro p {
  margin-top: 4px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.94);
}

.modal-intro-highlight {
  margin-top: 10px !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  color: #f1e669 !important;
}

.modal-paragraphs {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.modal-paragraphs--center {
  text-align: center;
}

.modal-paragraphs p {
  font-size: 14px;
  line-height: 1.6;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.94);
}

.modal-list {
  margin-top: 22px;
  display: grid;
  gap: 18px;
}

.modal-list--tight {
  gap: 14px;
}

.modal-item h3 {
  position: relative;
  padding-left: 18px;
  font-size: 16px;
  line-height: 1.32;
  font-weight: 700;
  color: var(--yellow-strong);
}

.modal-item h3::before {
  content: "◦";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--yellow-strong);
  font-size: 18px;
  line-height: 1;
}

.modal-item p {
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
}

.modal-quote {
  margin-top: 24px;
  display: grid;
  gap: 6px;
  text-align: center;
}

.modal-quote strong {
  font-size: 18px;
  line-height: 1.35;
  font-weight: 700;
  color: #f3e35a;
}

.modal-quote span {
  font-size: 15px;
  line-height: 1.5;
  font-weight: 400;
  color: #f3e35a;
}

.modal-content--contact {
  padding-top: 6px;
}

.contact-text {
  margin-top: 18px;
  text-align: center;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.94);
}

.contact-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.social-btn {
  min-height: 58px;
  padding: 0 18px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  color: #ffffff;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.social-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.social-btn-icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social-btn-icon svg {
  width: 22px;
  height: 22px;
}

.social-btn--whatsapp {
  background: #25d366;
}

.social-btn--instagram {
  background:
    linear-gradient(
      135deg,
      #405de6 0%,
      #5851db 15%,
      #833ab4 35%,
      #c13584 55%,
      #e1306c 72%,
      #fd1d1d 86%,
      #f77737 100%
    );
}

/* DOC MODAL */
.modal-doc {
  display: grid;
  gap: 18px;
}

.modal-doc-section {
  display: grid;
  gap: 8px;
}

.modal-doc-section h3 {
  font-size: 16px;
  line-height: 1.35;
  font-weight: 700;
  color: var(--yellow-strong);
}

.modal-doc-section p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.95);
}

.modal-doc-list {
  list-style: none;
  display: grid;
  gap: 8px;
}

.modal-doc-list li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
}

.modal-doc-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--yellow-strong);
}

/* TRABALHE CONOSCO */
.careers-modal {
  display: grid;
  gap: 28px;
}

.careers-title {
  font-size: 24px;
}

.careers-intro {
  text-align: center;
  font-size: 18px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.95);
  max-width: 900px;
  margin: 0 auto;
}

.careers-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.careers-card {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
  padding: 26px 30px;
  min-height: 230px;
}

.careers-card h3 {
  font-size: 28px;
  line-height: 1.15;
  font-weight: 700;
  color: #f1d63a;
  margin-bottom: 24px;
}

.careers-card p {
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.94);
}

.careers-card ul {
  list-style: none;
  display: grid;
  gap: 16px;
}

.careers-card li {
  position: relative;
  padding-left: 30px;
  font-size: 18px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.94);
}

.careers-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #f1d63a;
  font-weight: 800;
}

.careers-email {
  display: inline-block;
  margin-top: 16px;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 700;
  color: #f1d63a;
}

[hidden] {
  display: none !important;
}

/* TABLET / NOTEBOOK MENOR */
@media (max-width: 1180px) {
  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
    z-index: 6;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 2%;
    width: min(94vw, 350px);
    padding: 14px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(12, 25, 31, 0.96);
    box-shadow: var(--shadow-strong);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .main-nav.is-open {
    display: flex;
  }

  .nav-link {
    width: 100%;
    text-align: left;
    font-size: 15px;
  }

  .hero-content {
    padding-top: 118px;
    padding-bottom: 94px;
    transform: none;
  }

  .plans-panel {
    inset: calc(var(--header-height) + 8px) 12px 12px 12px;
  }

  .plans-shell,
  .plans-shell.has-expanded {
    grid-template-rows: auto minmax(0, 1fr);
    gap: 8px;
  }

  .plans-info {
    display: none;
  }

  .plans-grid {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .plans-grid.has-mobile-expanded .plan-card {
    display: none;
  }

  .plans-grid.has-mobile-expanded .plan-card.is-expanded {
    display: flex;
  }

  .plan-card {
    min-height: 0;
  }

  .plan-card-inner {
    padding: 9px 10px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 94px;
    grid-template-areas:
      "title actions"
      "speed actions"
      "price actions"
      "mini actions";
    column-gap: 8px;
    row-gap: 2px;
    align-items: center;
  }

  .plan-card.is-expanded .plan-card-inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 42px;
    position: relative;
  }

  .plan-name {
    grid-area: title;
    text-align: left;
    font-size: 13px;
  }

  .plan-card.is-expanded .plan-name {
    text-align: center;
    font-size: 15px;
  }

  .plan-speed {
    grid-area: speed;
    text-align: left;
    font-size: 20px;
    margin-top: 0;
  }

  .plan-card.is-expanded .plan-speed {
    text-align: center;
    font-size: 24px;
    margin-top: 6px;
  }

  .plan-price {
    grid-area: price;
    text-align: left;
    font-size: 12px;
    margin-top: 0;
  }

  .plan-card.is-expanded .plan-price {
    text-align: center;
    font-size: 14px;
    margin-top: 4px;
  }

  .plan-custom-input-wrap {
    margin-top: 4px;
  }

  .plan-custom-input {
    height: 34px;
    font-size: 12px;
  }

  .plan-mini-list {
    grid-area: mini;
    margin-top: 2px;
    gap: 3px;
  }

  .plan-card.is-expanded .plan-mini-list {
    margin-top: 10px;
    gap: 5px;
  }

  .plan-mini-list li {
    font-size: 10px;
  }

  .plan-card.is-expanded .plan-mini-list li {
    font-size: 11px;
  }

  .plan-expanded {
    margin-top: 8px;
    padding-top: 8px;
  }

  .plan-expanded-text {
    font-size: 11px;
    line-height: 1.3;
  }

  .plan-expanded-list {
    gap: 4px;
    margin-top: 8px;
  }

  .plan-expanded-list li {
    font-size: 10px;
    line-height: 1.25;
  }

  .plan-actions-row {
    grid-area: actions;
    width: 94px;
    margin-top: 0;
    padding-top: 0;
    gap: 6px;
  }

  .plan-card.is-expanded .plan-actions-row {
    width: 100%;
    margin-top: auto;
    padding-top: 12px;
  }

  .plan-btn {
    min-height: 30px;
    font-size: 10px;
    padding: 0 8px;
  }

  .plan-card.is-expanded .plan-btn {
    min-height: 34px;
    font-size: 11px;
  }

  .plan-mobile-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    inset: 50% 6px auto 6px;
    transform: translateY(-50%);
    pointer-events: none;
  }

  .plan-mobile-arrow {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.86);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 1;
    pointer-events: auto;
    transition: background-color 0.2s ease, border-color 0.2s ease;
  }

  .plan-mobile-arrow:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.26);
  }

  .hero-footer {
    display: none;
  }

  .modal-backdrop {
    padding: 16px;
  }

  .modal-window,
  .modal-window.modal-size-small,
  .modal-window.modal-size-wide {
    width: 100%;
    max-height: 84vh;
  }

  .modal-scroll {
    max-height: 84vh;
    padding: 22px 18px 20px;
  }

  .modal-title {
    font-size: 18px;
    justify-content: flex-start;
    text-align: left;
  }

  .contact-grid,
  .careers-grid {
    grid-template-columns: 1fr;
  }

  .careers-card {
    min-height: auto;
    padding: 22px 20px;
  }

  .careers-card h3 {
    font-size: 22px;
  }

  .careers-card p,
  .careers-card li,
  .careers-email,
  .careers-intro {
    font-size: 16px;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }

  .site-header {
    overflow: visible;
  }

  .header-inner {
    width: 94%;
    justify-content: flex-end;
  }

  .brand {
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translate(-50%, -46%);
    z-index: 5;
    transition: top 0.25s ease, transform 0.25s ease;
  }

  body.plans-open .brand {
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .brand-logo {
    height: 58px;
    width: auto;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .hero-content {
    padding-top: 124px;
  }

  .hero-title {
    max-width: 96%;
    font-size: clamp(30px, 8vw, 50px);
    line-height: 1.08;
  }

  .hero-subtitle {
    margin-top: 15px;
    font-size: clamp(14px, 3.9vw, 21px);
  }

  .hero-highlight {
    margin-top: 20px;
    font-size: clamp(20px, 4.6vw, 30px);
  }

  .hero-actions {
    margin-top: 24px;
    width: 100%;
    flex-direction: column;
    gap: 11px;
  }

  .btn {
    width: min(100%, 290px);
    min-width: unset;
    height: 48px;
    font-size: 13px;
    padding: 0 20px;
  }

  .plans-heading h2 {
    font-size: 24px;
  }

  .plans-heading p {
    font-size: 14px;
  }

  .plans-heading small {
    font-size: 11px;
  }

  .plan-card-inner {
    grid-template-columns: minmax(0, 1fr) 88px;
    padding: 8px;
  }

  .plan-speed {
    font-size: 18px;
  }

  .plan-price {
    font-size: 11px;
  }

  .plan-btn {
    min-height: 28px;
    font-size: 9px;
  }

  .plan-card.is-expanded .plan-card-inner {
    padding: 10px 38px;
  }

  .plan-card.is-expanded .plan-speed {
    font-size: 22px;
  }

  .plan-card.is-expanded .plan-price {
    font-size: 13px;
  }

  .plan-card.is-expanded .plan-btn {
    min-height: 32px;
    font-size: 10px;
  }

  .plan-expanded-text {
    font-size: 10px;
  }

  .plan-expanded-list li {
    font-size: 10px;
  }

  .plan-mobile-arrow {
    width: 24px;
    height: 24px;
    font-size: 14px;
  }
}

@media (max-width: 560px) {
  .hero-title {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .hero-highlight {
    font-size: 18px;
  }

  .plans-panel {
    inset: calc(var(--header-height) + 6px) 8px 8px 8px;
  }

  .plans-topbar {
    gap: 10px;
    padding: 0;
  }

  .plans-close {
    width: 30px;
    height: 30px;
  }

  .plan-mini-list li:nth-child(3) {
    display: none;
  }

  .brand-logo {
    height: 54px;
  }
}