:root {
  --color-bg: #05070d;
  --color-bg-elevated: rgba(7, 13, 25, 0.82);
  --color-navy: #0a162b;
  --color-border: rgba(42, 143, 255, 0.24);
  --color-border-strong: rgba(42, 143, 255, 0.48);
  --color-accent: #1688ff;
  --color-accent-soft: rgba(22, 136, 255, 0.14);
  --color-text: #f5f8ff;
  --color-muted: #9aa8bd;
  --header-height: 72px;
  --max-width: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: Arial, Helvetica, sans-serif;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg-elevated);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.03), 0 18px 44px rgba(0, 0, 0, 0.28);
}

.header-container {
  display: flex;
  align-items: center;
  gap: 16px;
  width: min(100% - 48px, var(--max-width));
  min-height: var(--header-height);
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  min-width: 112px;
}

.brand-name {
  color: var(--color-text);
  font-size: 1.14rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.brand-tagline {
  color: var(--color-muted);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.1;
  white-space: nowrap;
}

.primary-nav {
  display: flex;
  justify-content: center;
  flex: 1 1 auto;
}

.nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 8px;
  border-radius: 6px;
  color: #d9e3f3;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.25;
  white-space: nowrap;
  transition: color 180ms ease, background-color 180ms ease;
}

.nav-link::after {
  position: absolute;
  right: 10px;
  bottom: 5px;
  left: 10px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-accent);
  box-shadow: 0 0 12px rgba(22, 136, 255, 0.8);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  background: var(--color-accent-soft);
  color: var(--color-text);
}

.nav-link.active {
  background: transparent;
  color: var(--color-text);
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-muted);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.language-option.active {
  color: var(--color-text);
}

.language-divider {
  color: rgba(154, 168, 189, 0.6);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid var(--color-border-strong);
  border-radius: 6px;
  background: linear-gradient(135deg, #0d73dd, var(--color-accent));
  box-shadow: 0 0 22px rgba(22, 136, 255, 0.22);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 28px rgba(22, 136, 255, 0.34);
  transform: translateY(-1px);
}

.mobile-nav-cta-item {
  display: none;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--color-text);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 650px;
  background:
    radial-gradient(circle at 76% 44%, rgba(14, 91, 198, 0.16), transparent 32%),
    radial-gradient(circle at 88% 50%, rgba(151, 35, 201, 0.12), transparent 30%),
    linear-gradient(135deg, #030715 0%, #050a17 42%, #040816 100%);
}

.hero-section::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(3, 7, 21, 1) 0%, rgba(3, 7, 21, 0.95) 37%, rgba(3, 7, 21, 0.38) 70%, rgba(3, 7, 21, 0.72) 100%),
    radial-gradient(circle at 25% 35%, rgba(22, 136, 255, 0.08), transparent 24%);
  content: "";
}

.hero-container {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1fr);
  align-items: center;
  gap: 54px;
  width: min(100% - 48px, var(--max-width));
  min-height: inherit;
  margin: 0 auto;
  padding: 30px 0 34px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 540px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  min-height: 31px;
  padding: 0 11px;
  margin: 0 0 15px;
  border: 1px solid rgba(22, 136, 255, 0.34);
  border-radius: 999px;
  background: rgba(22, 136, 255, 0.1);
  box-shadow: 0 0 24px rgba(22, 136, 255, 0.12);
  color: #b9d9ff;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.hero-title {
  display: grid;
  gap: 1px;
  margin: 0;
  color: var(--color-text);
  font-size: clamp(1.95rem, 2.55vw, 3rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-title span {
  display: block;
}

.hero-title-accent {
  color: var(--color-accent);
  text-shadow: 0 0 28px rgba(22, 136, 255, 0.36);
}

.hero-description {
  max-width: 520px;
  margin: 17px 0 0;
  color: #afbdd1;
  font-size: clamp(0.92rem, 0.92vw, 1rem);
  font-weight: 500;
  line-height: 1.7;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, max-content));
  gap: 8px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.hero-features li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 31px;
  padding: 0 10px;
  border: 1px solid rgba(22, 136, 255, 0.2);
  border-radius: 8px;
  background: rgba(8, 17, 33, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
  color: #dbe6f5;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.hero-features li:hover {
  border-color: rgba(22, 136, 255, 0.38);
  background: rgba(22, 136, 255, 0.08);
  transform: translateY(-1px);
}

.hero-features span {
  display: inline-grid;
  place-items: center;
  width: 17px;
  height: 17px;
  border-radius: 999px;
  background: rgba(22, 136, 255, 0.16);
  color: #71bbff;
  font-size: 0.72rem;
  font-weight: 900;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 22px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 43px;
  padding: 0 16px;
  border-radius: 7px;
  font-size: 0.86rem;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background-color 180ms ease;
}

