:root {
  color-scheme: dark;
  --bg: #07090f;
  --surface: #101722;
  --surface-2: #182231;
  --line: #283447;
  --text: #f5f7fb;
  --muted: #a8b3c4;
  --green: #2dd47f;
  --cyan: #20b7d8;
  --amber: #f5b84b;
  --rose: #f36f82;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 15% 10%, rgba(32, 183, 216, 0.16), transparent 28rem),
    radial-gradient(circle at 85% 0%, rgba(45, 212, 127, 0.12), transparent 26rem),
    linear-gradient(180deg, #07090f 0%, #0b1018 42%, #07090f 100%);
  color: var(--text);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 70%);
}

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

img {
  max-width: 100%;
}

button,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(7, 9, 15, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand,
.nav,
.hero-actions,
.trust-row,
.contact-panel {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 42px;
  height: 42px;
}

.nav {
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}

.nav a,
.header-cta {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  padding: 0 14px;
  color: var(--muted);
}

.nav a:hover,
.header-cta:hover,
.nav a.is-active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
}

.header-cta {
  background: var(--green);
  color: #04110b;
  font-weight: 800;
}

.server-only-header .header-inner {
  justify-content: flex-start;
}

.server-back-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  padding: 0 14px;
  color: #04110b;
  background: var(--green);
  font-weight: 900;
}

.hero {
  padding: 82px 0 56px;
}

.page-hero {
  padding: 74px 0 42px;
}

.server-hero {
  padding-bottom: 58px;
}

.narrow {
  max-width: 920px;
}

.hero-grid,
.server-layout,
.contact-grid,
.gallery-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 34px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 850px;
  margin-bottom: 20px;
  font-size: clamp(2.45rem, 6vw, 5rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.9rem, 3.4vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.hero-text,
.section-heading p,
.contact-grid p {
  color: var(--muted);
  font-size: 1.06rem;
}

.hero-actions {
  gap: 12px;
  flex-wrap: wrap;
  margin: 30px 0 24px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 18px;
  border: 1px solid transparent;
  font-weight: 800;
}

.button-primary {
  background: linear-gradient(135deg, var(--green), var(--cyan));
  color: #03120f;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.07);
}

.trust-row {
  gap: 10px;
  flex-wrap: wrap;
}

.trust-row span {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 7px 12px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.045);
}

.hero-console,
.server-shell,
.config-panel,
.contact-panel,
.accordion,
.service-card,
.server-display,
.gallery-item {
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: linear-gradient(145deg, rgba(16, 23, 34, 0.94), rgba(11, 16, 24, 0.92));
  box-shadow: var(--shadow);
}

.hero-console {
  border-radius: 8px;
  padding: 24px;
}

.console-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.pulse {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(45, 212, 127, 0.12);
}

.console-metrics {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.console-metrics div,
.spec-tile,
.quote-total {
  border-radius: 8px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.console-metrics span,
.spec-tile span,
.quote-total span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}

.section {
  padding: 68px 0;
}

.section-alt {
  background: rgba(255, 255, 255, 0.035);
  border-block: 1px solid rgba(255, 255, 255, 0.07);
}

.server-subnav-wrap {
  position: sticky;
  top: 78px;
  z-index: 15;
  background: rgba(7, 9, 15, 0.78);
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.server-subnav {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
}

.server-subnav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 8px;
  padding: 0 14px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.server-subnav a:hover {
  color: var(--text);
  border-color: rgba(45, 212, 127, 0.35);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading.compact {
  margin-bottom: 0;
}

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

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

.portal-card,
.content-panel,
.steps-panel,
.detail-card,
.promo-card {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(16, 23, 34, 0.94), rgba(11, 16, 24, 0.92));
  box-shadow: var(--shadow);
}

.portal-card {
  min-height: 220px;
  padding: 22px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.portal-card:hover {
  transform: translateY(-4px);
  border-color: rgba(45, 212, 127, 0.4);
}

.card-tag {
  display: inline-flex;
  min-width: 40px;
  height: 32px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 8px;
  background: rgba(32, 183, 216, 0.14);
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
}

.portal-card p,
.content-panel p,
.steps-panel span,
.detail-card p {
  color: var(--muted);
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 24px;
  align-items: stretch;
}

.content-panel,
.steps-panel {
  padding: 24px;
}

.steps-panel {
  display: grid;
  gap: 12px;
}

.steps-panel div {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.steps-panel strong {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--green);
  color: #04110b;
}

.promo-heading {
  padding: 24px;
  border: 1px solid rgba(45, 212, 127, 0.22);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(45, 212, 127, 0.12), rgba(32, 183, 216, 0.07));
}

.promo-list {
  display: grid;
  gap: 16px;
}

.promo-feature-card {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) 180px;
  gap: 22px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  padding: 18px;
  background: linear-gradient(145deg, rgba(16, 23, 34, 0.94), rgba(11, 16, 24, 0.92));
  box-shadow: var(--shadow);
}

.promo-feature-card.is-selected {
  border-color: rgba(45, 212, 127, 0.55);
  box-shadow: 0 24px 70px rgba(45, 212, 127, 0.12);
}

.promo-feature-card img {
  width: 100%;
  min-height: 126px;
  object-fit: contain;
  border-radius: 8px;
  background: var(--surface);
  padding: 14px;
}

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

.promo-feature-card .button {
  width: 100%;
  cursor: pointer;
}

.promo-price-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.promo-price-row strong,
.promo-price-row span {
  display: block;
}

.promo-price-row div {
  border-radius: 8px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.045);
}

