:root {
  --bg: #02070b;
  --ink: #f7fbff;
  --muted: #a9bac6;
  --soft: #d9e8ef;
  --panel: rgba(7, 18, 27, 0.9);
  --panel-2: rgba(10, 28, 40, 0.76);
  --brand: #1de9b6;
  --brand-2: #44b7ff;
  --primary: #1de9b6;
  --gold: #ffd166;
  --line: rgba(128, 245, 221, 0.22);
  --line-strong: rgba(128, 245, 221, 0.52);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.44);
  --shadow-soft: 0 18px 46px rgba(0, 0, 0, 0.28);
  --radius: 8px;
  --radius-sm: 6px;
  --radius-lg: 8px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  background:
    linear-gradient(135deg, rgba(29, 233, 182, 0.11), transparent 30%),
    linear-gradient(42deg, transparent 62%, rgba(255, 209, 102, 0.08)),
    linear-gradient(180deg, #061017 0%, #02070b 52%, #03090d 100%),
    #02070b;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000, transparent 78%);
}

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

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

picture {
  display: contents;
}

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

.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.024));
  box-shadow: var(--shadow-soft);
}

.site-backdrop {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.site-backdrop img {
  position: absolute;
  width: 250px;
  opacity: 0.045;
  filter: blur(1px);
}

.site-backdrop img:nth-child(1) {
  top: 120px;
  left: -50px;
  transform: rotate(-12deg);
}

.site-backdrop img:nth-child(2) {
  top: 540px;
  right: -42px;
  transform: rotate(14deg);
}

.site-backdrop img:nth-child(3) {
  bottom: 320px;
  left: 8%;
  transform: rotate(10deg);
}

.site-backdrop img:nth-child(4) {
  bottom: -70px;
  right: 18%;
  transform: rotate(-8deg);
}

.section {
  padding: 96px 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid rgba(128, 245, 221, 0.18);
  background: rgba(4, 12, 17, 0.84);
  backdrop-filter: blur(20px) saturate(140%);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
}

.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand img {
  width: 178px;
  height: auto;
  display: block;
}

.menu,
.nav-actions,
.hero-actions,
.cta-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu {
  gap: 24px;
}

.menu a {
  position: relative;
  color: #dbeaf1;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  transition: color 0.2s ease;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -11px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--gold));
  transition: width 0.22s ease;
}

.menu a:hover,
.menu a.active {
  color: var(--brand);
}

.menu a:hover::after,
.menu a.active::after {
  width: 100%;
}

.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.15;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  box-shadow: 0 18px 42px rgba(29, 233, 182, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn:focus-visible,
.menu a:focus-visible,
.footer a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid rgba(29, 233, 182, 0.82);
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgba(29, 233, 182, 0.12);
}

.btn-primary {
  border: 0;
  color: #03110f;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 18px 44px rgba(29, 233, 182, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.btn-ghost {
  border-color: rgba(128, 245, 221, 0.26);
  color: #eaf8fb;
  background: rgba(255, 255, 255, 0.055);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.085);
}

.btn-big {
  min-height: 54px;
  padding: 0 26px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.menu-toggle span {
  width: 19px;
  height: 2px;
  border-radius: 10px;
  background: #fff;
}

.hero {
  min-height: 760px;
  display: flex;
  align-items: center;
  padding: 132px 0 76px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
  gap: 58px;
}

.brand-kicker {
  width: fit-content;
  max-width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  color: var(--soft);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.brand-kicker img {
  width: 118px;
  max-height: 34px;
  object-fit: contain;
}

h1,
h2,
h3 {
  color: var(--ink);
}

h1 {
  max-width: 780px;
  font-size: clamp(42px, 5.4vw, 70px);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(30px, 3.8vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  font-size: 21px;
  line-height: 1.18;
}

.eyebrow {
  margin-bottom: 15px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-text,
.section-head p,
.service-card p,
.split p,
.why-copy p,
.why-cards p,
.domain p,
.faq-content,
.footer p,
.cta p,
.plan p {
  color: var(--muted);
  line-height: 1.66;
}

.hero-text {
  max-width: 680px;
  margin: 24px 0 32px;
  font-size: 19px;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 36px;
}

.metric-row div,
.trust-strip,
.service-card,
.plan,
.pricing-card,
.comparison-card,
.vps-panel,
.vps-list article,
.table-wrap,
.domain,
.why-cards article,
.brand-system,
.faq button,
.faq-content,
.cta {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.024));
  box-shadow: var(--shadow-soft);
}

.metric-row div {
  min-height: 88px;
  padding: 18px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.metric-row div:hover {
  transform: translateY(-3px);
  border-color: rgba(128, 245, 221, 0.36);
}

.metric-row strong {
  display: block;
  color: #fff;
  font-size: 21px;
}

.metric-row span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
}

.hero-visual {
  position: relative;
  min-height: 590px;
}

.hero-device {
  position: absolute;
  top: 44px;
  right: 0;
  width: min(440px, 92%);
  padding: 16px;
  border: 1px solid rgba(128, 245, 221, 0.28);
  border-radius: var(--radius);
  background: rgba(5, 16, 24, 0.9);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
}

.device-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.device-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand);
}

.device-top span:nth-child(2) {
  background: var(--gold);
}

.device-top span:nth-child(3) {
  background: var(--brand-2);
}

.device-top b {
  margin-left: auto;
  color: var(--soft);
  font-size: 12px;
  text-transform: uppercase;
}

.device-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.device-grid article {
  min-height: 92px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.device-grid span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.device-grid strong {
  display: block;
  margin-top: 10px;
  color: var(--brand);
  font-size: 24px;
}

.hero-dragon {
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: min(560px, 112%);
  max-width: none;
  filter: drop-shadow(0 38px 48px rgba(0, 0, 0, 0.46));
  animation: floaty 5.4s ease-in-out infinite;
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

.trust-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: -42px;
  padding: 18px;
  backdrop-filter: blur(14px);
}

.trust-strip span,
.trust-strip a {
  color: #e8f8f5;
  font-size: 14px;
  font-weight: 900;
}

.trust-strip span::before,
.trust-strip a::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 16px rgba(29, 233, 182, 0.78);
}

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

.company-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: 34px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.024)),
    linear-gradient(120deg, rgba(29, 233, 182, 0.11), transparent 44%);
  box-shadow: var(--shadow-soft);
}

.company-panel p,
.company-card p,
.about-stack p,
.plesk-panel p {
  color: var(--muted);
  line-height: 1.66;
}

.company-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.company-card,
.plesk-panel,
.about-stack article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(2, 7, 11, 0.56);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.company-card {
  min-height: 150px;
  padding: 22px;
}

.company-card span,
.about-stack span {
  display: block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.about-stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.about-stack article {
  padding: 24px;
}

.plesk-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: start;
  gap: 24px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.plesk-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.plesk-list div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.plesk-list strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
}

.plesk-list span {
  color: var(--muted);
  line-height: 1.55;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card,
.plan,
.why-cards article {
  padding: 26px;
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.service-card:hover,
.plan:hover,
.why-cards article:hover {
  transform: translateY(-5px);
  border-color: var(--line-strong);
}

.service-card img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  margin-bottom: 20px;
}

.service-card h3,
.why-cards h3 {
  margin-bottom: 10px;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--brand);
  font-weight: 900;
}

.service-card a::after,
.cliente-card a::after,
.status-card a::after {
  content: ">";
  font-weight: 900;
  transition: transform 0.2s ease;
}

.service-card a:hover::after,
.cliente-card a:hover::after,
.status-card a:hover::after {
  transform: translateX(3px);
}

.plan-band {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.03), transparent);
}

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

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.plan h3 {
  text-transform: uppercase;
}

.plan p {
  margin: 8px 0 18px;
}

.price {
  margin-bottom: 22px;
  color: #fff;
  font-size: 34px;
  font-weight: 900;
}

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

.plan ul {
  flex: 1;
  display: grid;
  gap: 12px;
  margin-bottom: 26px;
  list-style: none;
}

.plan li {
  color: #e8f3f8;
}

.plan li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--brand);
}

.featured {
  border-color: var(--brand);
  transform: translateY(-8px);
  background:
    linear-gradient(180deg, rgba(29, 233, 182, 0.13), rgba(255, 255, 255, 0.028)),
    rgba(7, 18, 27, 0.84);
}

.badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 18px;
  border-radius: 999px;
  color: #03110f;
  background: linear-gradient(135deg, var(--brand), var(--gold));
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  align-items: center;
  gap: 48px;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 26px 0;
}

.check-list span {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  color: #e8f8f5;
  font-weight: 800;
}

.section-btn {
  margin-top: 2px;
}

.vps-panel {
  position: relative;
  min-height: 550px;
  overflow: hidden;
  padding: 26px;
  background:
    radial-gradient(circle at 30% 24%, rgba(29, 233, 182, 0.18), transparent 32%),
    linear-gradient(155deg, rgba(9, 26, 36, 0.94), rgba(2, 7, 11, 0.94));
}

.vps-panel > img,
.vps-panel > picture > img {
  position: absolute;
  left: -42px;
  bottom: -52px;
  width: 430px;
  filter: drop-shadow(0 28px 38px rgba(0, 0, 0, 0.46));
}

.vps-list {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 12px;
  width: min(380px, 100%);
  margin-left: auto;
}

.vps-list article {
  display: grid;
  gap: 8px;
  padding: 20px;
  box-shadow: none;
  background: rgba(2, 7, 11, 0.74);
}

.vps-list strong {
  font-size: 20px;
}

.vps-list span {
  color: var(--muted);
}

.vps-list b {
  color: var(--brand);
}

.vps-list a {
  justify-self: start;
  color: #02100d;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  border-radius: 999px;
  padding: 8px 13px;
  font-size: 12px;
  font-weight: 900;
}

.dedicated {
  position: relative;
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(360px, 0.8fr);
  align-items: center;
  gap: 30px;
  overflow: hidden;
  padding: 34px 42px 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(7, 18, 27, 0.94), rgba(7, 18, 27, 0.64)),
    radial-gradient(circle at 76% 50%, rgba(29, 233, 182, 0.18), transparent 34%);
  box-shadow: var(--shadow);
}

.dedicated-copy {
  max-width: 640px;
  padding-bottom: 34px;
}

.dedicated-dragon {
  align-self: end;
  width: min(500px, 100%);
  filter: drop-shadow(0 32px 42px rgba(0, 0, 0, 0.42));
}

.table-wrap {
  margin-top: 34px;
  overflow-x: auto;
  padding: 10px;
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

th,
td {
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  text-align: left;
}

th {
  color: var(--brand);
  font-size: 13px;
  text-transform: uppercase;
}

td:last-child {
  color: var(--brand);
  font-weight: 900;
}

.domain {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(0, 1.26fr);
  align-items: center;
  gap: 26px;
  padding: 30px;
}

.domain-card {
  min-height: 230px;
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 28px;
  border: 1px solid rgba(128, 245, 221, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(29, 233, 182, 0.12), rgba(68, 183, 255, 0.06)),
    rgba(2, 7, 11, 0.68);
}

.domain-card span {
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.domain-card strong {
  color: #fff;
  font-size: clamp(54px, 7vw, 82px);
  line-height: 0.95;
}

.domain-card p {
  max-width: 460px;
  color: var(--muted);
  line-height: 1.62;
}

.domain-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 130px 140px;
  gap: 10px;
}

.domain-result {
  grid-column: 1 / -1;
  margin: 0;
  padding: 13px 15px;
  border: 1px solid rgba(87, 240, 212, 0.22);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  font-weight: 800;
}

.domain-result[data-status="available"] {
  border-color: rgba(87, 240, 212, 0.58);
  background: rgba(39, 224, 187, 0.12);
  color: #bffff3;
}

.domain-result[data-status="unavailable"],
.domain-result[data-status="invalid"] {
  border-color: rgba(255, 107, 107, 0.48);
  background: rgba(255, 107, 107, 0.12);
  color: #ffd4d4;
}

.domain-result[data-status="warning"],
.domain-result[data-status="unknown"] {
  border-color: rgba(255, 200, 87, 0.46);
  background: rgba(255, 200, 87, 0.12);
  color: #ffe6a8;
}

.domain-note {
  grid-column: 1 / -1;
  margin: 0;
  padding: 12px 14px;
  border-left: 3px solid var(--brand);
  border-radius: var(--radius-sm);
  background: linear-gradient(90deg, rgba(39, 224, 187, 0.13), rgba(68, 183, 255, 0.055));
  color: #dffdf7;
  font-weight: 800;
}

.domain:focus-within {
  border-color: rgba(87, 240, 212, 0.36);
  box-shadow: 0 28px 80px rgba(29, 233, 182, 0.11);
}

.tld-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 18px 0 22px;
}

.tld-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(87, 240, 212, 0.22);
  border-radius: 999px;
  background: rgba(39, 224, 187, 0.08);
  color: #dffdf7;
  font-weight: 900;
  font-size: 13px;
}

input,
select {
  width: 100%;
  height: 52px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: 0;
  color: #fff;
  background: #06111d;
  font: inherit;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

button,
input,
select,
textarea {
  font: inherit;
}

input:focus,
select:focus {
  border-color: var(--line-strong);
  background: #071625;
  box-shadow: 0 0 0 4px rgba(29, 233, 182, 0.09);
}

.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.36fr) minmax(0, 0.64fr);
  gap: 34px;
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.why-cards span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.brand-system {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  align-items: center;
  gap: 26px;
  padding: 28px;
}

.castle-manager {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 30px;
  margin-bottom: 80px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 14% 16%, rgba(29, 233, 182, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.024));
  box-shadow: var(--shadow);
}

.castle-manager p {
  color: var(--muted);
  line-height: 1.66;
}

.castle-manager .btn {
  margin-top: 22px;
}

.manager-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.manager-grid article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(2, 7, 11, 0.62);
}

.manager-grid strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
}

.manager-grid span {
  color: var(--muted);
  line-height: 1.52;
}

.logo-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.logo-row img {
  width: 100%;
  height: 74px;
  object-fit: contain;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.18);
}

.faq {
  display: grid;
  gap: 12px;
}

.faq button {
  width: 100%;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  color: #fff;
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.faq button span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  color: #03110f;
  background: var(--brand);
}

.faq-content {
  margin-top: -12px;
  padding: 0 20px 20px;
  border-top: 0;
  box-shadow: none;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-6px);
  transition: max-height .28s ease, opacity .22s ease, transform .22s ease, padding .22s ease;
}

.faq .active + .faq-content {
  max-height: 180px;
  opacity: 1;
  transform: translateY(0);
  padding-top: 16px;
}

.cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.42fr);
  align-items: center;
  gap: 26px;
  margin-bottom: 80px;
  padding: 44px 48px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 22%, rgba(57, 197, 255, 0.18), transparent 30%),
    radial-gradient(circle at 14% 86%, rgba(29, 233, 182, 0.14), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018));
}

.cta::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(29, 233, 182, 0.12);
  border-radius: calc(var(--radius) - 4px);
  pointer-events: none;
}

.cta-copy {
  position: relative;
  z-index: 2;
  max-width: 740px;
}

.cta-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 14px 0 24px;
}