.hero-btn-primary {
  border: 1px solid var(--color-border-strong);
  background: linear-gradient(135deg, #0d73dd, var(--color-accent));
  box-shadow: 0 0 30px rgba(22, 136, 255, 0.28);
  color: #ffffff;
}

.hero-btn-secondary {
  border: 1px solid rgba(22, 136, 255, 0.42);
  background: rgba(7, 15, 30, 0.56);
  color: #dcecff;
}

.hero-btn:hover,
.hero-btn:focus-visible {
  transform: translateY(-2px);
}

.hero-btn-primary:hover,
.hero-btn-primary:focus-visible {
  border-color: rgba(255, 255, 255, 0.48);
  box-shadow: 0 0 40px rgba(22, 136, 255, 0.4);
}

.hero-btn-secondary:hover,
.hero-btn-secondary:focus-visible {
  border-color: rgba(22, 136, 255, 0.72);
  background: rgba(22, 136, 255, 0.12);
  box-shadow: 0 0 26px rgba(22, 136, 255, 0.18);
}

.hero-visual {
  position: relative;
  z-index: 1;
  min-height: 500px;
  align-self: stretch;
  overflow: hidden;
  border-radius: 0;
}

.hero-visual::before {
  position: absolute;
  inset: 6% -5% 5% 28%;
  background:
    radial-gradient(circle at 55% 48%, rgba(22, 136, 255, 0.2), transparent 52%),
    radial-gradient(circle at 76% 48%, rgba(195, 47, 255, 0.12), transparent 44%);
  filter: blur(24px);
  content: "";
}

.hero-visual::after {
  position: absolute;
  inset: -1px;
  background:
    linear-gradient(90deg, #030715 0%, rgba(3, 7, 21, 0.7) 10%, rgba(3, 7, 21, 0.2) 24%, transparent 45%),
    linear-gradient(180deg, #030715 0%, rgba(3, 7, 21, 0.48) 9%, transparent 28%, transparent 72%, rgba(3, 7, 21, 0.62) 91%, #030715 100%);
  content: "";
  pointer-events: none;
}

.hero-visual img {
  position: absolute;
  top: 51%;
  right: -11%;
  width: min(55vw, 790px);
  max-width: none;
  height: auto;
  transform: translateY(-50%);
  object-fit: contain;
  object-position: 68% center;
  filter: saturate(1.04) contrast(1.02);
  mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.7) 8%, #000 20%, #000 86%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 14%, #000 86%, transparent 100%);
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.7) 8%, #000 20%, #000 86%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 14%, #000 86%, transparent 100%);
  mask-composite: intersect;
  -webkit-mask-composite: source-in;
}

.web-basics-intro-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 44%, rgba(22, 136, 255, 0.12), transparent 28%),
    radial-gradient(circle at 60% 58%, rgba(151, 35, 201, 0.09), transparent 30%),
    linear-gradient(135deg, #030715 0%, #050a17 44%, #040816 100%);
}

.web-basics-intro-section::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(3, 7, 21, 0.86) 0%, rgba(3, 7, 21, 0.28) 18%, transparent 46%, rgba(3, 7, 21, 0.18) 72%, rgba(3, 7, 21, 0.54) 100%),
    radial-gradient(circle at 50% 48%, rgba(22, 136, 255, 0.08), transparent 22%);
  content: "";
}

.web-basics-intro-section::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: 0;
  height: 76px;
  background: linear-gradient(180deg, transparent 0%, rgba(3, 7, 21, 0.46) 62%, #030715 100%);
  content: "";
  pointer-events: none;
}

.web-basics-intro-container {
  position: relative;
  z-index: 1;
  width: min(100% - 48px, 980px);
  margin: 0 auto;
  padding: 44px 0 34px;
}

.web-basics-intro-content {
  display: grid;
  justify-items: center;
  text-align: center;
}

.web-basics-intro-title {
  max-width: 760px;
  margin: 0;
  color: var(--color-text);
  font-size: clamp(1.8rem, 2.35vw, 2.75rem);
  font-weight: 900;
  line-height: 1.16;
  letter-spacing: 0;
}

.web-basics-intro-text {
  max-width: 820px;
  margin: 18px 0 0;
  color: #afbdd1;
  font-size: clamp(1.05rem, 1.4vw, 1.35rem);
  font-weight: 500;
  line-height: 1.7;
}

.foundation-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 34%, rgba(22, 136, 255, 0.11), transparent 32%),
    radial-gradient(circle at 88% 58%, rgba(151, 35, 201, 0.1), transparent 28%),
    linear-gradient(135deg, #030715 0%, #050a17 44%, #040816 100%);
}

.foundation-section::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, #030715 0%, rgba(3, 7, 21, 0.62) 9%, rgba(3, 7, 21, 0.22) 22%, transparent 45%),
    radial-gradient(circle at 18% 28%, rgba(22, 136, 255, 0.07), transparent 24%);
  content: "";
}

.foundation-container {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1fr);
  align-items: center;
  gap: 54px;
  width: min(100% - 48px, var(--max-width));
  margin: 0 auto;
  padding: 72px 0 78px;
}

