:root {
  --ink: #07111f;
  --ink-2: #0d1c31;
  --blue: #1463ff;
  --cyan: #00c2d8;
  --lime: #b6ff2e;
  --paper: #f7faff;
  --muted: #647086;
  --line: rgba(20, 99, 255, 0.16);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  padding: 0 clamp(18px, 4vw, 52px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(7, 17, 31, 0.08);
  backdrop-filter: blur(18px);
}

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

.brand img {
  display: block;
  height: 50px;
  width: auto;
  object-fit: contain;
}

.brand-logo {
  max-width: min(310px, 30vw);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #17243a;
  font-size: 14px;
  font-weight: 800;
}

.desktop-nav a {
  position: relative;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--blue);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.nav-cta,
.button,
.contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-cta {
  padding: 0 18px;
  background: var(--ink);
  color: white;
  font-size: 13px;
}

.nav-cta:hover,
.button:hover,
.contact-form button:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 30%, rgba(0, 194, 216, 0.2), transparent 30%),
    radial-gradient(circle at 18% 72%, rgba(20, 99, 255, 0.16), transparent 28%),
    linear-gradient(135deg, #07111f 0%, #0a1527 52%, #06101e 100%);
  color: white;
}

.network-canvas,
.hero-glow {
  position: absolute;
  inset: 0;
}

.network-canvas {
  opacity: 0.72;
}

.hero-glow {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 88%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 520px);
  gap: clamp(36px, 6vw, 96px);
  align-items: center;
  width: min(var(--max), calc(100% - 40px));
  min-height: 760px;
  margin: 0 auto;
  padding: 76px 0 110px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 8px;
  height: 8px;
  background: var(--lime);
  border-radius: 2px;
  content: "";
}

.hero h1,
.section-heading h2,
.sector-copy h2,
.about-panel h2,
.contact-copy h2 {
  margin: 14px 0 0;
  letter-spacing: 0;
  line-height: 1.04;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(46px, 6vw, 76px);
}

.hero p {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 2vw, 20px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  padding: 0 22px;
}

.button.primary {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: white;
  box-shadow: 0 18px 40px rgba(20, 99, 255, 0.28);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.ecosystem {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 1;
  margin-left: auto;
}

.ecosystem::before,
.ecosystem::after {
  position: absolute;
  inset: 11%;
  border: 1px solid rgba(0, 194, 216, 0.2);
  border-radius: 50%;
  content: "";
  animation: spin 24s linear infinite;
}

.ecosystem::after {
  inset: 23%;
  border-color: rgba(182, 255, 46, 0.18);
  animation-duration: 18s;
  animation-direction: reverse;
}

.orbit-mark {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 148px;
  height: 148px;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 194, 216, 0.2);
  transform: translate(-50%, -50%) rotate(45deg);
}

.orbit-mark img {
  width: 96px;
  transform: rotate(-45deg);
}

.module {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 132px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: white;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
  animation: float 6s ease-in-out infinite;
}

.module::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 132px;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 194, 216, 0.8), transparent);
  content: "";
  transform-origin: left;
  z-index: -1;
}

.module strong {
  font-size: 14px;
}

.module-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  background: rgba(0, 194, 216, 0.14);
  border-radius: 8px;
}

.module-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--cyan);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.module-web { top: 7%; left: 34%; }
.module-cloud { top: 28%; right: 0; animation-delay: -1s; }
.module-app { right: 8%; bottom: 20%; animation-delay: -2s; }
.module-phone { bottom: 8%; left: 30%; animation-delay: -3s; }
.module-ticket { bottom: 28%; left: 0; animation-delay: -1.5s; }
.module-soft { top: 27%; left: 2%; animation-delay: -2.5s; }

.module-web::before { transform: rotate(90deg); }
.module-cloud::before { transform: rotate(155deg); }
.module-app::before { transform: rotate(206deg); }
.module-phone::before { transform: rotate(270deg); }
.module-ticket::before { transform: rotate(334deg); }
.module-soft::before { transform: rotate(25deg); }

.service-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(var(--max), calc(100% - 40px));
  margin: -28px auto 0;
  position: relative;
  z-index: 5;
  background: rgba(7, 17, 31, 0.1);
  border: 1px solid rgba(7, 17, 31, 0.08);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(7, 17, 31, 0.14);
}