.cta-actions {
  align-items: stretch;
}

.cta-actions .btn {
  min-width: 156px;
}

.cta-art {
  position: relative;
  z-index: 1;
  min-height: 250px;
}

.cta-art img {
  position: absolute;
  right: -22px;
  bottom: -58px;
  width: min(340px, 100%);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 28px 34px rgba(0, 0, 0, 0.52));
}

.service-compact-cta {
  grid-template-columns: minmax(0, 1fr) auto;
  min-height: 0;
  gap: 24px;
  margin-bottom: 56px;
  padding: 26px 34px;
}

.service-compact-cta > picture {
  display: none;
}

.service-compact-cta h2 {
  max-width: 760px;
  font-size: clamp(30px, 3.4vw, 48px);
}

.service-compact-cta .cta-actions {
  justify-content: flex-end;
}

.service-page {
  padding-top: 118px;
}

.service-hero {
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.8fr);
  align-items: center;
  gap: 42px;
  padding: 46px 0 72px;
}

.service-hero h1 {
  font-size: clamp(40px, 5vw, 64px);
}

.service-hero-art {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 52% 42%, rgba(29, 233, 182, 0.2), transparent 42%),
    linear-gradient(155deg, rgba(9, 26, 36, 0.9), rgba(2, 7, 11, 0.94));
  overflow: hidden;
  box-shadow: var(--shadow);
}

.service-hero-art img {
  max-height: 430px;
  object-fit: contain;
  filter: drop-shadow(0 30px 38px rgba(0, 0, 0, 0.45));
}

.service-hero-art.domain-art {
  min-height: 520px;
  place-items: end center;
}

.service-hero-art.domain-art img:not(.symbol) {
  width: min(560px, 112%);
  max-height: 560px;
}

.service-hero-art .symbol {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 70px;
  opacity: 0.55;
}

.service-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.service-meta div,
.feature-list article,
.domain-reasons article,
.pricing-card,
.comparison-card,
.faq-mini article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.024));
  box-shadow: var(--shadow-soft);
}

.service-meta div {
  padding: 18px;
}

.service-meta strong {
  display: block;
  color: #fff;
  font-size: 20px;
}

.service-meta span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.feature-list article,
.domain-reasons article,
.pricing-card,
.comparison-card,
.faq-mini article {
  padding: 24px;
  min-width: 0;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.feature-list p,
.domain-reasons p,
.pricing-card p,
.comparison-card p,
.faq-mini p {
  color: var(--muted);
  line-height: 1.62;
}

.feature-list span {
  display: block;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.feature-list article:hover,
.domain-reasons article:hover,
.comparison-card:hover,
.about-stack article:hover,
.castle-manager:hover {
  transform: translateY(-5px);
  border-color: var(--line-strong);
  box-shadow: 0 22px 60px rgba(29, 233, 182, 0.14);
}

.domain-reasons {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.domain-reasons span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #02100d;
  font-weight: 1000;
}

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

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

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card.highlight {
  border-color: var(--brand);
}

.pricing-card .price {
  margin: 16px 0 20px;
}

.pricing-card ul,
.comparison-card ul {
  display: grid;
  gap: 11px;
  margin-bottom: 24px;
  list-style: none;
}

.pricing-card li,
.comparison-card li {
  color: #e8f3f8;
}

.pricing-card li::before,
.comparison-card li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--brand);
}

.support-note {
  margin-top: 22px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  background: rgba(14, 26, 35, 0.72);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.22);
}

.support-note h3 {
  margin-bottom: 10px;
}

.support-note p {
  margin-top: 8px;
  color: var(--muted);
}

.service-table {
  margin-top: 0;
}

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

.faq-mini {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

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

.cliente-card {
  position: relative;
  min-height: 285px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 88% 16%, rgba(29, 233, 182, 0.13), transparent 28%),
    rgba(2, 7, 11, 0.64);
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.cliente-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
}

.cliente-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 92px;
  margin-bottom: 22px;
  padding: 14px;
  border: 1px solid rgba(29, 233, 182, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(29, 233, 182, 0.06)),
    rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

.cliente-logo img {
  display: block;
  max-width: 100%;
  max-height: 66px;
  object-fit: contain;
}

.cliente-logo-wide img {
  width: 100%;
}

.cliente-logo-mark img {
  width: 130px;
  max-height: 54px;
}

.cliente-logo-rauen img {
  width: min(100%, 255px);
  max-height: 72px;
}

.cliente-logo-fallback {
  color: var(--brand);
  font-size: 30px;
  font-weight: 950;
  letter-spacing: 0;
  text-shadow: 0 0 22px rgba(29, 233, 182, 0.32);
}

.cliente-card h3 {
  margin-bottom: 10px;
}

.cliente-card p {
  color: var(--muted);
  line-height: 1.62;
}

.cliente-card a {
  display: inline-flex;
  margin-top: 22px;
  color: var(--brand);
  font-weight: 900;
}

.service-cta {
  margin-top: 24px;
}

.ideal-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.ideal-grid article {
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  border: 1px solid rgba(29, 233, 182, 0.18);
  border-radius: var(--radius);
  color: #f7fbff;
  background: rgba(7, 18, 27, 0.82);
  font-weight: 900;
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.ideal-grid article:hover,
.plan:hover,
.pricing-card:hover,
.service-card:hover,
.feature-list article:hover,
.about-stack article:hover,
.comparison-card:hover,
.cliente-card:hover,
.manager-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(29, 233, 182, 0.42);
  box-shadow: 0 20px 48px rgba(29, 233, 182, 0.1);
}

.domain-form input:focus,
.domain-form select:focus,
.help-search input:focus {
  border-color: rgba(29, 233, 182, 0.62);
  box-shadow: 0 0 0 4px rgba(29, 233, 182, 0.12);
}

.footer {
  padding: 58px 0 26px;
  border-top: 1px solid rgba(29, 233, 182, 0.16);
  background:
    linear-gradient(180deg, rgba(3, 13, 20, 0.98), #02070d),
    linear-gradient(90deg, rgba(29, 233, 182, 0.06), transparent 42%, rgba(255, 209, 102, 0.04));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 0.9fr 1fr;
  align-items: start;
  gap: 34px;
}

.footer-grid > div {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-logo {
  width: 220px;
  margin-bottom: 16px;
}

.footer h3 {
  margin-bottom: 14px;
  color: #fff;
  font-size: 16px;
}

.footer-slogan {
  display: inline-flex;
  width: fit-content;
  margin-top: 8px;
  padding: 8px 10px;
  border: 1px solid rgba(29, 233, 182, 0.2);
  border-radius: 999px;
  color: var(--brand);
  background: rgba(29, 233, 182, 0.06);
  font-size: 13px;
}

.footer-subtitle {
  margin-top: 22px;
  font-size: 15px;
  line-height: 1.62;
}

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

.footer a {
  display: block;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.55;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer a:hover {
  color: var(--brand);
  transform: translateX(3px);
}

.full {
  width: 100%;
  margin-bottom: 10px !important;
}

.footer .btn {
  display: inline-flex;
  width: 100%;
  min-height: 46px;
  margin: 0 0 10px !important;
  padding: 0 14px;
  color: #eefaff;
  text-align: center;
}

.footer .btn-primary {
  color: #03110f;
}

.copyright {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--muted);
  font-size: 13px;
}

.legal-page {
  padding: 150px 0 70px;
}

.legal-hero {
  padding: 44px 0 26px;
}

.legal-hero h1 {
  max-width: 900px;
}

.legal-hero p {
  max-width: 820px;
  color: var(--muted);
  line-height: 1.7;
}

.legal-content {
  display: grid;
  gap: 18px;
  max-width: 980px;
}

.legal-content article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025));
  box-shadow: var(--shadow-soft);
}

.legal-content h2 {
  margin-bottom: 12px;
  font-size: clamp(22px, 2.4vw, 30px);
}

.legal-content p {
  color: var(--muted);
  line-height: 1.75;
}

.about-page .section {
  padding-top: 78px;
  padding-bottom: 78px;
}

.about-hero {
  min-height: 620px;
}

.about-hero .service-hero-art {
  min-height: 460px;
}

.about-hero .service-hero-art img,
.status-hero .service-hero-art img {
  max-height: 500px;
  object-fit: contain;
}

.about-meta div {
  min-height: 138px;
}

.about-story {
  align-items: stretch;
}

.about-story > div:first-child {
  max-width: 760px;
}

.about-story p:not(.eyebrow) {
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.78;
}

.story-split .panel-note {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 85% 15%, rgba(29, 233, 182, 0.15), transparent 38%),
    rgba(255, 255, 255, 0.035);
}

.story-split .panel-note h3 {
  margin-bottom: 12px;
  font-size: 28px;
}

.note-icon,
.about-solutions-grid span,
.about-reasons-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border: 1px solid rgba(29, 233, 182, 0.28);
  border-radius: 14px;
  background: rgba(29, 233, 182, 0.08);
  color: var(--primary);
  font-size: 13px;
  font-weight: 900;
}

.about-solutions-grid,
.about-reasons-grid {
  display: grid;
  gap: 18px;
}

.about-solutions-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.about-solutions-grid article,
.about-reasons-grid article,
.drakonis-ai-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 90% 10%, rgba(29, 233, 182, 0.12), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
  box-shadow: var(--shadow-soft);
}

.about-solutions-grid article,
.about-reasons-grid article {
  min-height: 230px;
  padding: 26px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.about-solutions-grid article:hover,
.about-reasons-grid article:hover,
.drakonis-ai-card:hover {
  transform: translateY(-4px);
  border-color: rgba(29, 233, 182, 0.48);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.34), 0 0 26px rgba(29, 233, 182, 0.08);
}

.about-solutions-grid h3,
.about-reasons-grid h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.about-solutions-grid p,
.about-reasons-grid p,
.drakonis-ai-card p {
  color: var(--muted);
  line-height: 1.68;
}

.drakonis-ai-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  align-items: center;
  gap: 28px;
  padding: 34px;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.drakonis-ai-card img {
  width: min(210px, 100%);
  max-height: 220px;
  object-fit: contain;
  filter: drop-shadow(0 22px 28px rgba(0, 0, 0, 0.4));
}

.ai-title-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
}

.ai-title-row h2 {
  margin: 0;
}