.foundation-content {
  max-width: 620px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  min-height: 29px;
  padding: 0 10px;
  margin: 0 0 13px;
  border: 1px solid rgba(22, 136, 255, 0.34);
  border-radius: 999px;
  background: rgba(22, 136, 255, 0.1);
  box-shadow: 0 0 24px rgba(22, 136, 255, 0.1);
  color: #b9d9ff;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.foundation-title {
  display: grid;
  gap: 3px;
  margin: 0;
  color: var(--color-text);
  font-size: clamp(1.75rem, 2.25vw, 2.65rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0;
}

.foundation-title > span {
  display: block;
}

.text-accent {
  color: var(--color-accent);
  text-shadow: 0 0 22px rgba(22, 136, 255, 0.28);
}

.foundation-intro {
  max-width: 570px;
  margin: 15px 0 0;
  color: #afbdd1;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.68;
}

.foundation-items {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.foundation-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  padding: 13px;
  border: 1px solid rgba(22, 136, 255, 0.18);
  border-radius: 8px;
  background: rgba(8, 17, 33, 0.54);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.foundation-item:hover {
  border-color: rgba(22, 136, 255, 0.36);
  background: rgba(22, 136, 255, 0.07);
  transform: translateY(-2px);
}

.foundation-item-website {
  border-color: rgba(48, 211, 129, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035), 0 0 26px rgba(48, 211, 129, 0.045);
}

.foundation-item-website:hover {
  border-color: rgba(48, 211, 129, 0.46);
  background: rgba(48, 211, 129, 0.065);
}

.foundation-number {
  display: inline-grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border: 1px solid rgba(22, 136, 255, 0.28);
  border-radius: 8px;
  background: rgba(22, 136, 255, 0.12);
  color: #8ccaff;
  font-size: 0.72rem;
  font-weight: 900;
}

.foundation-item-website .foundation-number {
  border-color: rgba(48, 211, 129, 0.36);
  background: rgba(48, 211, 129, 0.12);
  color: #8ff0b4;
}

.foundation-item-info {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
}

.foundation-item h3 {
  margin: 0;
  color: #f4f8ff;
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1.35;
}

.foundation-item p {
  margin: 6px 0 0;
  color: #aebbd0;
  font-size: 0.82rem;
  line-height: 1.62;
}

.foundation-badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  margin-top: 9px;
  border: 1px solid rgba(22, 136, 255, 0.3);
  border-radius: 6px;
  background: rgba(22, 136, 255, 0.11);
  color: #b9d9ff;
  font-size: 0.74rem;
  font-weight: 850;
  line-height: 1.25;
}

.foundation-badge-green {
  border-color: rgba(48, 211, 129, 0.34);
  background: rgba(48, 211, 129, 0.11);
  color: #a8f3c4;
}

.domain-example {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 9px;
  margin-top: 8px;
  border: 1px solid rgba(22, 136, 255, 0.24);
  border-radius: 6px;
  background: rgba(3, 7, 21, 0.48);
  color: #b9d9ff;
  font-size: 0.8rem;
  font-weight: 800;
}

.foundation-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  margin-top: 10px;
  border: 1px solid rgba(22, 136, 255, 0.34);
  border-radius: 6px;
  background: rgba(22, 136, 255, 0.12);
  color: #eef7ff;
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1;
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.foundation-link:hover,
.foundation-link:focus-visible {
  border-color: rgba(22, 136, 255, 0.58);
  background: rgba(22, 136, 255, 0.2);
  transform: translateY(-1px);
}

.foundation-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.foundation-visual::before {
  position: absolute;
  inset: 0 -10% -4% 8%;
  background:
    radial-gradient(circle at 52% 36%, rgba(22, 136, 255, 0.22), transparent 46%),
    radial-gradient(circle at 76% 58%, rgba(195, 47, 255, 0.13), transparent 42%);
  filter: blur(24px);
  content: "";
}

.foundation-visual-shell {
  position: relative;
  flex: 0 0 118%;
  overflow: hidden;
  width: 118%;
  aspect-ratio: 3 / 2;
  mask-image:
    radial-gradient(ellipse at center, #000 0 57%, rgba(0, 0, 0, 0.95) 68%, rgba(0, 0, 0, 0.55) 84%, transparent 100%),
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.28) 9%, rgba(0, 0, 0, 0.82) 21%, #000 34%, #000 86%, transparent 100%);
  -webkit-mask-image:
    radial-gradient(ellipse at center, #000 0 57%, rgba(0, 0, 0, 0.95) 68%, rgba(0, 0, 0, 0.55) 84%, transparent 100%),
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.28) 9%, rgba(0, 0, 0, 0.82) 21%, #000 34%, #000 86%, transparent 100%);
  mask-composite: intersect;
  -webkit-mask-composite: source-in;
}

.foundation-visual-shell::after {
  position: absolute;
  inset: -1px;
  z-index: 4;
  background:
    radial-gradient(ellipse at center, transparent 0 55%, rgba(3, 7, 21, 0.12) 70%, rgba(3, 7, 21, 0.58) 88%, #030715 100%),
    linear-gradient(90deg, #030715 0%, rgba(3, 7, 21, 0.68) 7%, rgba(3, 7, 21, 0.16) 22%, transparent 46%, rgba(3, 7, 21, 0.16) 91%, #030715 100%),
    linear-gradient(180deg, #030715 0%, rgba(3, 7, 21, 0.82) 8%, rgba(3, 7, 21, 0.36) 21%, transparent 38%, transparent 73%, rgba(3, 7, 21, 0.48) 91%, #030715 100%);
  content: "";
  pointer-events: none;
}

.second-bg {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: saturate(1.04) contrast(1.02);
  mask-image:
    radial-gradient(ellipse at center, #000 0 58%, rgba(0, 0, 0, 0.94) 68%, rgba(0, 0, 0, 0.58) 83%, transparent 100%),
    linear-gradient(90deg, transparent 0%, #000 13%, #000 88%, transparent 100%),
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.22) 8%, rgba(0, 0, 0, 0.78) 20%, #000 32%, #000 86%, transparent 100%);
  -webkit-mask-image:
    radial-gradient(ellipse at center, #000 0 58%, rgba(0, 0, 0, 0.94) 68%, rgba(0, 0, 0, 0.58) 83%, transparent 100%),
    linear-gradient(90deg, transparent 0%, #000 13%, #000 88%, transparent 100%),
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.22) 8%, rgba(0, 0, 0, 0.78) 20%, #000 32%, #000 86%, transparent 100%);
  mask-composite: intersect;
  -webkit-mask-composite: source-in;
}

.earth-image {
  position: absolute;
  z-index: 3;
  left: 30.1%;
  top: 5.1%;
  width: 42.8%;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(22, 136, 255, 0.18));
  mix-blend-mode: screen;
  mask-image: radial-gradient(circle, #000 0 68%, rgba(0, 0, 0, 0.82) 74%, transparent 79%);
  -webkit-mask-image: radial-gradient(circle, #000 0 68%, rgba(0, 0, 0, 0.82) 74%, transparent 79%);
  pointer-events: none;
}

.website-benefits-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 26%, rgba(22, 136, 255, 0.09), transparent 28%),
    radial-gradient(circle at 82% 42%, rgba(151, 35, 201, 0.1), transparent 30%),
    linear-gradient(135deg, #030715 0%, #050a17 44%, #040816 100%);
}

.website-benefits-section::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, #030715 0%, rgba(3, 7, 21, 0.5) 12%, transparent 34%, rgba(3, 7, 21, 0.34) 100%),
    radial-gradient(circle at 50% 14%, rgba(22, 136, 255, 0.055), transparent 22%);
  content: "";
}

.website-benefits-container {
  width: min(100% - 48px, var(--max-width));
  margin: 0 auto;
  padding: 76px 0 84px;
}

.website-benefits-header {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.website-benefits-title {
  margin: 0;
  color: var(--color-text);
  font-size: clamp(1.75rem, 2.25vw, 2.65rem);
  font-weight: 900;
  line-height: 1.16;
  letter-spacing: 0;
}

.website-benefits-intro {
  max-width: 820px;
  margin: 17px auto 0;
  color: #afbdd1;
  font-size: 0.96rem;
  font-weight: 500;
  line-height: 1.74;
}

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

.benefit-card {
  position: relative;
  display: flex;
  min-height: 285px;
  flex-direction: column;
  align-items: flex-start;
  padding: 22px 18px 20px;
  border: 1px solid rgba(22, 136, 255, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(13, 28, 52, 0.68), rgba(6, 13, 26, 0.62)),
    rgba(8, 17, 33, 0.5);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 18px 42px rgba(0, 0, 0, 0.24);
  opacity: 0;
  transform: translateY(18px);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease, background-color 220ms ease;
}

.benefit-card::before {
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 0%, rgba(22, 136, 255, 0.18), transparent 46%);
  opacity: 0.7;
  content: "";
  transition: opacity 220ms ease;
}

.benefit-card::after {
  position: absolute;
  top: 50%;
  right: -22px;
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, rgba(22, 136, 255, 0.42), transparent);
  box-shadow: 0 0 12px rgba(22, 136, 255, 0.22);
  content: "";
  pointer-events: none;
}

.benefit-card:last-child::after {
  display: none;
}

.benefit-card-featured {
  border-color: rgba(22, 136, 255, 0.38);
  background:
    linear-gradient(180deg, rgba(18, 48, 82, 0.76), rgba(7, 15, 30, 0.68)),
    rgba(8, 17, 33, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055), 0 0 34px rgba(22, 136, 255, 0.1), 0 20px 48px rgba(0, 0, 0, 0.28);
}

.benefit-card:hover {
  border-color: rgba(22, 136, 255, 0.46);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055), 0 0 32px rgba(22, 136, 255, 0.12), 0 22px 46px rgba(0, 0, 0, 0.28);
  transform: translateY(-4px);
}

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-card h3 {
  margin: 18px 0 0;
  color: #f4f8ff;
  font-size: 1rem;
  font-weight: 850;
  line-height: 1.36;
}

.benefit-card p {
  margin: 10px 0 0;
  color: #aebbd0;
  font-size: 0.88rem;
  line-height: 1.66;
}

.benefit-icon {
  position: relative;
  width: 60px;
  height: 60px;
  border: 1px solid rgba(22, 136, 255, 0.28);
  border-radius: 14px;
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 255, 255, 0.16), transparent 24%),
    linear-gradient(145deg, rgba(22, 136, 255, 0.22), rgba(91, 63, 255, 0.11));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 0 26px rgba(22, 136, 255, 0.14);
  transform: translateZ(0);
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.benefit-card:hover .benefit-icon {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 0 34px rgba(22, 136, 255, 0.26);
  transform: translateY(-3px);
}

.benefit-icon span {
  position: absolute;
  display: block;
}

.cart-basket {
  left: 15px;
  top: 22px;
  width: 29px;
  height: 17px;
  border: 2px solid #7ac3ff;
  border-top: 0;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 0 10px rgba(22, 136, 255, 0.3);
}

.cart-handle {
  left: 12px;
  top: 16px;
  width: 31px;
  height: 16px;
  border-top: 2px solid #d9efff;
  border-left: 2px solid #d9efff;
  transform: skewX(-16deg);
}

.cart-wheel {
  bottom: 15px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #bde5ff;
  box-shadow: 0 0 8px rgba(22, 136, 255, 0.5);
}

.cart-wheel-left {
  left: 19px;
}

.cart-wheel-right {
  right: 17px;
}

.search-lens {
  left: 14px;
  top: 13px;
  width: 28px;
  height: 28px;
  border: 2px solid #8fd0ff;
  border-radius: 50%;
  box-shadow: inset 0 0 12px rgba(22, 136, 255, 0.2), 0 0 12px rgba(22, 136, 255, 0.22);
}

.search-handle {
  right: 13px;
  bottom: 14px;
  width: 17px;
  height: 2px;
  border-radius: 999px;
  background: #d9efff;
  transform: rotate(45deg);
}

.search-dot {
  left: 25px;
  top: 24px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1688ff;
  box-shadow: 0 0 12px rgba(22, 136, 255, 0.75);
}

.clock-globe {
  inset: 13px;
  border: 2px solid #8fd0ff;
  border-radius: 50%;
  box-shadow: inset 0 0 14px rgba(22, 136, 255, 0.22), 0 0 12px rgba(22, 136, 255, 0.22);
}

.clock-globe::before,
.clock-globe::after {
  position: absolute;
  content: "";
}

.clock-globe::before {
  top: 50%;
  right: 4px;
  left: 4px;
  height: 1px;
  background: rgba(143, 208, 255, 0.8);
}

.clock-globe::after {
  top: 4px;
  bottom: 4px;
  left: 50%;
  width: 1px;
  background: rgba(143, 208, 255, 0.8);
}

.clock-ring {
  right: 9px;
  bottom: 10px;
  width: 18px;
  height: 18px;
  border: 2px solid #d9efff;
  border-radius: 50%;
  background: rgba(3, 7, 21, 0.64);
}

.clock-hand {
  right: 17px;
  bottom: 18px;
  width: 7px;
  height: 2px;
  border-radius: 999px;
  background: #1688ff;
  transform-origin: left center;
  transform: rotate(-40deg);
  box-shadow: 0 0 10px rgba(22, 136, 255, 0.6);
}

.shield-body {
  left: 16px;
  top: 12px;
  width: 29px;
  height: 36px;
  border: 2px solid #8fd0ff;
  border-radius: 14px 14px 18px 18px;
  background: linear-gradient(145deg, rgba(22, 136, 255, 0.2), rgba(151, 35, 201, 0.08));
  clip-path: polygon(50% 0, 88% 12%, 84% 66%, 50% 100%, 16% 66%, 12% 12%);
  box-shadow: inset 0 0 14px rgba(22, 136, 255, 0.22), 0 0 12px rgba(22, 136, 255, 0.22);
}

.shield-check {
  left: 24px;
  top: 29px;
  width: 15px;
  height: 8px;
  border-bottom: 2px solid #d9efff;
  border-left: 2px solid #d9efff;
  transform: rotate(-45deg);
}

.portfolio-showcase-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 24%, rgba(22, 136, 255, 0.1), transparent 30%),
    radial-gradient(circle at 78% 28%, rgba(151, 35, 201, 0.1), transparent 30%),
    linear-gradient(135deg, #030715 0%, #050a17 44%, #040816 100%);
}

.portfolio-showcase-section::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, #030715 0%, rgba(3, 7, 21, 0.48) 12%, transparent 38%, rgba(3, 7, 21, 0.34) 100%),
    radial-gradient(circle at 50% 36%, rgba(22, 136, 255, 0.07), transparent 28%);
  content: "";
}