.service-card {
  display: block;
  min-height: 190px;
  padding: 28px;
  background: white;
  color: var(--ink);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  box-shadow: inset 0 4px 0 var(--blue), 0 18px 50px rgba(7, 17, 31, 0.12);
  transform: translateY(-3px);
}

.service-card span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.service-card h2 {
  margin: 22px 0 10px;
  font-size: 22px;
  line-height: 1.12;
}

.service-card p,
.solution p,
.about-panel p,
.contact-copy p {
  color: var(--muted);
}

.solutions,
.sectors,
.about,
.contact,
.detail-section,
.packages,
.process-section,
.hosting-info,
.domain-section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 108px 0 0;
}

.section-intro {
  max-width: 820px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.detail-hero {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 24%, rgba(0, 194, 216, 0.19), transparent 32%),
    linear-gradient(135deg, #07111f 0%, #0b1830 100%);
  color: white;
}

.detail-hero::after {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  content: "";
}

.detail-hero-inner {
  position: relative;
  z-index: 2;
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
  padding: 168px 0 110px;
}

.detail-hero h1 {
  max-width: 860px;
  margin: 16px 0 0;
  font-size: clamp(44px, 6vw, 74px);
  letter-spacing: 0;
  line-height: 1.04;
}

.detail-hero p {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 2vw, 20px);
}

.back-link {
  display: inline-flex;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.detail-grid,
.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.detail-card,
.package-card {
  min-height: 220px;
  padding: 28px;
  background: white;
  border: 1px solid rgba(7, 17, 31, 0.08);
  border-radius: 8px;
}

.detail-card h3,
.package-card h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.12;
}

.package-card h3 small {
  color: var(--muted);
  font-size: 17px;
}

.package-card.feature h3 small {
  color: rgba(255, 255, 255, 0.66);
}

.detail-card p,
.package-card p {
  color: var(--muted);
}

.package-card {
  display: grid;
  align-content: start;
  gap: 14px;
}

.package-card span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.package-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.package-card li {
  position: relative;
  padding-left: 20px;
  color: #26344a;
  font-weight: 700;
}

.package-card li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--lime);
  border-radius: 2px;
  content: "";
  transform: translateY(-50%);
}

.package-card.feature {
  background:
    linear-gradient(135deg, rgba(0, 194, 216, 0.16), transparent 58%),
    var(--ink);
  border-color: rgba(0, 194, 216, 0.24);
  color: white;
  box-shadow: 0 24px 80px rgba(7, 17, 31, 0.16);
}

.package-card.feature p,
.package-card.feature li {
  color: rgba(255, 255, 255, 0.76);
}

.plan-picker {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.plan-choice {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 10px;
}

.plan-option {
  display: grid;
  gap: 10px;
  min-height: 132px;
  padding: 20px;
  background: white;
  border: 1px solid rgba(7, 17, 31, 0.08);
  border-radius: 8px;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.plan-option:hover,
.plan-option.is-active {
  border-color: rgba(20, 99, 255, 0.5);
  box-shadow: inset 0 4px 0 var(--blue), 0 18px 50px rgba(7, 17, 31, 0.12);
  transform: translateY(-3px);
}

.plan-option span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.plan-option strong {
  font-size: 20px;
  line-height: 1.1;
}

.plan-option small {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.plan-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  background: #25d366;
  border-radius: 8px;
  color: white;
  font-size: 13px;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.plan-contact:hover {
  box-shadow: 0 14px 34px rgba(7, 17, 31, 0.16);
  transform: translateY(-2px);
}

.plan-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  margin-top: 20px;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(0, 194, 216, 0.14), transparent 58%),
    var(--ink);
  border: 1px solid rgba(0, 194, 216, 0.22);
  border-radius: 8px;
  color: white;
  box-shadow: 0 24px 80px rgba(7, 17, 31, 0.16);
}

.plan-detail.is-hidden {
  display: none;
}

.plan-detail h3 {
  margin: 14px 0 0;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
}

.plan-detail p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.76);
}