.ai-title-row span {
  display: inline-flex;
  padding: 8px 12px;
  border: 1px solid rgba(29, 233, 182, 0.32);
  border-radius: 999px;
  background: rgba(29, 233, 182, 0.09);
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.muted-note {
  margin-top: 14px;
  font-size: 14px;
}

.about-final-cta {
  grid-template-columns: 1fr;
  min-height: 0;
  margin-top: 8px;
  margin-bottom: 70px;
}

.about-final-cta::after {
  pointer-events: none;
}

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

.status-card {
  display: grid;
  min-height: 220px;
  gap: 18px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 85% 10%, rgba(29, 233, 182, 0.12), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
  box-shadow: var(--shadow-soft);
}

.status-card h3 {
  margin-bottom: 8px;
  font-size: 24px;
}

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

.status-card a {
  align-self: end;
  color: var(--brand);
  font-weight: 900;
}

.status-pill {
  justify-self: start;
  align-self: start;
  padding: 8px 14px;
  border: 1px solid rgba(29, 233, 182, 0.35);
  border-radius: 999px;
  color: #041513;
  background: var(--brand);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.status-pill.soon {
  border-color: rgba(255, 213, 106, 0.42);
  background: rgba(255, 213, 106, 0.16);
  color: var(--gold);
}

.status-updated {
  margin-top: 22px;
  color: var(--muted);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  color: #03110f;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 18px 45px rgba(29, 233, 182, 0.32);
  font-size: 0;
  font-weight: 900;
}

.whatsapp-float::before {
  content: "";
  width: 31px;
  height: 31px;
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg width='31' height='31' viewBox='0 0 31 31' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%2303110f' d='M15.5 0C6.95 0 0 6.72 0 15c0 2.64.72 5.22 2.08 7.47L.72 30l7.85-1.32A16.1 16.1 0 0 0 15.5 30C24.05 30 31 23.28 31 15S24.05 0 15.5 0Zm0 27.18c-2.3 0-4.55-.63-6.5-1.83l-.47-.28-4.65.78.8-4.42-.31-.49A11.71 11.71 0 0 1 2.93 15c0-6.73 5.64-12.19 12.57-12.19S28.07 8.27 28.07 15 22.43 27.18 15.5 27.18Zm7.3-8.98c-.4-.2-2.35-1.13-2.71-1.26-.36-.13-.62-.2-.88.2-.26.38-1.01 1.26-1.24 1.52-.23.26-.46.29-.86.1-.4-.2-1.69-.6-3.22-1.93-1.19-1.03-2-2.31-2.23-2.7-.23-.39-.02-.6.17-.8.18-.17.4-.45.6-.67.2-.23.26-.39.4-.65.13-.26.07-.49-.03-.68-.1-.2-.88-2.06-1.21-2.82-.32-.74-.65-.64-.88-.65h-.75c-.26 0-.68.1-1.04.49-.36.39-1.37 1.3-1.37 3.17 0 1.87 1.4 3.68 1.6 3.94.2.26 2.76 4.09 6.68 5.73.93.4 1.66.64 2.23.82.94.29 1.79.25 2.46.15.75-.11 2.35-.93 2.68-1.83.33-.9.33-1.67.23-1.83-.1-.16-.36-.26-.76-.45Z'/%3E%3C/svg%3E");
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1060px) {
  .menu-toggle {
    display: flex;
  }

  .menu {
    position: absolute;
    top: 74px;
    left: 0;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 22px 5%;
    border-bottom: 1px solid var(--line);
    background: #03101a;
  }

  .menu.open {
    display: flex;
  }

  .menu a {
    padding: 10px 0;
  }

  .nav-actions {
    display: none;
  }

  .hero-grid,
  .split,
  .service-hero,
  .company-panel,
  .plesk-panel,
  .dedicated,
  .domain,
  .why-grid,
  .brand-system,
  .castle-manager,
  .status-grid,
  .about-solutions-grid,
  .about-reasons-grid,
  .drakonis-ai-card,
  .footer-grid,
  .cta {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 118px;
  }

  .hero-visual {
    min-height: 520px;
  }

  .hero-dragon {
    right: 0;
    width: min(560px, 100%);
  }

  .service-grid,
  .plans,
  .feature-list,
  .ideal-grid,
  .domain-reasons,
  .pricing-grid,
  .pricing-grid.hosting-pricing-grid,
  .faq-mini {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .featured {
    transform: none;
  }

  .domain-form {
    grid-template-columns: minmax(0, 1fr);
  }

  .cta {
    margin-bottom: 46px;
  }
}

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

  .nav {
    min-height: 68px;
    gap: 10px;
  }

  .menu {
    top: 68px;
  }

  .section {
    padding: 64px 0;
  }

  .brand img {
    width: min(154px, calc(100vw - 92px));
  }

  h1 {
    font-size: 34px;
    line-height: 1.05;
  }

  h2 {
    font-size: 30px;
    line-height: 1.12;
  }

  .hero {
    min-height: auto;
    padding-top: 102px;
    padding-bottom: 34px;
  }

  .hero-grid,
  .service-hero {
    gap: 26px;
  }

  .hero-text,
  .service-hero .hero-text {
    font-size: 16px;
    line-height: 1.62;
  }

  .brand-kicker {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn,
  .cta-actions .btn {
    width: 100%;
  }

  .metric-row,
  .company-cards,
  .about-stack,
  .plesk-list,
  .service-grid,
  .plans,
  .service-meta,
  .feature-list,
  .domain-reasons,
  .pricing-grid,
  .pricing-grid.hosting-pricing-grid,
  .comparison-grid,
  .faq-mini,
  .clientes-grid,
  .check-list,
  .manager-grid,
  .why-cards,
  .logo-row {
    grid-template-columns: 1fr;
  }

  .service-hero-art {
    min-height: 360px;
  }

  .about-page .section {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .about-hero {
    min-height: 0;
  }

  .about-hero .service-hero-art {
    min-height: 340px;
  }

  .about-hero .service-hero-art img {
    max-height: 340px;
  }

  .about-solutions-grid article,
  .about-reasons-grid article {
    min-height: 0;
    padding: 22px;
  }

  .drakonis-ai-card {
    gap: 18px;
    padding: 24px;
  }

  .drakonis-ai-card picture {
    order: -1;
    display: flex;
    justify-content: flex-start;
  }

  .drakonis-ai-card img {
    width: 160px;
    max-height: 170px;
  }

  .service-hero-art.domain-art {
    min-height: 430px;
  }

  .trust-strip {
    margin-top: 0;
  }

  .hero-visual {
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .hero-device {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    padding: 12px;
    z-index: 2;
  }

  .hero-dragon {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(360px, 100%);
    margin: -34px auto 0;
    animation: none;
  }

  .vps-panel {
    min-height: auto;
    padding-bottom: 280px;
  }

  .vps-panel > img,
  .vps-panel > picture > img {
    left: 50%;
    bottom: -34px;
    width: min(330px, 100%);
    transform: translateX(-50%);
  }

  .vps-list {
    margin: 0 auto;
  }

  .dedicated {
    min-height: auto;
    padding: 26px 24px 0;
  }

  .dedicated-dragon {
    width: min(360px, 100%);
    margin: 0 auto;
  }

  .cta {
    grid-template-columns: 1fr;
    padding: 30px 22px 0;
    text-align: left;
  }

  .cta-art {
    min-height: 220px;
  }

  .cta-art img {
    right: 50%;
    bottom: -42px;
    width: min(300px, 100%);
    transform: translateX(50%);
  }

  .service-compact-cta {
    grid-template-columns: 1fr;
    padding: 24px;
    text-align: left;
  }

  .service-compact-cta .cta-actions {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
  }

  .footer .btn,
  .nav-actions .btn,
  .hero-actions .btn,
  .cta-actions .btn {
    min-width: 0;
    text-align: center;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(100% - 22px, 1180px);
  }

  .brand img {
    width: min(138px, calc(100vw - 84px));
  }

  .btn {
    padding: 0 14px;
    font-size: 13px;
  }

  .price {
    font-size: 30px;
  }

  .hero-visual {
    min-height: 0;
  }

  .device-grid {
    grid-template-columns: 1fr;
  }

  .hero-dragon {
    width: min(310px, 100%);
    margin-top: -22px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
  }
}

/* Home redesign */
.home-main {
  background:
    radial-gradient(circle at 78% 8%, rgba(29, 233, 182, 0.12), transparent 28%),
    radial-gradient(circle at 12% 28%, rgba(68, 183, 255, 0.08), transparent 30%),
    #0b0f12;
}

.home-redesign .section {
  padding: 96px 0;
}

.home-hero {
  position: relative;
  min-height: 850px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 128px 0 78px;
  border-bottom: 1px solid rgba(29, 233, 182, 0.12);
}

.home-hero::before,
.home-hero::after,
.home-ecosystem-map::before {
  content: "";
  position: absolute;
  pointer-events: none;
}

.home-hero::before {
  inset: 74px 0 0;
  background:
    linear-gradient(rgba(29, 233, 182, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 233, 182, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
}

.home-hero::after {
  left: 50%;
  bottom: 52px;
  width: min(760px, 86vw);
  height: 180px;
  transform: translateX(-2%);
  border: 1px solid rgba(29, 233, 182, 0.16);
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(29, 233, 182, 0.11), transparent 66%);
  filter: blur(0.2px);
}

.home-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.home-particles span {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #00ffb2;
  opacity: 0.34;
  box-shadow: 0 0 18px rgba(0, 255, 178, 0.72);
  animation: homeParticle 8s ease-in-out infinite;
}

.home-particles span:nth-child(1) { left: 12%; top: 26%; animation-delay: 0s; }
.home-particles span:nth-child(2) { left: 32%; top: 72%; animation-delay: 1.3s; }
.home-particles span:nth-child(3) { left: 58%; top: 22%; animation-delay: 2.2s; }
.home-particles span:nth-child(4) { left: 82%; top: 64%; animation-delay: 3.1s; }
.home-particles span:nth-child(5) { left: 72%; top: 38%; animation-delay: 4.4s; }

@keyframes homeParticle {
  0%, 100% { transform: translate3d(0, 0, 0); opacity: 0.18; }
  50% { transform: translate3d(18px, -18px, 0); opacity: 0.46; }
}

.home-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  align-items: center;
  gap: 44px;
}

.home-kicker {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 10px 14px;
  border: 1px solid rgba(29, 233, 182, 0.28);
  border-radius: var(--radius);
  color: var(--brand);
  background: rgba(29, 233, 182, 0.06);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-hero h1 {
  max-width: 760px;
  font-size: clamp(44px, 5.2vw, 74px);
  line-height: 1.01;
}

.home-hero h1 span {
  color: var(--brand);
  text-shadow: 0 0 26px rgba(29, 233, 182, 0.18);
}

.home-hero-copy .hero-text {
  max-width: 650px;
}

.home-hero-stage {
  position: relative;
  min-height: 650px;
  perspective: 900px;
}

.home-orbit {
  position: absolute;
  left: 50%;
  bottom: 38px;
  z-index: 1;
  width: min(520px, 90%);
  aspect-ratio: 1 / 0.36;
  transform: translateX(-50%);
  border: 1px solid rgba(29, 233, 182, 0.34);
  border-radius: 50%;
  box-shadow: 0 0 48px rgba(29, 233, 182, 0.18), inset 0 0 34px rgba(29, 233, 182, 0.08);
  animation: homePulse 3.8s ease-in-out infinite;
}

.home-hero-drakonis {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 3;
  width: min(560px, 95%);
  max-width: none;
  transform: translateX(-50%);
  filter: drop-shadow(0 34px 42px rgba(0, 0, 0, 0.5));
  animation: homeFloat 5.4s ease-in-out infinite;
}

.holo-card {
  position: absolute;
  z-index: 4;
  width: 205px;
  min-height: 92px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 16px 18px;
  border: 1px solid rgba(29, 233, 182, 0.34);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(29, 233, 182, 0.11), rgba(68, 183, 255, 0.05)),
    rgba(9, 18, 24, 0.72);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28), 0 0 24px rgba(29, 233, 182, 0.08);
  backdrop-filter: blur(12px);
  animation: holoIn 0.7s ease both, homePulse 4.6s ease-in-out infinite;
}

.holo-card::before {
  content: "";
  position: absolute;
  left: -46px;
  top: 50%;
  width: 46px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(29, 233, 182, 0.55));
}

.holo-card strong {
  color: #fff;
  font-size: 15px;
}

.holo-card span {
  color: var(--muted);
  line-height: 1.35;
  font-size: 13px;
}

.holo-card-1 { top: 52px; left: 4%; animation-delay: 0.05s; }
.holo-card-2 { top: 176px; left: 0; animation-delay: 0.16s; }
.holo-card-3 { top: 302px; left: 5%; animation-delay: 0.27s; }
.holo-card-4 { top: 84px; right: 0; animation-delay: 0.38s; }
.holo-card-5 { top: 230px; right: 2%; animation-delay: 0.49s; }
.holo-card-6 { top: 378px; right: 8%; animation-delay: 0.6s; }

@keyframes homeFloat {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-12px); }
}

@keyframes homePulse {
  0%, 100% { box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28), 0 0 18px rgba(29, 233, 182, 0.08); }
  50% { box-shadow: 0 22px 52px rgba(0, 0, 0, 0.34), 0 0 34px rgba(29, 233, 182, 0.18); }
}

@keyframes holoIn {
  from { opacity: 0; transform: translateY(18px) rotateX(8deg); }
  to { opacity: 1; transform: translateY(0) rotateX(0); }
}

.home-trust-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: -54px;
}

.home-trust-grid article,
.home-drakonis-panel,
.home-picker-card,
.home-plan-shell,
.home-price-card,
.home-vps-card,
.home-recommender,
.home-recommendation-card,
.home-checklist,
.home-diagnostic-panel,
.home-ecosystem-map,
.home-diff-grid article,
.home-final-cta {
  border: 1px solid rgba(29, 233, 182, 0.18);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(14, 26, 35, 0.82), rgba(7, 14, 19, 0.78));
  box-shadow: var(--shadow-soft);
}

.home-trust-grid article {
  min-height: 112px;
  padding: 18px;
}

.home-trust-grid strong,
.home-recommendation-card strong,
.home-diagnostic-panel strong {
  display: block;
  color: #fff;
  font-size: 19px;
}

.home-trust-grid span,
.home-tab-note,
.home-picker-card span,
.home-recommendation-card p,
.home-diagnostic-panel p,
.home-ecosystem-map span,
.home-diff-grid p,
.home-final-cta p,
.home-vps-note {
  color: var(--muted);
  line-height: 1.6;
}

.home-guide-grid,
.home-diagnostic-grid,
.home-recommender {
  display: grid;
  grid-template-columns: minmax(290px, 0.36fr) minmax(0, 0.64fr);
  gap: 26px;
  align-items: stretch;
}

.home-section-head-left {
  max-width: 780px;
  margin: 0 0 28px;
  text-align: left;
}

.home-drakonis-panel {
  position: relative;
  overflow: hidden;
  padding: 26px;
}

.home-drakonis-panel picture,
.home-diagnostic-panel picture {
  display: flex;
  justify-content: center;
}

.home-drakonis-panel img {
  width: min(320px, 100%);
  max-height: 360px;
  object-fit: contain;
  margin: 10px auto -16px;
  filter: drop-shadow(0 24px 30px rgba(0, 0, 0, 0.46));
}

.home-drakonis-bubble {
  position: relative;
  z-index: 2;
  padding: 16px;
  border: 1px solid rgba(29, 233, 182, 0.22);
  border-radius: var(--radius);
  color: #e8fff9;
  background: rgba(2, 7, 11, 0.66);
  line-height: 1.55;
}