.portfolio-showcase-container {
  width: min(100% - 48px, var(--max-width));
  margin: 0 auto;
  padding: 82px 0 90px;
}

.portfolio-showcase-header {
  max-width: 920px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(16px);
  text-align: center;
}

.portfolio-showcase-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  margin: 0 0 15px;
  border: 1px solid rgba(22, 136, 255, 0.34);
  border-radius: 999px;
  background: rgba(22, 136, 255, 0.1);
  box-shadow: 0 0 24px rgba(22, 136, 255, 0.1);
  color: #b9d9ff;
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1;
}

.portfolio-showcase-title {
  display: grid;
  gap: 4px;
  margin: 0;
  color: var(--color-text);
  font-size: clamp(1.75rem, 2.25vw, 2.65rem);
  font-weight: 900;
  line-height: 1.16;
  letter-spacing: 0;
}

.portfolio-showcase-accent {
  color: var(--color-accent);
  text-shadow: 0 0 22px rgba(22, 136, 255, 0.28);
}

.portfolio-showcase-intro {
  max-width: 840px;
  margin: 18px auto 0;
  color: #afbdd1;
  font-size: 0.96rem;
  font-weight: 500;
  line-height: 1.74;
}

.portfolio-carousel {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  margin-top: 48px;
  opacity: 0;
  transform: translateY(22px);
}