.promo-price-row strong {
  color: var(--green);
  font-size: 1.25rem;
}

.promo-price-row span {
  color: var(--muted);
  font-size: 0.82rem;
}

.custom-feature-card {
  border-color: rgba(245, 184, 75, 0.32);
}

.promo-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 22px;
}

.promo-card-accent {
  border-color: rgba(45, 212, 127, 0.34);
  background: linear-gradient(145deg, rgba(18, 38, 33, 0.95), rgba(11, 16, 24, 0.92));
}

.custom-promo-card {
  border-color: rgba(245, 184, 75, 0.32);
}

.promo-chip {
  width: fit-content;
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  margin-bottom: 18px;
  border-radius: 999px;
  padding: 0 11px;
  color: #04110b;
  background: var(--green);
  font-size: 0.76rem;
  font-weight: 900;
}

.promo-price {
  margin: 10px 0 18px;
  color: var(--text);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.promo-price span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.promo-card .check-list {
  margin-bottom: 22px;
}

.promo-card .button {
  width: 100%;
  margin-top: auto;
  cursor: pointer;
}

.service-card {
  min-height: 100%;
  border-radius: 8px;
  padding: 22px;
}

.service-detail-grid {
  display: grid;
  gap: 18px;
}

.detail-card {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  padding: 18px;
}

.detail-card img {
  width: 100%;
  min-height: 260px;
  object-fit: cover;
  border-radius: 8px;
  background: var(--surface);
}

.detail-card .button {
  margin-top: 18px;
}

.service-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 8px;
  background: rgba(45, 212, 127, 0.14);
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 900;
}

.service-card p,
.service-card li,
.server-display p,
.accordion-content p {
  color: var(--muted);
}

.service-card ul,
.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-card li,
.check-list li {
  position: relative;
  padding-left: 22px;
  margin-top: 9px;
}

.service-card li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
}

.server-shell {
  border-radius: 8px;
  padding: 18px;
}

.server-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.server-tab {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.055);
  cursor: pointer;
}

.server-tab.is-active {
  color: #04110b;
  background: var(--green);
  border-color: transparent;
  font-weight: 900;
}

.server-layout {
  grid-template-columns: minmax(0, 1fr) 410px;
  align-items: stretch;
}

.server-display,
.config-panel {
  border-radius: 8px;
  padding: 24px;
  box-shadow: none;
}

.server-id {
  margin-bottom: 8px;
  color: var(--amber);
  font-weight: 900;
}

.server-display-header {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  margin-bottom: 22px;
}

.server-display-header img {
  width: 140px;
  min-height: 100px;
  object-fit: contain;
  border-radius: 8px;
  background: var(--surface);
  padding: 10px;
}

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

.plan-pricing-panel div {
  border: 1px solid rgba(45, 212, 127, 0.18);
  border-radius: 8px;
  padding: 14px;
  background: rgba(45, 212, 127, 0.07);
}

.plan-pricing-panel span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}

.plan-pricing-panel strong {
  color: var(--green);
  font-size: 1.25rem;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0;
}

.config-panel label {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
  color: var(--muted);
}

.panel-promos {
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.plan-selector {
  display: grid;
  gap: 8px;
}

.plan-option {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px 10px;
  align-items: center;
  min-height: 62px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.045);
  cursor: pointer;
  text-align: left;
}

.plan-option span {
  font-weight: 900;
}

.plan-option strong {
  color: var(--green);
}

.plan-option small {
  grid-column: 1 / -1;
  color: var(--muted);
}

.plan-option.is-active {
  border-color: rgba(45, 212, 127, 0.55);
  background: rgba(45, 212, 127, 0.13);
}