.home-service-picker {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.home-picker-card {
  min-height: 160px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 20px;
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.home-picker-card strong {
  color: #fff;
  font-size: 20px;
}

.home-picker-card:hover,
.home-picker-card.is-active,
.home-price-card:hover,
.home-vps-card:hover,
.home-diff-grid article:hover,
.home-ecosystem-map article:hover {
  transform: translateY(-4px);
  border-color: rgba(29, 233, 182, 0.5);
  box-shadow: 0 20px 52px rgba(29, 233, 182, 0.1), var(--shadow-soft);
}

.home-picker-card.is-active {
  background:
    radial-gradient(circle at 18% 12%, rgba(29, 233, 182, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(14, 26, 35, 0.9), rgba(7, 14, 19, 0.8));
}

.home-plan-shell {
  padding: 22px;
}

.home-plan-tabs {
  display: inline-flex;
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(29, 233, 182, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.home-plan-tabs button {
  min-height: 42px;
  padding: 0 18px;
  border: 0;
  border-radius: var(--radius-sm);
  color: var(--muted);
  background: transparent;
  font-weight: 900;
  cursor: pointer;
}

.home-plan-tabs button.is-active {
  color: #03110f;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
}

.home-tab-note {
  margin: 12px 0 22px;
  font-size: 14px;
}

.home-plan-panel {
  display: none;
  gap: 18px;
  animation: tabIn 0.28s ease both;
}

.home-plan-panel.is-active {
  display: grid;
}

.home-plan-panel[data-plan-panel="hosting"] {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-plan-panel[data-plan-panel="vps"] {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-price-card,
.home-vps-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 26px;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.home-price-card h3,
.home-vps-card h3 {
  text-transform: uppercase;
}

.home-price-card p,
.home-vps-card p {
  color: var(--muted);
  line-height: 1.62;
}

.home-price-card ul {
  flex: 1;
  display: grid;
  gap: 12px;
  margin: 22px 0 26px;
  list-style: none;
}

.home-price-card li {
  color: #e8f3f8;
}

.home-price-card li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 16px rgba(29, 233, 182, 0.55);
}

.home-price-card.is-featured,
.home-vps-card.is-featured {
  border-color: rgba(29, 233, 182, 0.62);
  background:
    radial-gradient(circle at 85% 8%, rgba(255, 209, 102, 0.13), transparent 28%),
    linear-gradient(180deg, rgba(29, 233, 182, 0.11), rgba(7, 14, 19, 0.8));
}

.home-plan-more {
  grid-column: 1 / -1;
  justify-self: center;
  color: var(--brand);
  font-weight: 900;
}

.home-vps-note {
  grid-column: 1 / -1;
  padding: 16px;
  border: 1px solid rgba(29, 233, 182, 0.18);
  border-radius: var(--radius);
  background: rgba(29, 233, 182, 0.055);
}

@keyframes tabIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.home-recommender {
  grid-template-columns: minmax(0, 1fr) minmax(290px, 0.38fr);
  padding: 30px;
}

.home-choice-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.home-choice-list button {
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid rgba(29, 233, 182, 0.22);
  border-radius: var(--radius);
  color: #eafffb;
  background: rgba(255, 255, 255, 0.045);
  font-weight: 900;
  cursor: pointer;
}

.home-choice-list button.is-active {
  color: #03110f;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
}

.home-recommendation-card {
  padding: 24px;
}

.home-recommendation-card span,
.home-diagnostic-panel span {
  display: block;
  margin-bottom: 10px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.home-recommendation-card p {
  margin: 12px 0 20px;
}

.home-diagnostic-grid {
  grid-template-columns: minmax(0, 0.32fr) minmax(0, 0.34fr) minmax(300px, 0.34fr);
  align-items: start;
}

.home-checklist {
  display: grid;
  gap: 10px;
  padding: 22px;
}

.home-checklist label {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(29, 233, 182, 0.12);
  border-radius: var(--radius-sm);
  color: #eefaff;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
}

.home-checklist input {
  width: 18px;
  height: 18px;
  accent-color: var(--brand);
}

.home-diagnostic-panel {
  position: relative;
  overflow: hidden;
  padding: 22px;
}

.home-diagnostic-panel img {
  width: min(210px, 75%);
  max-height: 230px;
  object-fit: contain;
  margin: -10px auto -24px;
  filter: drop-shadow(0 22px 28px rgba(0, 0, 0, 0.45));
}

.home-diagnostic-panel .btn {
  margin-top: 18px;
}

.home-ecosystem-map {
  position: relative;
  min-height: 560px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: center;
  overflow: hidden;
  padding: 32px;
}

.home-ecosystem-map::before {
  inset: 50px 90px;
  border: 1px solid rgba(29, 233, 182, 0.16);
  border-radius: 50%;
  box-shadow: inset 0 0 42px rgba(29, 233, 182, 0.08), 0 0 44px rgba(29, 233, 182, 0.08);
}

.home-ecosystem-center {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 250px;
  min-height: 150px;
  display: grid;
  place-items: center;
  gap: 10px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(29, 233, 182, 0.36);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29, 233, 182, 0.18), rgba(7, 14, 19, 0.9) 68%);
  box-shadow: 0 0 46px rgba(29, 233, 182, 0.18);
}

.home-ecosystem-center img {
  width: 170px;
}

.home-ecosystem-center span {
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.home-ecosystem-map article {
  position: relative;
  z-index: 3;
  min-height: 118px;
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(29, 233, 182, 0.2);
  border-radius: var(--radius);
  background: rgba(7, 18, 27, 0.78);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.home-ecosystem-map article strong {
  color: #fff;
}

.home-diff-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.home-diff-grid article {
  min-height: 190px;
  padding: 24px;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.home-diff-grid span {
  display: block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.home-diff-grid h3 {
  margin-bottom: 10px;
}

.home-final-cta {
  position: relative;
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  align-items: center;
  gap: 28px;
  margin-bottom: 80px;
  overflow: hidden;
  padding: 24px 44px;
  background:
    radial-gradient(circle at 10% 80%, rgba(29, 233, 182, 0.14), transparent 34%),
    linear-gradient(135deg, rgba(14, 26, 35, 0.9), rgba(7, 14, 19, 0.82));
}

.home-final-cta img {
  width: min(230px, 100%);
  max-height: 250px;
  object-fit: contain;
  filter: drop-shadow(0 22px 28px rgba(0, 0, 0, 0.42));
}

.home-final-cta h2 {
  max-width: 760px;
}

.home-final-cta .cta-actions {
  margin-top: 24px;
}

@media (max-width: 1180px) {
  .home-hero-grid,
  .home-guide-grid,
  .home-diagnostic-grid,
  .home-recommender {
    grid-template-columns: 1fr;
  }

  .home-hero-stage {
    min-height: 620px;
  }

  .home-trust-grid,
  .home-plan-panel[data-plan-panel="vps"] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-service-picker,
  .home-plan-panel[data-plan-panel="hosting"],
  .home-diff-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-ecosystem-map {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-top: 210px;
  }

  .home-ecosystem-center {
    top: 120px;
  }
}

@media (max-width: 760px) {
  .home-redesign .section {
    padding: 64px 0;
  }

  .home-hero {
    min-height: 0;
    padding: 104px 0 42px;
  }

  .home-hero-grid {
    gap: 24px;
  }

  .home-hero h1 {
    font-size: 37px;
  }

  .home-hero-stage {
    min-height: 380px;
  }

  .home-hero-drakonis {
    width: min(280px, 82%);
  }

  .home-orbit {
    bottom: 38px;
    width: min(300px, 82%);
  }

  .holo-card {
    width: min(168px, 46vw);
    min-height: 78px;
    padding: 12px;
  }

  .holo-card strong {
    font-size: 13px;
  }

  .holo-card span {
    font-size: 12px;
  }

  .holo-card-1 { top: 0; left: 0; }
  .holo-card-2 { display: none; }
  .holo-card-3 { display: none; }
  .holo-card-4 { top: 0; right: 0; }
  .holo-card-5 { display: none; }
  .holo-card-6 { display: none; }

  .home-trust-grid,
  .home-service-picker,
  .home-plan-panel[data-plan-panel="hosting"],
  .home-plan-panel[data-plan-panel="vps"],
  .home-diff-grid,
  .home-ecosystem-map {
    grid-template-columns: 1fr;
  }

  .home-trust-grid {
    margin-top: 0;
  }

  .home-plan-tabs {
    width: 100%;
    overflow-x: auto;
  }

  .home-plan-tabs button {
    flex: 1 0 auto;
  }

  .home-plan-shell,
  .home-recommender,
  .home-final-cta {
    padding: 22px;
  }

  .home-ecosystem-map {
    min-height: 0;
    padding-top: 190px;
  }

  .home-ecosystem-map::before {
    inset: 72px 18px auto;
    height: 150px;
  }

  .home-ecosystem-center {
    top: 96px;
    width: 210px;
  }

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

  .home-final-cta picture {
    order: 2;
  }

  .home-final-cta img {
    margin: 0 auto -38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-particles span,
  .home-orbit,
  .home-hero-drakonis,
  .holo-card,
  .home-plan-panel {
    animation: none !important;
  }

  .home-picker-card,
  .home-price-card,
  .home-vps-card,
  .home-diff-grid article,
  .home-ecosystem-map article {
    transition: none !important;
  }
}

/* Castle home mockup */
.ch-home {
  --ch-bg: #02080b;
  --ch-panel: rgba(4, 18, 24, 0.82);
  --ch-panel-strong: rgba(7, 27, 34, 0.94);
  --ch-text: #f6fbff;
  --ch-muted: #9fb4bd;
  --ch-aqua: #1de9b6;
  --ch-aqua-2: #00d6ff;
  --ch-gold: #ffd166;
  --ch-line: rgba(29, 233, 182, 0.34);
  --ch-line-soft: rgba(29, 233, 182, 0.16);
  color: var(--ch-text);
  background:
    radial-gradient(circle at 18% 8%, rgba(29, 233, 182, 0.09), transparent 27%),
    radial-gradient(circle at 82% 20%, rgba(0, 214, 255, 0.07), transparent 26%),
    linear-gradient(180deg, #02080b 0%, #061117 46%, #02080b 100%);
}

.ch-home .reveal {
  opacity: 1;
  transform: none;
}

.ch-home::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(29, 233, 182, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 233, 182, 0.03) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, #000, transparent 78%);
}

.ch-section {
  padding: 46px 0;
}

.ch-eyebrow {
  margin-bottom: 10px;
  color: var(--ch-aqua);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ch-section-head {
  max-width: 780px;
  margin: 0 auto 22px;
  text-align: center;
}

.ch-section-head h2,
.ch-hero h1,
.ch-advisor h2,
.ch-final-cta h2 {
  color: #fff;
  letter-spacing: 0;
}

.ch-section-head h2 {
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.08;
}

.ch-hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  padding: 110px 0 34px;
  border-bottom: 1px solid var(--ch-line-soft);
  background: #02080b;
}

.ch-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  opacity: 0.72;
  filter: saturate(1.08) contrast(1.05);
}

.ch-hero::before,
.ch-hero::after,
.ch-scanlines {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ch-hero::before {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(2, 8, 11, 0.94) 0%, rgba(2, 8, 11, 0.7) 34%, rgba(2, 8, 11, 0.42) 62%, rgba(2, 8, 11, 0.82) 100%),
    linear-gradient(180deg, rgba(2, 8, 11, 0.42), rgba(2, 8, 11, 0.88) 88%);
}

.ch-hero::after {
  z-index: 1;
  background: radial-gradient(circle at 64% 57%, rgba(29, 233, 182, 0.18), transparent 25%);
}

.ch-scanlines {
  z-index: 2;
  background:
    linear-gradient(rgba(29, 233, 182, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 233, 182, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.62;
  mask-image: linear-gradient(to bottom, #000, transparent 78%);
}

.ch-hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  align-items: center;
  gap: 28px;
}

.ch-hero-copy {
  position: relative;
  z-index: 6;
  max-width: 620px;
}

.ch-hero .hero-actions {
  position: relative;
  z-index: 7;
}

.ch-hero h1 {
  font-size: clamp(38px, 4.6vw, 64px);
  line-height: 1.03;
}

.ch-hero h1 span,
.ch-final-cta h2 span {
  color: var(--ch-aqua);
  text-shadow: 0 0 28px rgba(29, 233, 182, 0.22);
}

.ch-hero-copy p:not(.ch-eyebrow) {
  max-width: 560px;
  margin: 18px 0 26px;
  color: #c0d4dc;
  font-size: 17px;
  line-height: 1.68;
}

.ch-hero-visual {
  position: relative;
  min-height: 590px;
}

.ch-orbit {
  position: absolute;
  left: 52%;
  bottom: 40px;
  width: min(540px, 86%);
  aspect-ratio: 1 / 0.32;
  transform: translateX(-50%);
  border: 1px solid rgba(29, 233, 182, 0.5);
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(29, 233, 182, 0.18), transparent 65%);
  box-shadow: 0 0 42px rgba(29, 233, 182, 0.28), inset 0 0 42px rgba(29, 233, 182, 0.16);
  animation: chPulse 4.2s ease-in-out infinite;
}

.ch-hero-dragon {
  position: absolute;
  left: 48%;
  bottom: -8px;
  z-index: 3;
  width: min(500px, 78%);
  max-width: none;
  transform: translateX(-50%);
  filter: drop-shadow(0 34px 38px rgba(0, 0, 0, 0.58));
  animation: chFloat 5.8s ease-in-out infinite;
}

.ch-hero-visual .ch-orbit {
  display: none;
}

.ch-hero-dragon-wide {
  left: 52%;
  bottom: -82px;
  width: min(610px, 112%);
  filter: drop-shadow(0 34px 44px rgba(0, 0, 0, 0.58));
}

.ch-float-card {
  position: absolute;
  z-index: 4;
  width: 205px;
  min-height: 96px;
  display: grid;
  align-content: start;
  gap: 7px;
  padding: 16px;
  border: 1px solid rgba(29, 233, 182, 0.45);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(29, 233, 182, 0.14), rgba(0, 214, 255, 0.045)),
    rgba(2, 13, 18, 0.76);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.32), 0 0 26px rgba(29, 233, 182, 0.1);
  backdrop-filter: blur(14px);
}

.ch-float-card strong {
  color: #fff;
  font-size: 15px;
  text-transform: uppercase;
}

.ch-float-card span {
  color: #bbced5;
  font-size: 13px;
  line-height: 1.35;
}

.ch-card-vps { top: 54px; left: 2%; }
.ch-card-ssl { top: 230px; left: 2%; }
.ch-card-domain { top: 50px; right: 0; }
.ch-card-host { top: 190px; right: -2%; }
.ch-card-support { top: 330px; right: 1%; }

.ch-trust-row {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.ch-trust-row article,
.ch-solution-card,
.ch-plan-board,
.ch-price-card,
.ch-vps-panel,
.ch-advisor,
.ch-choice-panel,
.ch-recommendation,
.ch-launch,
.ch-launch-step,
.ch-launch-highlight,
.ch-launch-benefits,
.ch-ecosystem-map,
.ch-diff-grid article,
.ch-final-cta {
  border: 1px solid var(--ch-line-soft);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(10, 31, 39, 0.86), rgba(4, 15, 20, 0.8)),
    rgba(2, 8, 11, 0.74);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.28);
}

.ch-trust-row article {
  min-height: 70px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 6px 12px;
  align-items: center;
  padding: 13px;
}

.ch-trust-row img {
  grid-row: 1 / 3;
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(29, 233, 182, 0.24));
}

.ch-trust-row strong {
  color: #fff;
  font-size: 13px;
}

.ch-trust-row span {
  color: var(--ch-muted);
  font-size: 12px;
}

.ch-solution-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.ch-solution-card {
  min-height: 188px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 22px 18px;
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.ch-solution-card img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(29, 233, 182, 0.24));
}

.ch-solution-card strong,
.ch-price-card h3,
.ch-vps-panel strong,
.ch-diff-grid h3 {
  color: #fff;
}

.ch-solution-card strong {
  font-size: 18px;
  line-height: 1.18;
}

.ch-solution-card span,
.ch-price-card p,
.ch-price-card li,
.ch-vps-panel span,
.ch-choice-panel p,
.ch-recommendation p,
.ch-recommendation li,
.ch-launch p,
.ch-launch-benefits span,
.ch-ecosystem-map span,
.ch-diff-grid p,
.ch-final-cta p {
  color: var(--ch-muted);
  line-height: 1.55;
}

.ch-solution-card span {
  font-size: 15px;
  line-height: 1.6;
}

.ch-diff-grid p,
.ch-ecosystem-map span,
.ch-ecosystem-card span,
.ch-launch-step p,
.ch-launch-benefits span {
  font-size: 15px;
  line-height: 1.58;
}

.ch-solution-card:hover,
.ch-solution-card.is-active,
.ch-price-card:hover,
.ch-vps-panel article:hover,
.ch-diff-grid article:hover,
.ch-ecosystem-map article:hover,
.ch-ecosystem-card:hover {
  transform: translateY(-4px);
  border-color: rgba(29, 233, 182, 0.58);
  box-shadow: 0 22px 60px rgba(29, 233, 182, 0.1), 0 22px 58px rgba(0, 0, 0, 0.28);
}

.ch-guide-note {
  margin-top: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(29, 233, 182, 0.22);
  border-radius: 8px;
  color: #dcfff8;
  background: linear-gradient(90deg, rgba(29, 233, 182, 0.11), rgba(0, 214, 255, 0.045));
  font-size: 15px;
  font-weight: 800;
  line-height: 1.6;
}

.ch-plan-board {
  display: grid;
  grid-template-columns: minmax(190px, 0.22fr) minmax(0, 0.78fr);
  gap: 18px;
  padding: 18px;
}

.ch-plan-intro {
  padding: 10px 6px;
}

.ch-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 22px;
}

.ch-tabs button,
.ch-choice-list button {
  min-height: 42px;
  border: 1px solid rgba(29, 233, 182, 0.2);
  border-radius: 7px;
  color: #eafffb;
  background: rgba(255, 255, 255, 0.04);
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.ch-tabs button.is-active,
.ch-choice-list button.is-active {
  color: #03110f;
  border-color: transparent;
  background: linear-gradient(135deg, var(--ch-aqua), var(--ch-aqua-2));
}

.ch-tabs button:hover,
.ch-choice-list button:hover {
  transform: translateY(-2px);
  border-color: rgba(29, 233, 182, 0.5);
  box-shadow: 0 14px 30px rgba(29, 233, 182, 0.08);
}

.ch-plan-intro p {
  color: #c6d9df;
  font-weight: 800;
}

.ch-plan-intro ul,
.ch-price-card ul,
.ch-recommendation ul {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  list-style: none;
}

.ch-plan-intro li,
.ch-price-card li,
.ch-recommendation li {
  color: #daf8f2;
}

.ch-plan-intro li::before,
.ch-price-card li::before,
.ch-recommendation li::before,
.ch-launch-highlight p::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--ch-aqua);
  box-shadow: 0 0 14px rgba(29, 233, 182, 0.72);
}

.ch-plan-panel {
  display: none;
  gap: 14px;
}

.ch-plan-panel.is-active {
  display: grid;
  animation: chTabIn 0.22s ease both;
}

.ch-plan-panel[data-plan-panel="hosting"] {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ch-price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 22px;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.ch-price-card h3 {
  text-transform: uppercase;
}

.ch-price-card .price {
  margin: 18px 0 14px;
  font-size: 34px;
}

.ch-price-card ul {
  flex: 1;
  margin-bottom: 20px;
}

.ch-price-card.is-featured {
  border-color: rgba(29, 233, 182, 0.78);
  background:
    radial-gradient(circle at 85% 8%, rgba(255, 209, 102, 0.16), transparent 32%),
    radial-gradient(circle at 50% 100%, rgba(29, 233, 182, 0.16), transparent 38%),
    linear-gradient(180deg, rgba(29, 233, 182, 0.18), rgba(4, 15, 20, 0.88));
  box-shadow: 0 24px 70px rgba(29, 233, 182, 0.18), 0 24px 58px rgba(0, 0, 0, 0.34);
}

.ch-price-card.is-featured .btn-primary {
  min-height: 50px;
  box-shadow: 0 20px 46px rgba(29, 233, 182, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.38);
}

.ch-plan-link {
  grid-column: 1 / -1;
  justify-self: center;
  color: var(--ch-aqua);
  font-weight: 900;
}

.ch-vps-panel {
  position: relative;
  align-content: start;
  padding: 22px;
}

.ch-vps-panel.is-active {
  grid-template-columns: 1fr;
}

.ch-vps-ribbon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(29, 233, 182, 0.38);
  border-radius: 999px;
  color: #9efce6;
  background: rgba(29, 233, 182, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 0 20px rgba(29, 233, 182, 0.06);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ch-vps-ribbon::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ch-aqua);
  box-shadow: 0 0 12px rgba(29, 233, 182, 0.74);
}

.ch-vps-panel article {
  display: grid;
  grid-template-columns: minmax(90px, 0.22fr) minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid rgba(29, 233, 182, 0.13);
  transition: transform 0.2s ease;
}

.ch-advisor {
  display: grid;
  grid-template-columns: minmax(330px, 0.4fr) minmax(0, 0.6fr);
  gap: 20px;
  align-items: stretch;
  padding: 20px;
}

.ch-choice-panel,
.ch-recommendation {
  min-height: 356px;
  padding: 26px;
}

.ch-choice-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.ch-choice-list button {
  min-height: 48px;
  padding: 10px 12px;
  line-height: 1.15;
}

.ch-recommendation {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.5fr);
  align-items: center;
  gap: 10px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 20, 25, 0.94), rgba(4, 26, 27, 0.62)),
    url("/assets/user-images/castle-server-background.png") center / cover;
}