.portfolio-stage {
  position: relative;
  height: clamp(310px, 29vw, 430px);
  overflow: hidden;
  perspective: 1200px;
}

.portfolio-stage::before {
  position: absolute;
  right: 8%;
  bottom: 14px;
  left: 8%;
  height: 54px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(22, 136, 255, 0.2), transparent 68%);
  filter: blur(14px);
  content: "";
}

.portfolio-slide {
  position: absolute;
  top: 4%;
  left: 50%;
  width: min(64vw, 760px);
  max-width: 760px;
  padding: 10px;
  border: 1px solid rgba(22, 136, 255, 0.22);
  border-radius: 10px;
  background: rgba(8, 17, 33, 0.64);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.38), 0 0 34px rgba(22, 136, 255, 0.08);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) scale(0.76);
  transition: transform 700ms ease, opacity 700ms ease, filter 700ms ease, z-index 700ms ease;
}

.portfolio-slide img {
  display: block;
  width: 100%;
  height: clamp(250px, 25vw, 390px);
  border-radius: 8px;
  object-fit: contain;
  background: rgba(3, 7, 21, 0.55);
  box-shadow: 0 0 22px rgba(22, 136, 255, 0.1);
}

.portfolio-slide.is-active {
  z-index: 5;
  opacity: 1;
  pointer-events: auto;
  filter: none;
  transform: translateX(-50%) scale(1);
}

.portfolio-slide.is-prev {
  z-index: 3;
  opacity: 0.58;
  filter: saturate(0.86) brightness(0.76);
  transform: translateX(-106%) scale(0.72) rotateY(24deg);
}

.portfolio-slide.is-next {
  z-index: 3;
  opacity: 0.58;
  filter: saturate(0.86) brightness(0.76);
  transform: translateX(6%) scale(0.72) rotateY(-24deg);
}

.portfolio-slide.is-far-prev {
  z-index: 2;
  opacity: 0.18;
  filter: saturate(0.72) brightness(0.55);
  transform: translateX(-146%) scale(0.58) rotateY(36deg);
}

.portfolio-slide.is-far-next {
  z-index: 2;
  opacity: 0.18;
  filter: saturate(0.72) brightness(0.55);
  transform: translateX(46%) scale(0.58) rotateY(-36deg);
}

.portfolio-slide.is-hidden {
  opacity: 0;
  transform: translateX(-50%) scale(0.5);
}

.portfolio-control {
  position: relative;
  z-index: 8;
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(22, 136, 255, 0.34);
  border-radius: 50%;
  background: rgba(7, 15, 30, 0.72);
  box-shadow: 0 0 22px rgba(22, 136, 255, 0.14);
  color: #dcecff;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.portfolio-control:hover,
.portfolio-control:focus-visible {
  border-color: rgba(22, 136, 255, 0.62);
  background: rgba(22, 136, 255, 0.14);
  transform: translateY(-1px);
}

.portfolio-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}

.portfolio-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 1px solid rgba(22, 136, 255, 0.34);
  border-radius: 50%;
  background: rgba(22, 136, 255, 0.08);
  cursor: pointer;
  transition: width 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.portfolio-dot.is-active {
  width: 28px;
  border-radius: 999px;
  border-color: rgba(22, 136, 255, 0.72);
  background: var(--color-accent);
  box-shadow: 0 0 16px rgba(22, 136, 255, 0.34);
}

.portfolio-showcase-action {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  opacity: 0;
  transform: translateY(16px);
}

.portfolio-more-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(22, 136, 255, 0.42);
  border-radius: 7px;
  background: rgba(7, 15, 30, 0.64);
  color: #dcecff;
  font-size: 0.9rem;
  font-weight: 850;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background-color 180ms ease;
}