.plan-price {
  display: grid;
  align-content: start;
  justify-items: end;
  min-width: 180px;
}

.plan-price strong {
  color: var(--lime);
  font-size: clamp(42px, 6vw, 64px);
  line-height: 1;
}

.plan-price span,
.plan-price small {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.plan-features {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.plan-features li {
  position: relative;
  padding: 13px 14px 13px 34px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.plan-features li::before {
  position: absolute;
  top: 50%;
  left: 14px;
  width: 8px;
  height: 8px;
  background: var(--lime);
  border-radius: 2px;
  content: "";
  transform: translateY(-50%);
}

.plan-cta {
  grid-column: 1 / -1;
  width: fit-content;
}

.comparison {
  margin-top: 28px;
  overflow-x: auto;
  background: white;
  border: 1px solid rgba(7, 17, 31, 0.08);
  border-radius: 8px;
  box-shadow: 0 18px 60px rgba(7, 17, 31, 0.08);
}

.comparison table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
}

.comparison th,
.comparison td {
  padding: 15px 18px;
  border-bottom: 1px solid rgba(7, 17, 31, 0.08);
  text-align: left;
  vertical-align: top;
}

.comparison th {
  background: var(--ink);
  color: white;
  font-size: 13px;
  text-transform: uppercase;
}

.comparison th:nth-child(3) {
  color: var(--lime);
}

.comparison td {
  color: #26344a;
  font-size: 14px;
  font-weight: 700;
}

.comparison tr:last-child td {
  border-bottom: 0;
}

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

.info-panel {
  padding: 34px;
  background: white;
  border: 1px solid rgba(7, 17, 31, 0.08);
  border-radius: 8px;
}

.info-panel h2,
.addons h2 {
  margin: 14px 0 0;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.08;
}

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

.info-list li {
  padding: 13px 14px;
  background: #f3f7ff;
  border: 1px solid rgba(20, 99, 255, 0.08);
  border-radius: 8px;
  color: #26344a;
}

.addons {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  gap: 30px;
  margin-top: 18px;
  padding: 34px;
  background: var(--ink);
  border-radius: 8px;
  color: white;
}

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

.addons.is-collapsed .addons-grid {
  display: none;
}

.addons-toggle {
  margin-top: 22px;
  min-height: 44px;
  padding: 0 18px;
  background: white;
  border: 0;
  border-radius: 8px;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.addons-grid span {
  display: grid;
  gap: 4px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

.addons-grid strong {
  color: white;
  font-size: 15px;
}

.domain-section {
  padding-top: 48px;
}

.domain-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.62fr);
  gap: 34px;
  align-items: end;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(20, 99, 255, 0.08), transparent 58%),
    white;
  border: 1px solid rgba(7, 17, 31, 0.08);
  border-radius: 8px;
  box-shadow: 0 18px 60px rgba(7, 17, 31, 0.08);
}

.domain-panel h2 {
  margin: 14px 0 0;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
}

.domain-panel p {
  max-width: 620px;
  color: var(--muted);
}

.domain-check {
  display: grid;
  gap: 10px;
}

.domain-check label {
  color: #26344a;
  font-size: 13px;
  font-weight: 900;
}

.domain-check-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.domain-check input {
  width: 100%;
  min-height: 44px;
  padding: 0 14px;
  background: #f7faff;
  border: 1px solid rgba(7, 17, 31, 0.12);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  outline: none;
}

.domain-check input::placeholder {
  color: rgba(7, 17, 31, 0.42);
}

.domain-check input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(0, 194, 216, 0.14);
}

.domain-check a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  background: #25d366;
  border-radius: 8px;
  color: white;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.process-line {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  overflow: hidden;
  background: rgba(7, 17, 31, 0.1);
  border: 1px solid rgba(7, 17, 31, 0.08);
  border-radius: 8px;
}

.process-line span {
  min-height: 92px;
  display: flex;
  align-items: center;
  padding: 20px;
  background: white;
  color: #26344a;
  font-weight: 900;
}

.section-heading {
  max-width: 720px;
}

.section-heading h2,
.sector-copy h2,
.about-panel h2,
.contact-copy h2 {
  font-size: clamp(34px, 4vw, 52px);
}

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