.ch-recommendation > div {
  position: relative;
  z-index: 2;
}

.ch-recommendation span,
.ch-launch-highlight span {
  display: block;
  margin-bottom: 8px;
  color: var(--ch-aqua);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.ch-recommendation strong {
  display: block;
  color: #fff;
  font-size: 22px;
  line-height: 1.2;
}

.ch-recommendation .btn {
  margin-top: 18px;
}

.ch-recommendation-drakonis {
  position: relative;
  z-index: 1;
  align-self: end;
  justify-self: center;
  display: block;
  width: min(440px, 145%);
  margin: 8px -18px -46px -48px;
}

.ch-recommendation img {
  width: 100%;
  max-height: 386px;
  object-fit: contain;
  filter: drop-shadow(0 22px 26px rgba(0, 0, 0, 0.44));
}

.ch-launch {
  position: relative;
  overflow: hidden;
  margin-top: 24px;
  padding: 34px;
}

.ch-launch::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 82% 8%, rgba(29, 233, 182, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(29, 233, 182, 0.05), transparent 45%);
}

.ch-launch-head,
.ch-launch-body,
.ch-launch-benefits {
  position: relative;
  z-index: 2;
}

.ch-launch-head {
  max-width: 840px;
  margin: 0 auto 34px;
  text-align: center;
}

.ch-launch-head h2 {
  color: #fff;
  font-size: clamp(32px, 4.3vw, 58px);
  line-height: 1.04;
}

.ch-launch-head h2 span {
  color: var(--ch-aqua);
  text-shadow: 0 0 28px rgba(29, 233, 182, 0.22);
}

.ch-launch-head > p:last-child {
  max-width: 760px;
  margin: 16px auto 0;
  color: #c3d5dc;
  font-size: 17px;
  line-height: 1.65;
}

.ch-launch-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: stretch;
}

.ch-launch-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(145px, 1fr));
  gap: 16px;
  align-items: stretch;
  padding-top: 35px;
}

.ch-launch-flow::before,
.ch-launch-flow::after {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  top: 18px;
  height: 2px;
  border-radius: 999px;
}

.ch-launch-flow::before {
  background: linear-gradient(90deg, rgba(29, 233, 182, 0.14), rgba(29, 233, 182, 0.62), rgba(29, 233, 182, 0.14));
}

.ch-launch-flow::after {
  width: 18%;
  right: auto;
  background: linear-gradient(90deg, transparent, var(--ch-aqua), transparent);
  box-shadow: 0 0 24px rgba(29, 233, 182, 0.58);
  animation: chFlowPulse 4.8s ease-in-out infinite;
}

.ch-launch-step {
  position: relative;
  min-height: 226px;
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 12px;
  padding: 30px 18px 20px;
  text-align: center;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.ch-launch-step::after {
  content: "";
  position: absolute;
  right: -15px;
  top: 50%;
  width: 18px;
  height: 18px;
  border-top: 2px solid var(--ch-aqua);
  border-right: 2px solid var(--ch-aqua);
  transform: translateY(-50%) rotate(45deg);
  opacity: 0.8;
}

.ch-launch-step:last-child::after {
  display: none;
}

.ch-step-number {
  position: absolute;
  top: -35px;
  left: 50%;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(29, 233, 182, 0.44);
  border-radius: 50%;
  color: var(--ch-aqua);
  background: rgba(2, 14, 18, 0.96);
  box-shadow: 0 0 26px rgba(29, 233, 182, 0.16);
  font-size: 20px;
  font-weight: 950;
  transform: translateX(-50%);
}

.ch-launch-step img,
.ch-launch-highlight > img,
.ch-launch-benefits img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(29, 233, 182, 0.24));
}

.ch-launch-step h3,
.ch-launch-highlight h3 {
  color: #fff;
  line-height: 1.14;
}

.ch-launch-step h3 {
  max-width: 12ch;
  font-size: clamp(17px, 1.2vw, 20px);
}

.ch-launch-step:hover {
  transform: translateY(-5px);
  border-color: rgba(29, 233, 182, 0.5);
  box-shadow: 0 22px 62px rgba(29, 233, 182, 0.11), 0 22px 58px rgba(0, 0, 0, 0.3);
}

.ch-launch-highlight {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) minmax(210px, 0.24fr);
  align-content: center;
  align-items: center;
  justify-items: start;
  gap: 16px;
  padding: 22px 24px;
  text-align: left;
  border-color: rgba(29, 233, 182, 0.36);
  background:
    radial-gradient(circle at 6% 50%, rgba(29, 233, 182, 0.18), transparent 24%),
    linear-gradient(90deg, rgba(10, 31, 39, 0.92), rgba(4, 15, 20, 0.84));
}

.ch-launch-highlight > img {
  width: 56px;
  height: 56px;
}

.ch-launch-highlight h3 {
  max-width: none;
  font-size: clamp(22px, 2.1vw, 30px);
}

.ch-launch-highlight p {
  max-width: 620px;
  margin-top: 8px;
}

.ch-launch-highlight p::before {
  display: none;
}

.ch-launch-actions {
  width: 100%;
  display: grid;
  gap: 12px;
  margin-top: 0;
}

.ch-launch-benefits {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
  padding: 18px;
}

.ch-launch-benefits article {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 4px 12px;
  align-items: center;
}

.ch-launch-benefits img {
  grid-row: 1 / 3;
  width: 34px;
  height: 34px;
}

.ch-launch-benefits strong {
  color: #fff;
}

.ch-ecosystem {
  padding-bottom: 38px;
}

.ch-ecosystem-map {
  position: relative;
  min-height: 420px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 360px;
  align-items: center;
  overflow: hidden;
  padding: 30px 90px;
}

.ch-ecosystem-map::before,
.ch-ecosystem-map::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.ch-ecosystem-map::before {
  width: 390px;
  aspect-ratio: 1;
  border: 1px solid rgba(29, 233, 182, 0.35);
  border-radius: 50%;
  box-shadow: 0 0 44px rgba(29, 233, 182, 0.18), inset 0 0 44px rgba(29, 233, 182, 0.08);
}

.ch-ecosystem-map::after {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(29, 233, 182, 0.36), transparent);
}

.ch-ecosystem-center {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: 210px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: 28px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(29, 233, 182, 0.52);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29, 233, 182, 0.16), rgba(3, 14, 18, 0.96) 70%);
  box-shadow: 0 0 52px rgba(29, 233, 182, 0.26);
}

.ch-ecosystem-map article,
.ch-ecosystem-card {
  position: relative;
  z-index: 4;
  min-height: 82px;
  display: grid;
  gap: 5px;
  padding: 16px 18px;
  border: 1px solid var(--ch-line-soft);
  border-radius: 8px;
  color: inherit;
  background: rgba(4, 18, 24, 0.84);
}

.ch-ecosystem-map strong,
.ch-ecosystem-card strong {
  color: #fff;
}

.ch-diff-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 13px;
}

.ch-diff-grid article {
  min-height: 188px;
  padding: 20px;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.ch-diff-grid img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  margin-bottom: 14px;
  filter: drop-shadow(0 0 14px rgba(29, 233, 182, 0.24));
}

.ch-diff-grid h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.ch-final-cta {
  position: relative;
  min-height: 300px;
  display: grid;
  align-items: center;
  overflow: hidden;
  margin-bottom: 44px;
  padding: 42px;
  background: #031016;
}

.ch-final-cta > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  opacity: 0.68;
}

.ch-final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 11, 15, 0.96), rgba(3, 11, 15, 0.62) 48%, rgba(3, 11, 15, 0.2)),
    linear-gradient(180deg, transparent, rgba(3, 11, 15, 0.55));
}

.ch-final-cta > div {
  position: relative;
  z-index: 2;
  max-width: 590px;
}

.ch-final-cta h2 {
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.03;
}

.ch-final-cta p:not(.ch-eyebrow) {
  margin: 14px 0 20px;
  color: #c4d7de;
}

@keyframes chFloat {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-12px); }
}

@keyframes chPulse {
  0%, 100% { opacity: 0.72; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.04); }
}

@keyframes chTabIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes chFlowPulse {
  0% { transform: translateX(0); opacity: 0; }
  12%, 82% { opacity: 1; }
  100% { transform: translateX(450%); opacity: 0; }
}

@keyframes chFlowPulseVertical {
  0% { transform: translateY(0); opacity: 0; }
  12%, 82% { opacity: 1; }
  100% { transform: translateY(520%); opacity: 0; }
}

@media (min-width: 1181px) {
  .site-header .container,
  .ch-home .container {
    width: min(1300px, calc(100% - 56px));
  }

  .nav {
    min-height: 82px;
  }

  .brand img {
    width: 198px;
  }

  .menu {
    gap: 28px;
  }

  .menu a {
    font-size: 15px;
  }

  .nav-actions .btn {
    min-height: 48px;
    padding: 0 22px;
    font-size: 15px;
  }

  .ch-hero {
    min-height: 828px;
    padding: 124px 0 34px;
  }

  .ch-hero-grid {
    grid-template-columns: minmax(0, 0.82fr) minmax(560px, 1.18fr);
    gap: 34px;
  }

  .ch-hero-copy {
    max-width: 660px;
  }

  .ch-hero .ch-eyebrow {
    font-size: 13px;
  }

  .ch-hero h1 {
    font-size: clamp(44px, 4.8vw, 70px);
  }

  .ch-hero-copy p:not(.ch-eyebrow) {
    max-width: 600px;
    margin: 20px 0 30px;
    font-size: 18px;
  }

  .ch-hero .btn-big {
    min-height: 60px;
    padding: 0 30px;
    font-size: 15px;
  }

  .ch-hero-visual {
    min-height: 640px;
  }

  .ch-hero-dragon-wide {
    left: 52%;
    bottom: -94px;
    width: min(680px, 116%);
  }

  .ch-trust-row {
    gap: 14px;
    margin-top: 30px;
  }

  .ch-trust-row article {
    min-height: 78px;
    grid-template-columns: 40px minmax(0, 1fr);
    padding: 15px;
  }

  .ch-trust-row img {
    width: 34px;
    height: 34px;
  }

  .ch-trust-row strong {
    font-size: 14px;
  }

  .ch-trust-row span {
    font-size: 12.5px;
  }
}

@media (max-width: 1180px) {
  .ch-hero-grid,
  .ch-plan-board,
  .ch-advisor,
  .ch-launch-body {
    grid-template-columns: 1fr;
  }

  .ch-launch-flow,
  .ch-launch-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ch-launch-flow::before,
  .ch-launch-flow::after,
  .ch-launch-step::after {
    display: none;
  }

  .ch-launch-step {
    min-height: 210px;
  }

  .ch-hero {
    min-height: 0;
  }

  .ch-hero-copy {
    max-width: 760px;
  }

  .ch-hero-visual {
    min-height: 580px;
  }

  .ch-trust-row,
  .ch-solution-grid,
  .ch-diff-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ch-ecosystem-map {
    gap: 16px;
    padding: 230px 28px 28px;
  }

  .ch-ecosystem-center {
    top: 118px;
  }

  .ch-ecosystem-map::before {
    top: 118px;
    width: 250px;
  }

  .ch-ecosystem-map::after {
    display: none;
  }
}

@media (max-width: 860px) {
  .ch-hero {
    padding-top: 98px;
  }

  .ch-hero h1 {
    font-size: 42px;
  }

  .ch-hero-visual {
    min-height: 430px;
  }

  .ch-hero-dragon {
    width: min(310px, 78%);
  }

  .ch-hero-dragon-wide {
    left: 50%;
    bottom: -48px;
    width: min(430px, 108%);
  }

  .ch-orbit {
    bottom: 42px;
    width: min(330px, 84%);
  }

  .ch-float-card {
    width: min(168px, 45vw);
    min-height: 72px;
    padding: 12px;
  }

  .ch-float-card span {
    display: none;
  }

  .ch-card-vps { top: 12px; left: 0; }
  .ch-card-ssl { display: none; }
  .ch-card-domain { top: 12px; right: 0; }
  .ch-card-host { top: 112px; right: 0; }
  .ch-card-support { display: none; }

  .ch-trust-row,
  .ch-solution-grid,
  .ch-plan-panel[data-plan-panel="hosting"],
  .ch-diff-grid,
  .ch-ecosystem-map,
  .ch-choice-list,
  .ch-launch-benefits {
    grid-template-columns: 1fr;
  }

  .ch-plan-board,
  .ch-advisor,
  .ch-launch,
  .ch-choice-panel,
  .ch-recommendation,
  .ch-final-cta {
    padding: 20px;
  }

  .ch-recommendation {
    grid-template-columns: 1fr;
  }

  .ch-choice-panel,
  .ch-recommendation {
    min-height: auto;
  }

  .ch-recommendation-drakonis {
    width: min(330px, 98%);
    justify-self: center;
    margin: 10px auto -44px;
  }

  .ch-recommendation img {
    max-height: 340px;
  }

  .ch-vps-panel article {
    grid-template-columns: 1fr;
  }

  .ch-launch-head {
    text-align: left;
  }

  .ch-launch-highlight {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .ch-launch-highlight p {
    max-width: 360px;
  }

  .ch-launch-actions {
    width: min(100%, 320px);
  }

  .ch-launch-flow {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-top: 0;
    padding-left: 28px;
  }

  .ch-launch-flow::before {
    display: block;
    left: 13px;
    right: auto;
    top: 18px;
    bottom: 18px;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, rgba(29, 233, 182, 0.16), rgba(29, 233, 182, 0.62), rgba(29, 233, 182, 0.16));
  }

  .ch-launch-flow::after {
    display: block;
    left: 13px;
    top: 18px;
    width: 2px;
    height: 96px;
    background: linear-gradient(180deg, transparent, var(--ch-aqua), transparent);
    animation: chFlowPulseVertical 4.8s ease-in-out infinite;
  }

  .ch-launch-step {
    min-height: 0;
    justify-items: start;
    padding: 22px 20px 20px 58px;
    text-align: left;
  }

  .ch-step-number {
    top: 22px;
    left: -28px;
    width: 38px;
    height: 38px;
    font-size: 17px;
    transform: none;
  }
}