.portfolio-more-link:hover,
.portfolio-more-link:focus-visible {
  border-color: rgba(22, 136, 255, 0.72);
  background: rgba(22, 136, 255, 0.12);
  box-shadow: 0 0 26px rgba(22, 136, 255, 0.18);
  transform: translateY(-2px);
}

.pricing-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 22% 28%, rgba(22, 136, 255, 0.1), transparent 32%),
    radial-gradient(circle at 78% 38%, rgba(151, 35, 201, 0.1), transparent 30%),
    linear-gradient(135deg, #030715 0%, #050a17 44%, #040816 100%);
}

.pricing-section::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, #030715 0%, rgba(3, 7, 21, 0.48) 12%, transparent 38%, rgba(3, 7, 21, 0.34) 100%),
    radial-gradient(circle at 50% 18%, rgba(22, 136, 255, 0.055), transparent 24%);
  content: "";
}

.pricing-container {
  width: min(100% - 48px, var(--max-width));
  margin: 0 auto;
  padding: 82px 0 92px;
}

.pricing-header {
  max-width: 880px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(16px);
  text-align: center;
}

.pricing-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  margin: 0 0 15px;
  border: 1px solid rgba(22, 136, 255, 0.34);
  border-radius: 999px;
  background: rgba(22, 136, 255, 0.1);
  box-shadow: 0 0 24px rgba(22, 136, 255, 0.1);
  color: #b9d9ff;
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1;
}

.pricing-title {
  display: grid;
  gap: 4px;
  margin: 0;
  color: var(--color-text);
  font-size: clamp(1.75rem, 2.25vw, 2.65rem);
  font-weight: 900;
  line-height: 1.16;
  letter-spacing: 0;
}

.pricing-title-accent {
  color: var(--color-accent);
  text-shadow: 0 0 22px rgba(22, 136, 255, 0.28);
}

.pricing-intro {
  max-width: 780px;
  margin: 18px auto 0;
  color: #afbdd1;
  font-size: 0.96rem;
  font-weight: 500;
  line-height: 1.74;
}

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

.pricing-card {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 24px 20px 22px;
  border: 1px solid rgba(22, 136, 255, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(13, 28, 52, 0.7), rgba(6, 13, 26, 0.64)),
    rgba(8, 17, 33, 0.56);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045), 0 18px 44px rgba(0, 0, 0, 0.28);
  opacity: 0;
  transform: translateY(18px);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease, background-color 220ms ease;
}

.pricing-card::before {
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 0%, rgba(22, 136, 255, 0.16), transparent 46%);
  opacity: 0.72;
  content: "";
  transition: opacity 220ms ease;
}

.pricing-card:hover {
  border-color: rgba(22, 136, 255, 0.48);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 0 32px rgba(22, 136, 255, 0.12), 0 22px 48px rgba(0, 0, 0, 0.3);
  transform: translateY(-4px);
}

.pricing-card:hover::before {
  opacity: 1;
}

.pricing-card-featured {
  border-color: rgba(22, 136, 255, 0.48);
  background:
    linear-gradient(180deg, rgba(18, 48, 82, 0.82), rgba(7, 15, 30, 0.7)),
    rgba(8, 17, 33, 0.64);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.065), 0 0 42px rgba(22, 136, 255, 0.14), 0 22px 54px rgba(0, 0, 0, 0.32);
  transform: translateY(6px);
}

.pricing-card-ecommerce {
  border-color: rgba(48, 211, 129, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045), 0 0 30px rgba(48, 211, 129, 0.055), 0 18px 44px rgba(0, 0, 0, 0.28);
}

.pricing-card-ecommerce::before {
  background: radial-gradient(circle at 50% 0%, rgba(48, 211, 129, 0.13), transparent 45%);
}

.pricing-card-ecommerce:hover {
  border-color: rgba(48, 211, 129, 0.46);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055), 0 0 34px rgba(48, 211, 129, 0.1), 0 22px 48px rgba(0, 0, 0, 0.3);
}

.pricing-popular {
  align-self: flex-start;
  min-height: 27px;
  padding: 7px 10px 0;
  margin-bottom: 13px;
  border: 1px solid rgba(22, 136, 255, 0.46);
  border-radius: 999px;
  background: rgba(22, 136, 255, 0.16);
  box-shadow: 0 0 20px rgba(22, 136, 255, 0.18);
  color: #d9efff;
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.04em;
}

.pricing-card-top h3 {
  margin: 0;
  color: #f4f8ff;
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1.1;
}

.pricing-price {
  margin: 12px 0 0;
  color: var(--color-accent);
  font-size: clamp(1.85rem, 2.5vw, 2.55rem);
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 0 22px rgba(22, 136, 255, 0.28);
}

.pricing-card-ecommerce .pricing-price {
  color: #8ff0b4;
  text-shadow: 0 0 22px rgba(48, 211, 129, 0.22);
}

.pricing-cost-label {
  margin: 8px 0 0;
  color: #8ccaff;
  font-size: 0.76rem;
  font-weight: 850;
  line-height: 1.3;
}

.pricing-message {
  margin: 14px 0 0;
  color: #e4ecf8;
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.48;
}

.pricing-message-strong {
  display: grid;
  gap: 3px;
  color: #f4f8ff;
}

.pricing-supporting-text {
  margin: 12px 0 0;
  color: #afbdd1;
  font-size: 0.85rem;
  line-height: 1.64;
}