select {
  width: 100%;
  min-height: 44px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 0 12px;
  color: var(--text);
  background: #0a0f17;
}

.addons {
  display: grid;
  gap: 8px;
  margin: 16px 0;
}

.addons label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.quote-total {
  margin: 18px 0;
}

.quote-total strong {
  display: block;
  margin: 2px 0 6px;
  color: var(--green);
  font-size: 1.8rem;
}

.quote-total p {
  margin: 0;
  color: var(--muted);
}

.quote-total small {
  display: block;
  margin-top: 8px;
  color: var(--amber);
}

.custom-project-panel {
  margin-top: 24px;
  border: 1px solid rgba(245, 184, 75, 0.24);
  border-radius: 8px;
  padding: 16px;
  background: rgba(245, 184, 75, 0.06);
}

.custom-project-panel label {
  display: grid;
  gap: 8px;
  color: var(--muted);
}

textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 12px;
  color: var(--text);
  background: #0a0f17;
  resize: vertical;
}

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

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

.gallery-heading {
  margin-top: 46px;
}

.gallery-slider {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.slides {
  display: flex;
  transition: transform 0.55s ease;
}

.slides img {
  min-width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  border-radius: 8px;
  padding: 0;
  cursor: pointer;
}

.gallery-grid-large .gallery-item {
  aspect-ratio: 4 / 3;
  min-height: 0;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  border-radius: 8px;
  padding: 6px 10px;
  background: rgba(0, 0, 0, 0.62);
  font-weight: 800;
}

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

.accordion {
  border-radius: 8px;
  overflow: hidden;
}

.accordion-trigger {
  width: 100%;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  border: 0;
  color: var(--text);
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-weight: 900;
}

.accordion-content {
  display: none;
  padding: 0 20px 20px;
}

.accordion.is-open .accordion-content {
  display: block;
}

.accordion.is-open .accordion-trigger strong {
  color: var(--green);
  transform: rotate(45deg);
}

.contact-grid {
  grid-template-columns: minmax(0, 1fr) 420px;
}

.contact-panel {
  align-items: stretch;
  flex-direction: column;
  gap: 10px;
  border-radius: 8px;
  padding: 20px;
}

.contact-panel a,
.contact-panel span {
  border-radius: 8px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--muted);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  border: 0;
  background: rgba(0, 0, 0, 0.86);
  cursor: zoom-out;
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: min(92vw, 980px);
  max-height: 86vh;
  border-radius: 8px;
  background: var(--surface);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #25d366;
  color: #04110b;
  font-weight: 900;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.34);
}

.site-footer {
  padding: 44px 0 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(16, 23, 34, 0.7), rgba(7, 9, 15, 0.96)),
    radial-gradient(circle at 15% 0%, rgba(45, 212, 127, 0.11), transparent 24rem);
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(220px, 0.8fr) minmax(260px, 0.9fr);
  gap: 28px;
  align-items: start;
}

.footer-brand {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.footer-brand img {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
}

.footer-brand strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 1.2rem;
}

.footer-brand p,
.footer-block p {
  margin: 0;
  color: var(--muted);
}

.footer-block span {
  display: block;
  margin-bottom: 10px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-block p + p {
  margin-top: 6px;
}

.footer-contact {
  display: grid;
  gap: 8px;
}

.footer-contact a {
  width: fit-content;
  color: var(--text);
}

.footer-contact a:hover {
  color: var(--green);
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-legal p {
  margin: 0;
  color: #778397;
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .hero-grid,
  .server-layout,
  .contact-grid,
  .gallery-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .portal-grid,
  .spec-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .promo-feature-card {
    grid-template-columns: 150px minmax(0, 1fr);
  }

  .promo-feature-card .button {
    grid-column: 1 / -1;
  }

  .split-grid,
  .detail-card {
    grid-template-columns: 1fr;
  }
}

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

  .header-inner,
  .brand,
  .nav {
    align-items: flex-start;
  }

  .header-inner {
    padding: 14px 0;
    flex-direction: column;
  }

  .nav {
    justify-content: flex-start;
  }

  .hero {
    padding-top: 46px;
  }

  .services-grid,
  .portal-grid,
  .spec-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .promo-feature-card,
  .server-display-header,
  .plan-pricing-panel,
  .promo-price-row {
    grid-template-columns: 1fr;
  }

  .server-subnav-wrap {
    top: 0;
  }

  .slides img {
    height: 280px;
  }

  .server-shell {
    padding: 12px;
  }

  .footer-brand,
  .footer-legal {
    flex-direction: column;
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
  }
}