@media (max-width: 520px) {
  .ch-section {
    padding: 36px 0;
  }

  .ch-hero h1 {
    font-size: 36px;
  }

  .ch-hero-copy p:not(.ch-eyebrow) {
    font-size: 15px;
  }

  .ch-solution-card span,
  .ch-guide-note,
  .ch-diff-grid p,
  .ch-ecosystem-map span,
  .ch-ecosystem-card span,
  .footer p,
  .footer a {
    font-size: 15px;
    line-height: 1.62;
  }

  .ch-solution-card strong,
  .ch-diff-grid h3,
  .ch-ecosystem-map strong,
  .ch-ecosystem-card strong,
  .footer h3 {
    font-size: 18px;
  }

  .ch-hero-visual {
    min-height: 360px;
  }

  .ch-hero-dragon {
    width: min(260px, 80%);
  }

  .ch-hero-dragon-wide {
    bottom: -34px;
    width: min(360px, 122%);
  }

  .ch-trust-row article {
    min-height: 62px;
  }

  .ch-section-head {
    text-align: left;
  }

  .ch-ecosystem-map {
    padding-top: 200px;
  }

  .ch-final-cta {
    min-height: 360px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ch-hero-dragon,
  .ch-orbit,
  .ch-plan-panel,
  .ch-launch-flow::after {
    animation: none !important;
  }

  .ch-solution-card,
  .ch-price-card,
  .ch-vps-panel article,
  .ch-launch-step,
  .ch-diff-grid article,
  .ch-ecosystem-map article,
  .ch-ecosystem-card {
    transition: none !important;
  }
}

/* Hospedagem page redesign - 2026-07-05 */
.hosting-redesign {
  --hp-bg: #0b0f12;
  --hp-panel: rgba(5, 19, 24, 0.78);
  --hp-panel-strong: rgba(7, 27, 34, 0.92);
  --hp-line: rgba(29, 233, 182, 0.22);
  --hp-line-strong: rgba(29, 233, 182, 0.48);
  --hp-text: #f7fbff;
  --hp-muted: #b9cbd2;
  position: relative;
  overflow: hidden;
  padding-bottom: 52px;
  background:
    radial-gradient(circle at 12% 6%, rgba(29, 233, 182, 0.12), transparent 25%),
    radial-gradient(circle at 86% 28%, rgba(68, 183, 255, 0.11), transparent 30%),
    linear-gradient(180deg, rgba(4, 12, 17, 0.4), rgba(2, 7, 11, 0.96) 42%, #02070b);
}

.hosting-redesign .container {
  width: min(1300px, calc(100% - 56px));
}

.hp-section {
  padding: 82px 0;
}

.hp-section-head {
  max-width: 820px;
  margin: 0 auto 34px;
  text-align: center;
}

.hp-section-head h2 {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.04;
}

.hp-section-head p:not(.ch-eyebrow) {
  margin-top: 14px;
  color: var(--hp-muted);
  font-size: 17px;
  line-height: 1.66;
}

.hp-hero {
  position: relative;
  min-height: 780px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 128px 0 58px;
}

.hp-hero-bg,
.hp-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hp-hero-bg {
  max-width: none;
  object-fit: cover;
  object-position: center;
  opacity: 0.42;
  filter: saturate(0.92);
}

.hp-hero-shade {
  background:
    linear-gradient(90deg, rgba(2, 7, 11, 0.96), rgba(2, 7, 11, 0.62) 48%, rgba(2, 7, 11, 0.9)),
    linear-gradient(180deg, rgba(2, 7, 11, 0.35), rgba(2, 7, 11, 0.86));
}

.hp-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  gap: 34px;
  align-items: center;
}

.hp-hero-copy {
  max-width: 670px;
}

.hp-hero h1 {
  max-width: 720px;
  font-size: clamp(46px, 5.2vw, 78px);
  line-height: 1.02;
}

.hp-hero h1 span,
.hp-final-cta h2 span {
  color: var(--brand);
  text-shadow: 0 0 32px rgba(29, 233, 182, 0.24);
}

.hp-hero-copy p:not(.ch-eyebrow) {
  max-width: 620px;
  margin: 22px 0 30px;
  color: #d3e3e8;
  font-size: 18px;
  line-height: 1.68;
}

.hp-hero-art {
  position: relative;
  min-height: 620px;
}

.hp-orbit {
  position: absolute;
  left: 50%;
  bottom: 24px;
  width: min(620px, 92%);
  aspect-ratio: 4.8 / 1;
  border: 1px solid rgba(29, 233, 182, 0.42);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 42px rgba(29, 233, 182, 0.18), inset 0 0 38px rgba(29, 233, 182, 0.09);
  animation: hpPulse 5.8s ease-in-out infinite;
}

.hp-hero-drakonis {
  position: absolute;
  left: 50%;
  bottom: -34px;
  z-index: 2;
  width: min(600px, 100%);
  max-width: none;
  transform: translateX(-50%);
  filter: drop-shadow(0 36px 44px rgba(0, 0, 0, 0.48));
  animation: hpFloat 5.2s ease-in-out infinite;
}

.hp-hero-card {
  position: absolute;
  z-index: 3;
  min-height: 76px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid rgba(29, 233, 182, 0.36);
  border-radius: 8px;
  color: #fff;
  background: rgba(4, 19, 24, 0.78);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.hp-hero-card:hover {
  transform: translateY(-4px);
  border-color: rgba(29, 233, 182, 0.62);
  box-shadow: 0 24px 58px rgba(29, 233, 182, 0.13), 0 22px 44px rgba(0, 0, 0, 0.28);
}

.hp-hero-card img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(29, 233, 182, 0.26));
}

.hp-hero-card strong {
  color: #f8fffd;
  font-size: 14px;
  line-height: 1.18;
}

.hp-card-ssl {
  top: 76px;
  left: 6%;
}

.hp-card-manager {
  top: 146px;
  right: 3%;
}

.hp-card-mail {
  bottom: 96px;
  left: 2%;
}

.hp-card-team {
  bottom: 80px;
  right: 8%;
}

.hp-advisor-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(360px, 0.42fr);
  gap: 18px;
  align-items: stretch;
}

.hp-advisor-options,
.hp-recommendation-card,
.hp-plan-card,
.hp-table-wrap,
.hp-manager-panel,
.hp-journey,
.hp-diff-grid article,
.hp-client-card,
.hp-final-cta {
  border: 1px solid var(--hp-line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.022)),
    rgba(4, 15, 20, 0.78);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.28);
}

.hp-advisor-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 18px;
}

.hp-advisor-choice {
  min-height: 58px;
  padding: 12px 14px;
  border: 1px solid rgba(29, 233, 182, 0.2);
  border-radius: 8px;
  color: #edfdfa;
  background: rgba(255, 255, 255, 0.04);
  font-weight: 900;
  line-height: 1.18;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.hp-advisor-choice:hover {
  transform: translateY(-2px);
  border-color: rgba(29, 233, 182, 0.5);
  box-shadow: 0 16px 34px rgba(29, 233, 182, 0.08);
}

.hp-advisor-choice.is-active {
  color: #03110f;
  border-color: transparent;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 18px 38px rgba(29, 233, 182, 0.24);
}

.hp-recommendation-card {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 28px;
  background:
    radial-gradient(circle at 90% 12%, rgba(29, 233, 182, 0.18), transparent 30%),
    linear-gradient(160deg, rgba(6, 28, 34, 0.96), rgba(3, 12, 16, 0.9));
}

.hp-recommendation-card.is-switching {
  animation: hpCardSwitch 0.24s ease both;
}

.hp-recommendation-card::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -80px;
  width: 220px;
  aspect-ratio: 1;
  border: 1px solid rgba(29, 233, 182, 0.25);
  border-radius: 50%;
  box-shadow: inset 0 0 38px rgba(29, 233, 182, 0.08);
}

.hp-recommendation-card span,
.hp-plan-top span,
.hp-client-card > span {
  color: var(--brand);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hp-recommendation-card h3 {
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.04;
}

.hp-recommendation-card p,
.hp-recommendation-card li,
.hp-plan-card p,
.hp-plan-card li,
.hp-diff-grid p,
.hp-client-card p,
.hp-manager-copy p,
.hp-manager-grid span,
.hp-flow-step p,
.hp-final-cta p {
  color: var(--hp-muted);
  line-height: 1.62;
}

.hp-recommendation-card ul,
.hp-plan-card ul {
  display: grid;
  gap: 10px;
  margin: 4px 0 8px;
  list-style: none;
}

.hp-recommendation-card li::before,
.hp-plan-card li::before,
.hp-diff-grid p::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 14px rgba(29, 233, 182, 0.62);
}

.hp-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

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

.hp-plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 24px;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.hp-plan-card:hover {
  transform: translateY(-5px);
  border-color: var(--hp-line-strong);
  box-shadow: 0 28px 70px rgba(29, 233, 182, 0.12), 0 24px 58px rgba(0, 0, 0, 0.3);
}

.hp-plan-top {
  min-height: 136px;
}

.hp-plan-card h3 {
  margin-top: 8px;
  font-size: 26px;
  text-transform: uppercase;
}

.hp-plan-card .price {
  margin: 4px 0 18px;
}

.hp-plan-card ul {
  flex: 1;
  margin-bottom: 22px;
}

.hp-plan-card .btn {
  width: 100%;
}

.hp-plan-featured {
  border-color: rgba(29, 233, 182, 0.72);
  background:
    radial-gradient(circle at 82% 4%, rgba(255, 209, 102, 0.14), transparent 32%),
    radial-gradient(circle at 50% 100%, rgba(29, 233, 182, 0.18), transparent 42%),
    linear-gradient(180deg, rgba(29, 233, 182, 0.16), rgba(4, 15, 20, 0.9));
  box-shadow: 0 28px 80px rgba(29, 233, 182, 0.2), 0 24px 58px rgba(0, 0, 0, 0.34);
}

.hp-plan-featured .btn-primary {
  min-height: 52px;
  box-shadow: 0 22px 50px rgba(29, 233, 182, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.36);
}

.hp-plan-detail-link {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.hp-plan-detail-link a {
  color: var(--brand);
  font-weight: 900;
}

.hp-plan-detail-link a::after {
  content: " >";
}

.hp-table-wrap {
  overflow: hidden;
  padding: 14px;
}

.hp-compare-table {
  min-width: 1000px;
}

.hp-compare-table th,
.hp-compare-table td {
  padding: 17px 16px;
  vertical-align: top;
}

.hp-compare-table tbody th {
  color: #fff;
  font-size: 14px;
  text-transform: none;
}

.hp-compare-table td {
  color: #d8e8ee;
}

.hp-compare-table td:last-child {
  color: #d8e8ee;
  font-weight: 700;
}

.hp-compare-mobile {
  display: none;
}

.hp-compare-mobile details {
  border: 1px solid rgba(29, 233, 182, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.hp-compare-mobile details + details {
  margin-top: 10px;
}

.hp-compare-mobile summary {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

.hp-compare-mobile ul {
  display: grid;
  gap: 8px;
  padding: 0 16px 16px 32px;
  color: var(--hp-muted);
}

.hp-manager-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  gap: 28px;
  align-items: center;
  padding: 32px;
  background:
    radial-gradient(circle at 18% 20%, rgba(29, 233, 182, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(9, 31, 39, 0.9), rgba(3, 11, 15, 0.9));
}

.hp-manager-copy h2 {
  margin-bottom: 14px;
}

.hp-manager-copy .btn {
  margin-top: 22px;
}

.hp-manager-mockup {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(29, 233, 182, 0.24);
  border-radius: 8px;
  background: rgba(2, 10, 14, 0.76);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  animation: hpFloatSoft 6s ease-in-out infinite;
}

.hp-window-top {
  min-height: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(29, 233, 182, 0.13);
}

.hp-window-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand);
}

.hp-window-top span:nth-child(2) {
  background: var(--gold);
}

.hp-window-top span:nth-child(3) {
  background: var(--brand-2);
}

.hp-window-top strong {
  margin-left: auto;
  color: #e9fbf7;
  font-size: 12px;
  text-transform: uppercase;
}

.hp-manager-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 16px;
}

.hp-manager-grid article {
  min-height: 138px;
  display: grid;
  align-content: start;
  gap: 9px;
  padding: 16px;
  border: 1px solid rgba(29, 233, 182, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.hp-manager-grid img,
.hp-diff-grid img,
.hp-flow-step img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(29, 233, 182, 0.24));
}

.hp-manager-grid strong,
.hp-flow-step h3,
.hp-diff-grid h3,
.hp-client-card h3 {
  color: #fff;
}

.hp-journey {
  position: relative;
  overflow: hidden;
  padding: 34px;
  background:
    linear-gradient(180deg, rgba(29, 233, 182, 0.055), rgba(255, 255, 255, 0.024)),
    rgba(4, 15, 20, 0.78);
}

.hp-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  padding-top: 36px;
}

.hp-flow::before,
.hp-flow::after {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  top: 18px;
  height: 2px;
  border-radius: 999px;
}

.hp-flow::before {
  background: linear-gradient(90deg, rgba(29, 233, 182, 0.14), rgba(29, 233, 182, 0.62), rgba(29, 233, 182, 0.14));
}

.hp-flow::after {
  width: 18%;
  right: auto;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
  box-shadow: 0 0 24px rgba(29, 233, 182, 0.58);
  animation: hpFlowPulse 4.8s ease-in-out infinite;
}