.pricing-features {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.pricing-features li {
  position: relative;
  padding-left: 22px;
  color: #aebbd0;
  font-size: 0.84rem;
  line-height: 1.45;
}

.pricing-features li::before {
  position: absolute;
  top: 0.18em;
  left: 0;
  display: inline-grid;
  place-items: center;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(22, 136, 255, 0.13);
  color: #8ccaff;
  font-size: 0.62rem;
  font-weight: 900;
  content: "✓";
}

.pricing-card-ecommerce .pricing-features li::before {
  background: rgba(48, 211, 129, 0.13);
  color: #8ff0b4;
}

.pricing-note {
  padding: 12px;
  margin-top: 18px;
  border: 1px solid rgba(22, 136, 255, 0.24);
  border-radius: 8px;
  background: rgba(3, 7, 21, 0.46);
  color: #b9d9ff;
}

.pricing-note strong {
  display: block;
  color: #dcecff;
  font-size: 0.84rem;
  line-height: 1.5;
}

.pricing-note p {
  margin: 8px 0 0;
  color: #aebbd0;
  font-size: 0.8rem;
  line-height: 1.58;
}

.pricing-limit-note {
  border-color: rgba(22, 136, 255, 0.32);
  background: rgba(22, 136, 255, 0.08);
}

.pricing-gateway-note {
  border-color: rgba(48, 211, 129, 0.28);
  background: rgba(48, 211, 129, 0.075);
}

.pricing-small-note {
  margin: 12px 0 0;
  color: #9faaae;
  font-size: 0.78rem;
  line-height: 1.58;
}

.pricing-upgrade {
  padding: 10px 11px;
  margin: 12px 0 0;
  border: 1px solid rgba(151, 35, 201, 0.24);
  border-radius: 7px;
  background: rgba(151, 35, 201, 0.075);
  color: #d7c3ff;
  font-size: 0.8rem;
  font-weight: 850;
  line-height: 1.45;
}

.pricing-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  margin-top: auto;
  border: 1px solid var(--color-border-strong);
  border-radius: 7px;
  background: rgba(22, 136, 255, 0.12);
  color: #eef7ff;
  font-size: 0.88rem;
  font-weight: 900;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background-color 180ms ease;
}

.pricing-upgrade + .pricing-cta,
.pricing-note + .pricing-cta {
  margin-top: 18px;
}