.solution {
  min-height: 210px;
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(20, 99, 255, 0.08), transparent 52%),
    white;
  border: 1px solid rgba(7, 17, 31, 0.08);
  border-radius: 8px;
}

.solution h3 {
  margin: 0;
  font-size: 24px;
}

.sectors {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

.sector-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sector-list span {
  padding: 13px 16px;
  background: white;
  border: 1px solid rgba(7, 17, 31, 0.08);
  border-radius: 8px;
  color: #26344a;
  font-weight: 800;
}

.about-panel {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  padding: clamp(32px, 5vw, 58px);
  background: var(--ink);
  border-radius: 8px;
  color: white;
  overflow: hidden;
  position: relative;
}

.about-panel::after {
  position: absolute;
  inset: auto -10% -35% auto;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(0, 194, 216, 0.18), transparent 62%);
  content: "";
}

.about-panel img {
  width: 100%;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 8px;
  filter: none;
}

.about-logo {
  max-width: 360px;
}

.about-panel p {
  max-width: 720px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 480px);
  gap: 48px;
  align-items: start;
  padding-bottom: 96px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  background: white;
  border: 1px solid rgba(7, 17, 31, 0.08);
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(7, 17, 31, 0.1);
}

.contact-details {
  display: grid;
  gap: 10px;
  margin-top: 26px;
  color: #26344a;
  font-weight: 800;
}

.contact-details a,
.contact-details span {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  background: white;
  border: 1px solid rgba(7, 17, 31, 0.08);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(7, 17, 31, 0.06);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #26344a;
  font-size: 13px;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(7, 17, 31, 0.12);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  outline: none;
  resize: vertical;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(20, 99, 255, 0.12);
}

.contact-form button {
  min-height: 50px;
  background: var(--blue);
  color: white;
  font-size: 15px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  padding: 26px clamp(20px, 5vw, 52px);
  background: #050b14;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer span:first-child {
  color: white;
  font-weight: 900;
}

.whatsapp-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  background: #25d366;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(7, 17, 31, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-widget::before {
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(37, 211, 102, 0.34);
  border-radius: 12px;
  content: "";
  animation: pulse 1800ms ease-out infinite;
}

.whatsapp-widget:hover {
  box-shadow: 0 24px 60px rgba(7, 17, 31, 0.36);
  transform: translateY(-3px);
}

.whatsapp-widget svg {
  position: relative;
  width: 31px;
  height: 31px;
  fill: none;
  stroke: white;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

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

@keyframes pulse {
  0% {
    opacity: 0.7;
    transform: scale(0.88);
  }
  100% {
    opacity: 0;
    transform: scale(1.24);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .hero-inner,
  .sectors,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    padding-bottom: 120px;
  }

  .ecosystem {
    margin: 0 auto;
  }

  .service-strip,
  .solution-grid,
  .detail-grid,
  .package-grid,
  .plan-picker {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .plan-detail {
    grid-template-columns: 1fr;
  }

  .plan-price {
    justify-items: start;
  }

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

  .info-columns,
  .addons,
  .domain-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    height: 68px;
  }

  .brand img {
    height: 42px;
  }

  .brand-logo {
    max-width: 210px;
  }

  .nav-cta {
    display: none;
  }

  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero-inner {
    padding: 118px 0 112px;
  }

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

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

  .whatsapp-widget {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }

  .ecosystem {
    aspect-ratio: 1 / 1.18;
  }

  .module {
    min-width: 110px;
    padding: 10px 11px;
  }

  .module strong {
    font-size: 12px;
  }

  .orbit-mark {
    width: 118px;
    height: 118px;
  }

  .orbit-mark img {
    width: 76px;
  }

  .service-strip,
  .solution-grid,
  .detail-grid,
  .package-grid,
  .plan-picker,
  .process-line {
    grid-template-columns: 1fr;
  }

  .detail-hero-inner {
    padding: 128px 0 86px;
  }

  .detail-hero h1 {
    font-size: 40px;
  }

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

  .domain-check-row {
    grid-template-columns: 1fr;
  }

  .plan-features {
    grid-template-columns: 1fr;
  }

  .about-panel {
    grid-template-columns: 1fr;
  }
}