.hp-flow-step {
  position: relative;
  min-height: 238px;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 12px;
  padding: 32px 18px 20px;
  border: 1px solid rgba(29, 233, 182, 0.2);
  border-radius: 8px;
  background: rgba(2, 11, 15, 0.72);
  text-align: center;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.hp-flow-step:hover {
  transform: translateY(-5px);
  border-color: var(--hp-line-strong);
  box-shadow: 0 22px 58px rgba(29, 233, 182, 0.1), 0 22px 44px rgba(0, 0, 0, 0.24);
}

.hp-flow-step > span {
  position: absolute;
  top: -36px;
  left: 50%;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(29, 233, 182, 0.44);
  border-radius: 50%;
  color: var(--brand);
  background: rgba(2, 14, 18, 0.96);
  box-shadow: 0 0 26px rgba(29, 233, 182, 0.16);
  font-size: 20px;
  font-weight: 950;
  transform: translateX(-50%);
}

.hp-diff-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.hp-diff-grid article {
  min-height: 214px;
  padding: 22px;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.hp-diff-grid article:hover {
  transform: translateY(-5px);
  border-color: var(--hp-line-strong);
}

.hp-diff-grid h3 {
  margin: 16px 0 8px;
  font-size: 20px;
}

.hp-diff-grid p::before {
  display: none;
}

.hp-client-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.hp-client-card {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 24px;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.hp-client-card:hover {
  transform: translateY(-5px);
  border-color: var(--hp-line-strong);
}

.hp-client-logo {
  min-height: 116px;
  display: grid;
  place-items: center;
  padding: 18px;
  border: 1px solid rgba(29, 233, 182, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.hp-client-logo img {
  max-height: 74px;
  object-fit: contain;
}

.hp-client-logo-wide img {
  max-height: 62px;
}

.hp-client-logo-rauen img {
  width: min(250px, 100%);
}

.hp-client-card .btn {
  justify-self: start;
  margin-top: 4px;
}

.hp-faq-section {
  padding-top: 44px;
}

.hp-faq {
  max-width: 1040px;
  grid-template-columns: 1fr;
  align-items: start;
}

.hp-faq button,
.hp-faq .faq-content {
  border-color: rgba(29, 233, 182, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.022)),
    rgba(4, 15, 20, 0.78);
}

.hp-faq button {
  min-height: 70px;
  border-radius: 8px;
  font-size: 16px;
  line-height: 1.25;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.hp-faq button:hover {
  transform: translateY(-2px);
  border-color: rgba(29, 233, 182, 0.45);
  box-shadow: 0 18px 44px rgba(29, 233, 182, 0.09), 0 18px 40px rgba(0, 0, 0, 0.22);
}

.hp-faq .faq-content {
  border-radius: 0 0 8px 8px;
}

.hp-faq .faq-content p {
  color: var(--hp-muted);
  font-size: 15px;
  line-height: 1.62;
}

.hp-final-cta {
  position: relative;
  min-height: 340px;
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(300px, 0.38fr);
  gap: 24px;
  align-items: center;
  overflow: hidden;
  margin-top: 22px;
  padding: 42px;
  background:
    radial-gradient(circle at 78% 20%, rgba(29, 233, 182, 0.18), transparent 34%),
    linear-gradient(110deg, rgba(6, 24, 31, 0.95), rgba(4, 14, 18, 0.9));
}

.hp-final-cta h2 {
  max-width: 660px;
  font-size: clamp(34px, 4.4vw, 62px);
  line-height: 1.03;
}

.hp-final-cta p:not(.ch-eyebrow) {
  max-width: 620px;
  margin: 14px 0 22px;
  font-size: 17px;
}

.hp-final-cta img {
  align-self: end;
  justify-self: center;
  width: min(360px, 100%);
  margin-bottom: -58px;
  filter: drop-shadow(0 28px 36px rgba(0, 0, 0, 0.46));
}

@keyframes hpFloat {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-12px); }
}

@keyframes hpFloatSoft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes hpPulse {
  0%, 100% { opacity: 0.72; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.04); }
}

@keyframes hpFlowPulse {
  0% { transform: translateX(0); opacity: 0; }
  12%, 82% { opacity: 1; }
  100% { transform: translateX(450%); opacity: 0; }
}

@keyframes hpFlowPulseVertical {
  0% { transform: translateY(0); opacity: 0; }
  12%, 82% { opacity: 1; }
  100% { transform: translateY(520%); opacity: 0; }
}

@keyframes hpCardSwitch {
  from { opacity: 0.72; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1180px) {
  .hosting-redesign .container {
    width: min(100% - 40px, 980px);
  }

  .hp-hero-grid,
  .hp-advisor-grid,
  .hp-manager-panel,
  .hp-final-cta {
    grid-template-columns: 1fr;
  }

  .hp-hero {
    min-height: 0;
  }

  .hp-hero-art {
    min-height: 560px;
  }

  .hp-pricing-grid,
  .hp-diff-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .hp-flow::before,
  .hp-flow::after {
    display: none;
  }

  .hp-flow-step > span {
    top: 16px;
    left: 16px;
    width: 36px;
    height: 36px;
    font-size: 16px;
    transform: none;
  }

  .hp-flow-step {
    min-height: 200px;
    justify-items: start;
    padding: 22px 20px 20px 62px;
    text-align: left;
  }

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

@media (max-width: 760px) {
  .hp-section {
    padding: 52px 0;
  }

  .hp-section-head {
    text-align: left;
  }

  .hp-section-head h2 {
    font-size: 34px;
  }

  .hp-hero {
    padding: 108px 0 40px;
  }

  .hp-hero h1 {
    font-size: 39px;
  }

  .hp-hero-copy p:not(.ch-eyebrow),
  .hp-section-head p:not(.ch-eyebrow),
  .hp-recommendation-card p,
  .hp-recommendation-card li,
  .hp-plan-card p,
  .hp-plan-card li,
  .hp-compare-mobile li,
  .hp-diff-grid p,
  .hp-client-card p,
  .hp-manager-copy p,
  .hp-manager-grid span,
  .hp-flow-step p,
  .hp-faq .faq-content p,
  .hp-final-cta p,
  .footer p,
  .footer a {
    font-size: 15.5px;
    line-height: 1.66;
  }

  .hp-compare-mobile summary,
  .hp-faq button {
    font-size: 16px;
  }

  .hero-actions,
  .hp-card-actions,
  .hp-final-cta .cta-actions {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .btn,
  .hp-card-actions .btn,
  .hp-final-cta .btn {
    width: 100%;
  }

  .hp-hero-art {
    min-height: 420px;
  }

  .hp-hero-drakonis {
    bottom: -28px;
    width: min(390px, 112%);
  }

  .hp-orbit {
    bottom: 22px;
    width: min(340px, 92%);
  }

  .hp-hero-card {
    min-height: 58px;
    grid-template-columns: 28px minmax(0, 1fr);
    padding: 10px 12px;
  }

  .hp-hero-card img {
    width: 28px;
    height: 28px;
  }

  .hp-card-ssl { top: 8px; left: 0; }
  .hp-card-manager { top: 72px; right: 0; }
  .hp-card-mail { display: none; }
  .hp-card-team { display: none; }

  .hp-advisor-options,
  .hp-pricing-grid,
  .hp-diff-grid,
  .hp-client-grid,
  .hp-faq,
  .hp-manager-grid,
  .hp-flow {
    grid-template-columns: 1fr;
  }

  .hp-advisor-options,
  .hp-recommendation-card,
  .hp-plan-card,
  .hp-manager-panel,
  .hp-journey,
  .hp-final-cta {
    padding: 20px;
  }

  .hp-plan-top {
    min-height: auto;
  }

  .hp-compare-table {
    display: none;
  }

  .hp-compare-mobile {
    display: block;
  }

  .hp-flow {
    gap: 14px;
    padding-top: 0;
    padding-left: 28px;
  }

  .hp-flow::before,
  .hp-flow::after {
    display: block;
    left: 13px;
    right: auto;
    width: 2px;
  }

  .hp-flow::before {
    top: 18px;
    bottom: 18px;
    height: auto;
    background: linear-gradient(180deg, rgba(29, 233, 182, 0.16), rgba(29, 233, 182, 0.62), rgba(29, 233, 182, 0.16));
  }

  .hp-flow::after {
    top: 18px;
    height: 96px;
    background: linear-gradient(180deg, transparent, var(--brand), transparent);
    animation: hpFlowPulseVertical 4.8s ease-in-out infinite;
  }

  .hp-flow-step {
    min-height: 0;
    padding: 22px 20px 20px 58px;
  }

  .hp-flow-step > span {
    top: 22px;
    left: -28px;
    width: 38px;
    height: 38px;
  }

  .hp-final-cta img {
    width: min(300px, 100%);
    margin-bottom: -44px;
  }
}

@media (max-width: 460px) {
  .hosting-redesign .container {
    width: min(100% - 28px, 420px);
  }

  .hp-hero h1,
  .hp-section-head h2 {
    font-size: 32px;
  }

  .hp-hero-art {
    min-height: 360px;
  }

  .hp-hero-drakonis {
    width: min(330px, 116%);
  }

  .hp-recommendation-card h3 {
    font-size: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hp-hero-drakonis,
  .hp-orbit,
  .hp-manager-mockup,
  .hp-flow::after,
  .hp-recommendation-card.is-switching {
    animation: none !important;
  }

  .hp-hero-card,
  .hp-advisor-choice,
  .hp-plan-card,
  .hp-flow-step,
  .hp-diff-grid article,
  .hp-client-card {
    transition: none !important;
  }
}

/* Revenda redesign */
.revenda-redesign {
  --rh-bg: #0b0f12;
  --rh-panel: rgba(5, 19, 24, 0.78);
  --rh-panel-strong: rgba(7, 27, 34, 0.94);
  --rh-line: rgba(29, 233, 182, 0.2);
  --rh-line-strong: rgba(29, 233, 182, 0.52);
  --rh-text: #f7fbff;
  --rh-muted: #b9cbd2;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 12%, rgba(29, 233, 182, 0.14), transparent 30%),
    radial-gradient(circle at 82% 18%, rgba(68, 183, 255, 0.12), transparent 28%),
    linear-gradient(180deg, #061014 0%, var(--rh-bg) 44%, #071116 100%);
  color: var(--rh-text);
}

.revenda-redesign .container {
  position: relative;
  z-index: 1;
}

.rh-section {
  padding: 78px 0;
}

.rh-section-head {
  max-width: 880px;
  margin: 0 auto 32px;
  text-align: center;
}

.rh-section-head h2 {
  margin: 8px 0 12px;
  font-size: 46px;
  line-height: 1.05;
}

.rh-section-head p:not(.ch-eyebrow) {
  margin: 0 auto;
  max-width: 760px;
  color: var(--rh-muted);
  font-size: 18px;
  line-height: 1.7;
}

.rh-hero {
  position: relative;
  min-height: 820px;
  padding: 132px 0 56px;
  isolation: isolate;
}

.rh-hero-bg,
.rh-hero-shade {
  position: absolute;
  inset: 0;
}

.rh-hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  filter: saturate(1.06) contrast(1.06);
}

.rh-hero-shade {
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(4, 10, 12, 0.95) 0%, rgba(4, 10, 12, 0.74) 44%, rgba(4, 10, 12, 0.88) 100%),
    linear-gradient(180deg, rgba(4, 10, 12, 0.1), var(--rh-bg));
}

.rh-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(620px, 1.25fr);
  gap: 20px;
  align-items: center;
}

.rh-hero-copy {
  max-width: 720px;
}

.rh-hero h1 {
  margin: 16px 0 20px;
  font-size: 64px;
  line-height: 1.02;
  letter-spacing: 0;
}

.rh-hero h1 span,
.rh-final-cta h2 span {
  color: var(--brand);
  text-shadow: 0 0 24px rgba(29, 233, 182, 0.34);
}

.rh-hero-copy p:not(.ch-eyebrow) {
  max-width: 640px;
  color: #cfdae0;
  font-size: 20px;
  line-height: 1.7;
}

.rh-hero-art {
  position: relative;
  min-height: 620px;
  overflow: visible;
}

.rh-orbit {
  position: absolute;
  right: 4%;
  bottom: 24px;
  width: min(600px, 86%);
  aspect-ratio: 1 / 0.25;
  border: 1px solid rgba(29, 233, 182, 0.48);
  border-radius: 50%;
  box-shadow: 0 0 46px rgba(29, 233, 182, 0.22);
  animation: rhOrbitPulse 6s ease-in-out infinite;
}

.rh-hero-drakonis {
  position: absolute;
  right: -4%;
  bottom: -4px;
  width: min(650px, 94%);
  max-height: 700px;
  object-fit: contain;
  z-index: 1;
  filter: drop-shadow(0 32px 44px rgba(0, 0, 0, 0.44));
  animation: rhDrakonisFloat 5.8s ease-in-out infinite;
}

.rh-hero-card {
  position: absolute;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  width: 216px;
  min-height: 78px;
  padding: 13px 15px;
  border: 1px solid var(--rh-line-strong);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(7, 31, 36, 0.88), rgba(5, 17, 22, 0.72));
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28), inset 0 0 28px rgba(29, 233, 182, 0.05);
  backdrop-filter: blur(14px);
  z-index: 2;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.rh-hero-card:hover {
  transform: translateY(-4px);
  border-color: rgba(29, 233, 182, 0.82);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.36), 0 0 28px rgba(29, 233, 182, 0.18);
}

.rh-hero-card img {
  width: 38px;
  height: 38px;
}

.rh-hero-card strong,
.rh-hero-card span {
  display: block;
}

.rh-hero-card strong {
  font-size: 15px;
}

.rh-hero-card span {
  margin-top: 4px;
  color: var(--rh-muted);
  font-size: 13px;
  line-height: 1.35;
}

.rh-card-brand { top: 36px; left: -54px; }
.rh-card-clients { top: 168px; right: -8px; }
.rh-card-manager { bottom: 132px; left: -34px; }
.rh-card-revenue { bottom: 78px; right: 2%; }

.rh-feature-grid,
.rh-pricing-grid,
.rh-profile-grid,
.rh-simulator-grid,
.rh-manager-panel,
.rh-transparency-panel,
.rh-journey,
.rh-final-cta,
.rh-table-wrap,
.rh-faq {
  border: 1px solid var(--rh-line);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(7, 29, 35, 0.84), rgba(5, 17, 22, 0.7));
  box-shadow: inset 0 0 42px rgba(29, 233, 182, 0.04);
}

.rh-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 14px;
}

.rh-feature-grid article,
.rh-profile-result,
.rh-simulator-result,
.rh-plan-card,
.rh-transparency-grid article,
.rh-manager-cards article {
  border: 1px solid var(--rh-line);
  border-radius: 8px;
  background: rgba(4, 16, 21, 0.74);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.rh-feature-grid article {
  min-height: 218px;
  padding: 24px;
}

.rh-feature-grid article:hover,
.rh-plan-card:hover,
.rh-flow-step:hover,
.rh-manager-cards article:hover {
  transform: translateY(-4px);
  border-color: var(--rh-line-strong);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24), 0 0 24px rgba(29, 233, 182, 0.1);
}

.rh-feature-grid img,
.rh-flow-step img,
.rh-manager-cards img {
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
}

.rh-feature-grid h3,
.rh-flow-step h3,
.rh-plan-card h3,
.rh-manager-copy h2,
.rh-transparency-panel h2,
.rh-final-cta h2 {
  margin: 0;
  letter-spacing: 0;
}

.rh-feature-grid h3 {
  font-size: 20px;
}