.pricing-cta-featured {
  background: linear-gradient(135deg, #0d73dd, var(--color-accent));
  box-shadow: 0 0 30px rgba(22, 136, 255, 0.24);
  color: #ffffff;
}

.pricing-cta-ecommerce {
  border-color: rgba(48, 211, 129, 0.42);
  background: rgba(48, 211, 129, 0.13);
}

.pricing-cta:hover,
.pricing-cta:focus-visible {
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 28px rgba(22, 136, 255, 0.2);
  transform: translateY(-2px);
}

.pricing-cta-ecommerce:hover,
.pricing-cta-ecommerce:focus-visible {
  box-shadow: 0 0 28px rgba(48, 211, 129, 0.16);
}

.pricing-compare-action {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.pricing-compare-link {
  color: #b9d9ff;
  font-size: 0.9rem;
  font-weight: 850;
  transition: color 180ms ease, text-shadow 180ms ease;
}

.pricing-compare-link:hover,
.pricing-compare-link:focus-visible {
  color: #ffffff;
  text-shadow: 0 0 18px rgba(22, 136, 255, 0.34);
}

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

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

.inquiry-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(1, 4, 12, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.inquiry-dialog {
  position: relative;
  width: min(100%, 860px);
  max-height: min(90vh, 920px);
  overflow: auto;
  border: 1px solid rgba(22, 136, 255, 0.28);
  border-radius: 10px;
  background:
    radial-gradient(circle at 78% 4%, rgba(151, 35, 201, 0.12), transparent 30%),
    radial-gradient(circle at 18% 0%, rgba(22, 136, 255, 0.16), transparent 32%),
    linear-gradient(145deg, rgba(8, 17, 33, 0.98), rgba(3, 7, 21, 0.98));
  box-shadow: 0 0 48px rgba(22, 136, 255, 0.14), 0 32px 90px rgba(0, 0, 0, 0.52);
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  transition: opacity 220ms ease, transform 220ms ease;
}

.inquiry-modal.is-open .inquiry-dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.inquiry-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid rgba(22, 136, 255, 0.28);
  border-radius: 50%;
  background: rgba(3, 7, 21, 0.62);
  color: #dcecff;
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.inquiry-close:hover,
.inquiry-close:focus-visible {
  border-color: rgba(22, 136, 255, 0.58);
  background: rgba(22, 136, 255, 0.14);
  transform: translateY(-1px);
}

.inquiry-content {
  padding: 34px;
}

.inquiry-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  margin: 0 0 14px;
  border: 1px solid rgba(22, 136, 255, 0.34);
  border-radius: 999px;
  background: rgba(22, 136, 255, 0.1);
  color: #b9d9ff;
  font-size: 0.72rem;
  font-weight: 850;
}

.inquiry-title,
.inquiry-success-panel h2 {
  max-width: 700px;
  margin: 0;
  color: var(--color-text);
  font-size: clamp(1.25rem, 1.85vw, 1.8rem);
  font-weight: 900;
  line-height: 1.18;
}

.inquiry-description,
.inquiry-success-panel p {
  max-width: 680px;
  margin: 14px 0 0;
  color: #afbdd1;
  font-size: 0.95rem;
  line-height: 1.7;
}

.package-inquiry-form {
  margin-top: 24px;
}

.inquiry-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.selected-package-card {
  padding: 14px;
  border: 1px solid rgba(22, 136, 255, 0.34);
  border-radius: 8px;
  background:
    radial-gradient(circle at 12% 10%, rgba(22, 136, 255, 0.16), transparent 38%),
    rgba(22, 136, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 0 26px rgba(22, 136, 255, 0.08);
}

.selected-package-card label {
  display: block;
  color: #8ccaff;
  font-size: 0.76rem;
  font-weight: 850;
  line-height: 1;
}

.selected-package-card input {
  width: 100%;
  margin-top: 8px;
  border: 0;
  background: transparent;
  color: #f4f8ff;
  font-size: 1.08rem;
  font-weight: 900;
  outline: 0;
}

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

.inquiry-field {
  display: grid;
  gap: 8px;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.inquiry-field span,
.inquiry-field label,
.inquiry-radio-group legend {
  color: #dcecff;
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.35;
}

.inquiry-field input,
.inquiry-field select,
.inquiry-field textarea {
  width: 100%;
  border: 1px solid rgba(22, 136, 255, 0.2);
  border-radius: 7px;
  background: rgba(3, 7, 21, 0.54);
  color: #f4f8ff;
  font: inherit;
  font-size: 0.92rem;
  outline: 0;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.inquiry-field input {
  min-height: 44px;
  padding: 0 12px;
}

.inquiry-field select {
  min-height: 44px;
  padding: 0 12px;
  appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, #8ccaff 50%) right 16px center / 7px 7px no-repeat,
    linear-gradient(135deg, #8ccaff 50%, transparent 50%) right 10px center / 7px 7px no-repeat,
    rgba(3, 7, 21, 0.54);
  cursor: pointer;
}

.inquiry-field select option {
  background: #050a17;
  color: #f4f8ff;
}

.inquiry-field textarea {
  min-height: 96px;
  padding: 12px;
  resize: vertical;
}

.inquiry-field input:focus,
.inquiry-field select:focus,
.inquiry-field textarea:focus {
  border-color: rgba(22, 136, 255, 0.58);
  background: rgba(6, 13, 26, 0.72);
  box-shadow: 0 0 0 3px rgba(22, 136, 255, 0.1);
}

.inquiry-field input:-webkit-autofill,
.inquiry-field input:-webkit-autofill:hover,
.inquiry-field input:-webkit-autofill:focus,
.inquiry-field textarea:-webkit-autofill,
.inquiry-field textarea:-webkit-autofill:hover,
.inquiry-field textarea:-webkit-autofill:focus,
.selected-package-card input:-webkit-autofill,
.selected-package-card input:-webkit-autofill:hover,
.selected-package-card input:-webkit-autofill:focus {
  border-color: rgba(22, 136, 255, 0.32);
  -webkit-box-shadow: 0 0 0 1000px #050a17 inset, 0 0 0 3px rgba(22, 136, 255, 0.1);
  -webkit-text-fill-color: #f4f8ff;
  caret-color: #f4f8ff;
  transition: background-color 9999s ease-out, color 9999s ease-out;
}

.inquiry-field select:focus {
  background:
    linear-gradient(45deg, transparent 50%, #8ccaff 50%) right 16px center / 7px 7px no-repeat,
    linear-gradient(135deg, #8ccaff 50%, transparent 50%) right 10px center / 7px 7px no-repeat,
    rgba(6, 13, 26, 0.72);
}

.inquiry-radio-group label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #afbdd1;
  font-size: 0.82rem;
  font-weight: 700;
}

.inquiry-radio-group input {
  width: 15px;
  height: 15px;
  accent-color: var(--color-accent);
}

.inquiry-radio-group {
  align-content: start;
  grid-template-columns: 1fr;
}

.inquiry-radio-group label {
  margin-right: 12px;
}

.inquiry-field-full {
  grid-column: 1 / -1;
}

.domain-name-field[hidden] {
  display: none;
}

.business-type-other-field[hidden] {
  display: none;
}

.inquiry-error {
  min-height: 22px;
  margin: 14px 0 0;
  color: #ffb8b8;
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.45;
}

.inquiry-submit,
.inquiry-ok {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--color-border-strong);
  border-radius: 7px;
  background: linear-gradient(135deg, #0d73dd, var(--color-accent));
  box-shadow: 0 0 30px rgba(22, 136, 255, 0.22);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 900;
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.inquiry-submit:hover,
.inquiry-submit:focus-visible,
.inquiry-ok:hover,
.inquiry-ok:focus-visible {
  border-color: rgba(255, 255, 255, 0.44);
  box-shadow: 0 0 36px rgba(22, 136, 255, 0.34);
  transform: translateY(-1px);
}

.inquiry-submit:disabled {
  cursor: wait;
  opacity: 0.76;
  transform: none;
}

.inquiry-success-panel {
  display: grid;
  justify-items: center;
  padding: 36px 20px;
  text-align: center;
}

.inquiry-form-panel[hidden],
.inquiry-success-panel[hidden] {
  display: none;
}

.inquiry-success-icon {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  border: 1px solid rgba(48, 211, 129, 0.42);
  border-radius: 50%;
  background: rgba(48, 211, 129, 0.12);
  color: #8ff0b4;
  font-size: 1.45rem;
  font-weight: 900;
  box-shadow: 0 0 28px rgba(48, 211, 129, 0.12);
}

.inquiry-ok {
  margin-top: 24px;
  min-width: 110px;
}

body.inquiry-open {
  overflow: hidden;
}

.simple-page-main {
  min-height: calc(100vh - var(--header-height));
  background:
    radial-gradient(circle at 50% 24%, rgba(22, 136, 255, 0.12), transparent 30%),
    linear-gradient(135deg, #030715 0%, #050a17 48%, #040816 100%);
}

.simple-page-container {
  width: min(100% - 48px, 920px);
  margin: 0 auto;
  padding: 86px 0;
}

.simple-page-kicker {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 11px;
  border: 1px solid rgba(22, 136, 255, 0.28);
  border-radius: 999px;
  background: rgba(22, 136, 255, 0.1);
  color: #b9d9ff;
  font-size: 0.76rem;
  font-weight: 850;
}

.simple-page-title {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--color-text);
  font-size: clamp(2rem, 3.4vw, 3.25rem);
  font-weight: 900;
  line-height: 1.14;
}

.simple-page-text {
  max-width: 680px;
  margin: 18px 0 0;
  color: #afbdd1;
  font-size: clamp(1rem, 1.3vw, 1.16rem);
  line-height: 1.72;
}

.simple-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.simple-page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(22, 136, 255, 0.34);
  border-radius: 6px;
  background: rgba(22, 136, 255, 0.1);
  color: #eef7ff;
  font-size: 0.88rem;
  font-weight: 850;
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.simple-page-link:hover,
.simple-page-link:focus-visible {
  border-color: rgba(22, 136, 255, 0.58);
  background: rgba(22, 136, 255, 0.18);
  transform: translateY(-1px);
}