.rh-feature-grid p,
.rh-profile-result p,
.rh-simulator-result p,
.rh-plan-card p,
.rh-plan-card li,
.rh-compare-table td,
.rh-compare-mobile li,
.rh-transparency-panel p,
.rh-transparency-grid span,
.rh-flow-step p,
.rh-manager-copy p,
.rh-manager-cards span,
.rh-faq .faq-content p,
.rh-final-cta p {
  color: var(--rh-muted);
  line-height: 1.62;
}

.rh-profile-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: 20px;
  padding: 22px;
}

.rh-profile-options {
  display: grid;
  gap: 12px;
}

.rh-profile-choice {
  min-height: 58px;
  padding: 14px 16px;
  border: 1px solid var(--rh-line);
  border-radius: 8px;
  background: rgba(5, 18, 23, 0.78);
  color: var(--rh-text);
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.rh-profile-choice:hover,
.rh-profile-choice:focus-visible {
  border-color: var(--rh-line-strong);
  outline: none;
}

.rh-profile-choice.is-active {
  background: linear-gradient(135deg, rgba(29, 233, 182, 0.95), rgba(68, 183, 255, 0.9));
  color: #03110f;
}

.rh-profile-result {
  position: relative;
  min-height: 330px;
  padding: 28px;
  overflow: hidden;
}

.rh-profile-result::after,
.rh-simulator-result::after {
  content: "";
  position: absolute;
  inset: auto -24px -80px auto;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(29, 233, 182, 0.11);
  filter: blur(18px);
}

.rh-profile-result.is-switching {
  animation: rhCardSwitch 260ms ease;
}

.rh-profile-result span,
.rh-plan-top span,
.rh-simulator-result span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.rh-profile-result h3,
.rh-simulator-result h3 {
  margin: 0 0 12px;
  font-size: 32px;
}

.rh-profile-result strong {
  display: block;
  margin: 18px 0;
  color: var(--brand);
  font-size: 22px;
}

.rh-simulator-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(260px, 0.72fr) minmax(280px, 0.78fr);
  gap: 22px;
  align-items: stretch;
  padding: 28px;
}

.rh-simulator-grid h2 {
  margin: 8px 0 12px;
  font-size: 40px;
  line-height: 1.08;
}

.rh-simulator-form {
  display: grid;
  gap: 10px;
}

.rh-simulator-form label {
  color: var(--rh-text);
  font-weight: 800;
}

.rh-simulator-form input,
.rh-simulator-form select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--rh-line);
  border-radius: 8px;
  background: rgba(3, 12, 16, 0.84);
  color: var(--rh-text);
  font: inherit;
}

.rh-simulator-form input:focus,
.rh-simulator-form select:focus {
  border-color: var(--rh-line-strong);
  outline: 2px solid rgba(29, 233, 182, 0.22);
}

.rh-simulator-result {
  position: relative;
  padding: 24px;
}

.rh-simulator-result small {
  display: block;
  margin: 14px 0 20px;
  color: #98aeb6;
  line-height: 1.55;
}

.rh-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.rh-plan-card {
  position: relative;
  display: flex;
  min-height: 560px;
  flex-direction: column;
  padding: 26px;
}

.rh-plan-featured {
  border-color: rgba(29, 233, 182, 0.72);
  box-shadow: 0 0 46px rgba(29, 233, 182, 0.18), inset 0 0 38px rgba(29, 233, 182, 0.06);
}

.rh-plan-featured .btn-primary {
  box-shadow: 0 0 34px rgba(29, 233, 182, 0.28);
}

.rh-plan-card .badge {
  align-self: flex-start;
  margin-bottom: 14px;
  border-color: rgba(29, 233, 182, 0.38);
}

.rh-plan-top {
  min-height: 86px;
}

.rh-plan-card .price {
  margin: 18px 0;
  font-size: 38px;
  font-weight: 950;
}

.rh-plan-card .price span {
  font-size: 15px;
  color: var(--rh-muted);
}

.rh-plan-card ul {
  display: grid;
  gap: 12px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.rh-plan-card li,
.rh-feature-grid p {
  font-size: 16px;
}

.rh-plan-card li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 14px rgba(29, 233, 182, 0.7);
}

.rh-plan-card .btn {
  margin-top: auto;
}

.rh-table-wrap {
  padding: 18px;
  overflow: hidden;
}

.rh-compare-table {
  width: 100%;
  border-collapse: collapse;
}

.rh-compare-table th,
.rh-compare-table td {
  padding: 18px;
  border-bottom: 1px solid rgba(29, 233, 182, 0.14);
  text-align: left;
  vertical-align: top;
}

.rh-compare-table thead th {
  color: var(--brand);
  font-size: 14px;
  text-transform: uppercase;
}

.rh-compare-table tbody th {
  color: var(--rh-text);
  width: 24%;
}

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

.rh-compare-mobile {
  display: none;
}

.rh-compare-mobile details {
  border: 1px solid var(--rh-line);
  border-radius: 8px;
  background: rgba(4, 16, 21, 0.72);
}

.rh-compare-mobile details + details {
  margin-top: 12px;
}

.rh-compare-mobile summary {
  padding: 16px;
  color: var(--rh-text);
  font-weight: 900;
  cursor: pointer;
}

.rh-compare-mobile ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0 16px 16px 34px;
}

.rh-feature-grid-compact article {
  min-height: 196px;
}

.rh-transparency-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 24px;
  padding: 28px;
}

.rh-transparency-panel h2 {
  margin-top: 8px;
  font-size: 40px;
}

.rh-transparency-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.rh-transparency-grid article {
  padding: 20px;
}

.rh-transparency-grid strong,
.rh-manager-cards strong {
  display: block;
  margin-bottom: 8px;
}

.rh-journey {
  margin-top: 16px;
  padding: 34px;
}

.rh-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  padding-top: 46px;
}

.rh-flow::before,
.rh-flow::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 8%;
  right: 8%;
  height: 2px;
  border-radius: 999px;
}

.rh-flow::before {
  background: linear-gradient(90deg, rgba(29, 233, 182, 0.08), rgba(29, 233, 182, 0.62), rgba(29, 233, 182, 0.08));
}

.rh-flow::after {
  width: 100px;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
  animation: rhFlowPulse 5s ease-in-out infinite;
}

.rh-flow-step {
  position: relative;
  min-height: 260px;
  padding: 28px 20px;
  border: 1px solid var(--rh-line);
  border-radius: 8px;
  background: rgba(4, 16, 21, 0.76);
  text-align: center;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.rh-flow-step > span {
  position: absolute;
  top: -46px;
  left: 50%;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(29, 233, 182, 0.55);
  border-radius: 50%;
  background: #071519;
  color: var(--brand);
  font-weight: 950;
  transform: translateX(-50%);
  box-shadow: 0 0 24px rgba(29, 233, 182, 0.22);
}

.rh-manager-panel {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(360px, 1fr);
  gap: 24px;
  padding: 28px;
}

.rh-manager-copy .btn {
  margin-top: 18px;
}

.rh-manager-mockup {
  overflow: hidden;
  border: 1px solid rgba(29, 233, 182, 0.24);
  border-radius: 8px;
  background: linear-gradient(160deg, rgba(5, 23, 29, 0.96), rgba(3, 11, 15, 0.9));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.3);
}

.rh-window-top {
  display: flex;
  gap: 7px;
  align-items: center;
  padding: 14px;
  border-bottom: 1px solid rgba(29, 233, 182, 0.14);
}

.rh-window-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(29, 233, 182, 0.78);
}

.rh-window-top strong {
  margin-left: auto;
  color: var(--rh-muted);
  font-size: 13px;
}

.rh-manager-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 16px;
}

.rh-manager-stats article,
.rh-manager-list div {
  border: 1px solid rgba(29, 233, 182, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  padding: 14px;
}

.rh-manager-stats small,
.rh-manager-stats span,
.rh-manager-list span {
  display: block;
  color: var(--rh-muted);
  font-size: 12px;
}

.rh-manager-stats strong {
  display: block;
  margin: 8px 0;
  color: var(--brand);
  font-size: 26px;
}

.rh-manager-list {
  display: grid;
  gap: 10px;
  padding: 0 16px 16px;
}

.rh-manager-list div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.rh-manager-list strong {
  color: var(--rh-text);
}

.rh-manager-cards {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.rh-manager-cards article {
  padding: 18px;
}

.rh-faq {
  display: grid;
  gap: 12px;
  max-width: 980px;
  padding: 18px;
}

.rh-faq button,
.rh-faq .faq-content {
  border: 1px solid var(--rh-line);
  border-radius: 8px;
  background: rgba(4, 16, 21, 0.76);
}

.rh-faq button {
  width: 100%;
  padding: 18px 20px;
  color: var(--rh-text);
  font-size: 18px;
  font-weight: 900;
  text-align: left;
}

.rh-faq button:hover,
.rh-faq button:focus-visible {
  border-color: var(--rh-line-strong);
}

.rh-faq .faq-content {
  padding: 0 20px;
}

.rh-final-cta {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 300px;
  overflow: hidden;
  margin-top: 34px;
  margin-bottom: 76px;
  padding: 42px;
  background: #031016;
}

.rh-final-cta img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  opacity: 0.68;
}

.rh-final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 11, 15, 0.96), rgba(3, 11, 15, 0.62) 48%, rgba(3, 11, 15, 0.2)),
    linear-gradient(180deg, transparent, rgba(3, 11, 15, 0.55));
}

.rh-final-cta > div {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.rh-final-cta h2 {
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.03;
}

.rh-final-cta .cta-actions {
  margin-top: 22px;
}

@keyframes rhDrakonisFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes rhOrbitPulse {
  0%, 100% { opacity: 0.62; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.03); }
}

@keyframes rhCardSwitch {
  0% { opacity: 0.65; transform: translateY(6px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes rhFlowPulse {
  0% { transform: translateX(0); opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { transform: translateX(700%); opacity: 0; }
}

@media (max-width: 1180px) {
  .rh-hero-grid,
  .rh-profile-grid,
  .rh-simulator-grid,
  .rh-manager-panel,
  .rh-transparency-panel,
  .rh-final-cta {
    grid-template-columns: 1fr;
  }

  .rh-hero {
    min-height: 0;
  }

  .rh-hero-art {
    min-height: 570px;
  }

  .rh-feature-grid,
  .rh-pricing-grid,
  .rh-manager-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .rh-flow::before,
  .rh-flow::after {
    display: none;
  }

  .rh-flow-step {
    min-height: 200px;
    padding: 22px 20px 20px 64px;
    text-align: left;
  }

  .rh-flow-step > span {
    top: 18px;
    left: 18px;
    width: 36px;
    height: 36px;
    transform: none;
  }
}

@media (max-width: 760px) {
  .rh-section {
    padding: 54px 0;
  }

  .rh-section-head {
    text-align: left;
  }

  .rh-section-head h2,
  .rh-simulator-grid h2,
  .rh-transparency-panel h2,
  .rh-final-cta h2 {
    font-size: 34px;
  }

  .rh-hero {
    padding: 108px 0 42px;
  }

  .rh-hero h1 {
    font-size: 38px;
  }

  .rh-hero-copy p:not(.ch-eyebrow),
  .rh-section-head p:not(.ch-eyebrow),
  .rh-feature-grid p,
  .rh-profile-result p,
  .rh-simulator-result p,
  .rh-plan-card p,
  .rh-plan-card li,
  .rh-compare-mobile li,
  .rh-transparency-panel p,
  .rh-transparency-grid span,
  .rh-flow-step p,
  .rh-manager-copy p,
  .rh-manager-cards span,
  .rh-faq .faq-content p,
  .rh-final-cta p {
    font-size: 15.5px;
    line-height: 1.66;
  }

  .hero-actions,
  .rh-final-cta .cta-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn,
  .rh-final-cta .btn,
  .rh-profile-result .btn,
  .rh-simulator-result .btn,
  .rh-plan-card .btn {
    width: 100%;
  }

  .rh-hero-art {
    min-height: 420px;
  }

  .rh-hero-drakonis {
    right: -6%;
    width: min(390px, 112%);
  }

  .rh-orbit {
    right: 4%;
    bottom: 18px;
    width: min(340px, 92%);
  }

  .rh-hero-card {
    width: min(230px, 72%);
    min-height: 58px;
    grid-template-columns: 30px minmax(0, 1fr);
    padding: 10px 12px;
  }

  .rh-hero-card img {
    width: 28px;
    height: 28px;
  }

  .rh-hero-card span {
    display: none;
  }

  .rh-card-brand { top: 6px; left: 0; }
  .rh-card-clients { top: 74px; right: 0; }
  .rh-card-manager { display: none; }
  .rh-card-revenue { display: none; }

  .rh-feature-grid,
  .rh-pricing-grid,
  .rh-transparency-grid,
  .rh-manager-cards,
  .rh-manager-stats {
    grid-template-columns: 1fr;
  }

  .rh-feature-grid,
  .rh-profile-grid,
  .rh-simulator-grid,
  .rh-table-wrap,
  .rh-transparency-panel,
  .rh-journey,
  .rh-manager-panel,
  .rh-final-cta,
  .rh-faq {
    padding: 20px;
  }

  .rh-plan-card {
    min-height: 0;
    padding: 22px;
  }

  .rh-compare-table {
    display: none;
  }

  .rh-compare-mobile {
    display: block;
  }

  .rh-flow {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-top: 0;
    padding-left: 28px;
  }

  .rh-flow::before,
  .rh-flow::after {
    display: block;
    left: 13px;
    right: auto;
    width: 2px;
  }

  .rh-flow::before {
    top: 18px;
    bottom: 18px;
    height: auto;
    background: linear-gradient(180deg, rgba(29, 233, 182, 0.16), rgba(29, 233, 182, 0.62), rgba(29, 233, 182, 0.16));
  }

  .rh-flow::after {
    top: 18px;
    height: 96px;
    background: linear-gradient(180deg, transparent, var(--brand), transparent);
    animation: hpFlowPulseVertical 4.8s ease-in-out infinite;
  }

  .rh-flow-step {
    min-height: 0;
    padding: 22px 20px 20px 58px;
  }

  .rh-flow-step > span {
    top: 22px;
    left: -28px;
    width: 38px;
    height: 38px;
  }

  .rh-manager-list div {
    display: grid;
  }

  .rh-final-cta img {
    width: 100%;
    height: 100%;
    margin: 0;
    object-position: center;
  }
}

@media (max-width: 460px) {
  .revenda-redesign .container {
    width: min(100% - 28px, 420px);
  }

  .rh-hero h1,
  .rh-section-head h2,
  .rh-simulator-grid h2,
  .rh-transparency-panel h2,
  .rh-final-cta h2 {
    font-size: 31px;
  }

  .rh-hero-art {
    min-height: 360px;
  }

  .rh-profile-result h3,
  .rh-simulator-result h3 {
    font-size: 27px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rh-hero-drakonis,
  .rh-orbit,
  .rh-flow::after,
  .rh-profile-result.is-switching {
    animation: none !important;
  }

  .rh-hero-card,
  .rh-feature-grid article,
  .rh-profile-choice,
  .rh-plan-card,
  .rh-flow-step,
  .rh-manager-cards article {
    transition: none !important;
  }
}
