:root {
  --navy-950: #030b1d;
  --navy-900: #06142e;
  --navy-850: #081b3a;
  --navy-800: #0b2347;
  --blue-600: #0077ff;
  --blue-500: #0b8cff;
  --cyan-400: #00c2ff;
  --cyan-300: #39d8ff;
  --white: #ffffff;
  --gray-50: #f7faff;
  --gray-100: #eef4fb;
  --gray-200: #dbe7f3;
  --gray-500: #64748b;
  --gray-700: #334155;
  --gray-900: #0f172a;
  --success: #22c55e;
  --warning: #f97316;
  --border: rgba(15, 23, 42, 0.10);
  --shadow-soft: 0 18px 50px rgba(3, 11, 29, 0.10);
  --shadow-card: 0 12px 30px rgba(3, 11, 29, 0.08);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-900);
  background: var(--white);
}

body.menu-open {
  overflow: hidden;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.lucide {
  display: inline-block;
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.lucide-sm {
  width: 17px;
  height: 17px;
  stroke-width: 2.4;
}

.lucide-card-icon {
  width: 38px;
  height: 38px;
  stroke-width: 2.2;
}

.lucide-plan-icon {
  width: 48px;
  height: 48px;
  stroke-width: 2;
}

.lucide-why-icon {
  width: 48px;
  height: 48px;
  stroke-width: 2.25;
}

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

img,
svg {
  max-width: 100%;
}

button,
input {
  font: inherit;
}

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

.section {
  padding: 80px 0;
}

#domain-sorgula {
  padding-top: 54px;
}

#paketler {
  padding-top: 64px;
}

.section-soft {
  background: linear-gradient(180deg, var(--gray-50), var(--white));
}

.section-title {
  max-width: 740px;
  margin: 0 auto 30px;
  text-align: center;
}

.section-title h2 {
  margin: 0 0 10px;
  color: var(--navy-950);
  font-size: clamp(28px, 3.4vw, 36px);
  line-height: 1.15;
  font-weight: 800;
}

.section-title p {
  margin: 0;
  color: var(--gray-500);
  font-weight: 500;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(3, 11, 29, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.2s ease, background 0.2s ease;
}

.site-header.is-scrolled {
  background: rgba(3, 11, 29, 0.98);
  box-shadow: 0 10px 28px rgba(3, 11, 29, 0.22);
}

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

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 20px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-logo {
  display: block;
  width: auto;
  height: 38px;
  max-width: 150px;
  object-fit: contain;
}

.brand-text {
  color: var(--white);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0;
  transform: translateY(3px);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  font-weight: 700;
}

.nav-menu a {
  white-space: nowrap;
  transition: color 0.2s ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--cyan-300);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-sm);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 2px;
  background: currentColor;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--cyan-400), var(--blue-600));
  box-shadow: 0 14px 28px rgba(0, 119, 255, 0.28);
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.06);
}

.btn-outline {
  color: var(--blue-600);
  border-color: var(--blue-600);
  background: var(--white);
}

.btn-outline:hover {
  color: var(--white);
  background: var(--blue-600);
}

.btn-block {
  width: 100%;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 54px;
  color: var(--white);
  background:
    radial-gradient(circle at 76% 44%, rgba(0, 119, 255, 0.22), transparent 34%),
    linear-gradient(135deg, #020a18 0%, #041229 44%, #03142f 78%, #020b1d 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 10, 24, 0.92) 0%, rgba(2, 10, 24, 0.70) 42%, rgba(2, 10, 24, 0.10) 72%, rgba(2, 10, 24, 0.34) 100%),
    radial-gradient(circle at 100% 48%, rgba(2, 10, 24, 0.62), transparent 38%);
  pointer-events: none;
}

.hero::after {
  content: none;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 22%;
  border: 0;
  border-radius: 0;
  background: linear-gradient(90deg, transparent, rgba(2, 10, 24, 0.74));
  filter: none;
  box-shadow: none;
  transform: none;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.93fr 1.07fr;
  align-items: center;
  gap: 26px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  padding: 9px 15px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.08);
  font-size: 14px;
  font-weight: 700;
}

.flag-tr {
  position: relative;
  flex: 0 0 auto;
  width: 18px;
  height: 12px;
  overflow: hidden;
  border-radius: 2px;
  background: #e30a17;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.flag-tr::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 3px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--white);
}

.flag-tr::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 3px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e30a17;
  box-shadow: 5px 0 0 -2px var(--white);
}

.hero h1,
.page-hero h1 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: clamp(40px, 5.1vw, 58px);
  line-height: 1.1;
  font-weight: 800;
}

.hero p {
  max-width: 610px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 19px;
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 32px;
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 26px;
  margin-top: 34px;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 700;
}

.trust-line li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.check-dot {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 50%;
  color: var(--cyan-300);
  font-size: 11px;
}

.hero-mini-icon {
  position: relative;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  color: var(--white);
  stroke-width: 2.35;
}

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

.hero-art {
  position: absolute;
  right: -92px;
  top: -50px;
  width: min(830px, 139%);
  max-width: none;
  height: auto;
  border-radius: 0;
  filter: drop-shadow(0 34px 58px rgba(0, 0, 0, 0.28));
}

.hero-art-bg {
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.68) 12%, #000 28%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.68) 12%, #000 28%, #000 100%);
}

.tech-dot {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan-400);
  box-shadow: 0 0 16px var(--cyan-400);
}

.tech-dot.one { top: 18%; left: 14%; }
.tech-dot.two { top: 7%; right: 24%; }
.tech-dot.three { top: 52%; right: 4%; }
.tech-dot.four { bottom: 18%; left: 8%; }

.server-rack {
  position: absolute;
  left: 54px;
  top: 0;
  width: 232px;
  height: 338px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 26px;
  background: linear-gradient(140deg, #142944, #071424 54%, #102341);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.32);
  transform: perspective(900px) rotateY(-10deg);
}

.server-rack::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 18px;
  background: linear-gradient(90deg, rgba(255,255,255,0.12), transparent 38%);
}

.server-slot {
  position: relative;
  width: 146px;
  height: 32px;
  margin: 22px 0 0 36px;
  border: 1px solid rgba(57, 216, 255, 0.24);
  border-radius: 8px;
  background: #07101d;
  box-shadow: inset 0 0 12px rgba(0, 194, 255, 0.10);
}

.server-slot::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 13px;
  width: 72px;
  height: 7px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.server-slot::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 11px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan-400);
  box-shadow: 0 0 14px var(--cyan-400);
}

.dashboard {
  position: absolute;
  right: 0;
  top: 58px;
  width: min(404px, 84vw);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 34px 70px rgba(0, 0, 0, 0.36), 0 0 0 8px rgba(255, 255, 255, 0.06);
  transform: perspective(900px) rotateY(-4deg) rotateX(1deg);
}

.dashboard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 44px;
  padding: 0 18px;
  color: var(--white);
  background: linear-gradient(90deg, var(--navy-900), var(--navy-800));
  font-weight: 800;
}

.dashboard-top span:first-child {
  color: var(--cyan-300);
}

.dashboard-body {
  display: grid;
  grid-template-columns: 108px 1fr;
  min-height: 252px;
}

.dashboard-side {
  padding: 16px 12px;
  color: rgba(255, 255, 255, 0.74);
  background: var(--navy-850);
  font-size: 11px;
  font-weight: 700;
}

.dashboard-side div {
  margin-bottom: 13px;
}

.dashboard-main {
  padding: 16px;
  color: var(--gray-900);
  background: #f9fbff;
}

.dashboard-main h3 {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.2;
}

.metric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.metric-card,
.quick-card,
.service-list {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 8px 18px rgba(3, 11, 29, 0.06);
}

.metric-card {
  min-height: 96px;
  padding: 11px;
}

.metric-card small {
  display: block;
  color: var(--gray-500);
  font-size: 11px;
  font-weight: 700;
}

.ring {
  width: 54px;
  height: 54px;
  margin: 10px auto 4px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--blue-600);
  background:
    radial-gradient(circle closest-side, #fff 70%, transparent 72%),
    conic-gradient(var(--blue-600) var(--value), var(--gray-200) 0);
  font-size: 14px;
  font-weight: 800;
}

.quick-card {
  margin-top: 10px;
  padding: 11px;
}

.quick-card strong,
.service-list strong {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
}

.quick-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  color: var(--gray-700);
  font-size: 10px;
  font-weight: 700;
}

.service-list {
  margin-top: 10px;
  padding: 11px;
}

.service-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 6px 0;
  border-top: 1px solid var(--gray-100);
  color: var(--gray-700);
  font-size: 11px;
  font-weight: 700;
}

.status {
  padding: 3px 7px;
  border-radius: 999px;
  color: #15803d;
  background: rgba(34, 197, 94, 0.16);
  font-size: 10px;
}

.trust-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 28px;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}

.icon-card,
.feature-card,
.audience-card,
.server-card,
.contact-card,
.blog-card,
.legal-section {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.icon-card {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 102px;
  padding: 22px;
}

.icon-box {
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--blue-600);
  background: rgba(11, 140, 255, 0.10);
  font-size: 30px;
}

.icon-shield,
.icon-cardpay,
.icon-headset {
  position: relative;
  background: transparent;
}

.icon-shield::before {
  content: "";
  position: absolute;
  inset: 4px 7px 5px;
  border: 4px solid var(--blue-600);
  border-radius: 14px 14px 20px 20px;
  clip-path: polygon(50% 0, 100% 15%, 100% 62%, 50% 100%, 0 62%, 0 15%);
  box-shadow: 0 9px 18px rgba(0, 119, 255, 0.15);
}

.icon-shield span::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 24px;
  width: 15px;
  height: 8px;
  border-left: 4px solid var(--blue-600);
  border-bottom: 4px solid var(--blue-600);
  transform: rotate(-45deg);
}

.icon-cpanel {
  color: var(--warning);
  background: transparent;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -2px;
}

.icon-cardpay::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 10px;
  width: 44px;
  height: 34px;
  border: 4px solid var(--blue-600);
  border-radius: 6px;
}

.icon-cardpay::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 21px;
  width: 34px;
  height: 4px;
  background: var(--blue-600);
  box-shadow: 0 11px 0 -1px var(--blue-600);
}

.icon-cardpay span::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 35px;
  width: 10px;
  height: 4px;
  border-radius: 4px;
  background: var(--blue-600);
}

.icon-headset::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 7px;
  width: 38px;
  height: 35px;
  border: 5px solid var(--blue-600);
  border-bottom-color: transparent;
  border-radius: 50% 50% 32% 32%;
}

.icon-headset::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 29px;
  width: 9px;
  height: 16px;
  border-radius: 5px;
  background: var(--blue-600);
  box-shadow: 31px 0 0 var(--blue-600);
}

.icon-headset span::before {
  content: "";
  position: absolute;
  right: 6px;
  bottom: 7px;
  width: 15px;
  height: 8px;
  border-right: 4px solid var(--blue-600);
  border-bottom: 4px solid var(--blue-600);
  border-radius: 0 0 9px 0;
}

.icon-card h3,
.feature-card h3,
.server-card h3,
.contact-card h3,
.blog-card h3 {
  margin: 0 0 5px;
  color: var(--navy-950);
  font-size: 18px;
  line-height: 1.25;
  font-weight: 800;
}

.icon-card p,
.feature-card p,
.server-card p,
.contact-card p,
.blog-card p {
  margin: 0;
  color: var(--gray-500);
  font-weight: 500;
}

.domain-panel {
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--white), var(--gray-50));
  box-shadow: var(--shadow-soft);
}

.domain-search-section {
  padding-top: 62px;
  padding-bottom: 76px;
  background: linear-gradient(180deg, var(--white), var(--gray-50));
}

.domain-search-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  color: var(--gray-900);
  background: linear-gradient(180deg, var(--white), var(--gray-50));
  box-shadow: var(--shadow-soft);
}

.domain-search-card::before {
  content: none;
}

.domain-search-title {
  position: relative;
  z-index: 1;
  margin-bottom: 26px;
}

.domain-search-title h2 {
  color: var(--navy-950);
}

.domain-search-title p {
  color: var(--gray-500);
}

.domain-form,
.domain-search-form {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  max-width: 780px;
  margin: 0 auto;
}

.domain-form input,
.domain-search-form input {
  width: 100%;
  min-height: 58px;
  padding: 0 18px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  color: var(--gray-900);
  background: var(--white);
  font-weight: 600;
  outline: none;
}

.domain-form input:focus,
.domain-search-form input:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(0, 119, 255, 0.12);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.chip {
  padding: 8px 14px;
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  color: var(--blue-600);
  background: var(--white);
  font-weight: 800;
}

.domain-search-card .chips {
  position: relative;
  z-index: 1;
}

.domain-search-card .chip {
  border-color: var(--gray-200);
  color: var(--blue-600);
  background: var(--white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px 32px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.pricing-card.is-featured {
  border: 2px solid var(--blue-500);
  box-shadow: 0 18px 46px rgba(0, 119, 255, 0.16);
  transform: translateY(-6px);
}

.popular-badge {
  position: absolute;
  top: -17px;
  left: 50%;
  transform: translateX(-50%);
  min-width: 210px;
  padding: 7px 16px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-600), var(--cyan-400));
  text-align: center;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(0, 119, 255, 0.25);
}

.plan-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-600);
  font-size: 46px;
  line-height: 1;
}

.pricing-card h3 {
  margin: 14px 0 7px;
  color: var(--navy-950);
  font-size: 22px;
  line-height: 1.2;
  font-weight: 800;
}

.pricing-card p {
  margin: 0 0 18px;
  color: var(--gray-500);
  font-weight: 500;
}

.features {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.features li {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 10px 0;
  color: var(--gray-700);
  font-weight: 600;
}

.features li::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue-500);
  font-size: 11px;
  font-weight: 800;
}

.price {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--gray-200);
  color: var(--navy-950);
  font-size: 34px;
  font-weight: 800;
}

.price small {
  font-size: 15px;
  font-weight: 700;
}

.feature-grid,
.audience-grid,
.server-grid,
.contact-grid,
.blog-grid,
.status-grid {
  display: grid;
  gap: 22px;
}

.feature-grid {
  grid-template-columns: repeat(4, 1fr);
}

.status-grid {
  grid-template-columns: repeat(3, 1fr);
}

.feature-card,
.server-card,
.contact-card,
.blog-card,
.status-card {
  padding: 24px;
}

.feature-card .icon-box {
  margin-bottom: 16px;
}

.status-card {
  position: relative;
  min-height: 180px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.status-card h3 {
  margin: 22px 0 8px;
  color: var(--gray-900);
}

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

.status-dot {
  display: inline-flex;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--success);
  box-shadow: 0 0 0 8px rgba(34, 197, 94, 0.12);
}

.status-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-950), var(--navy-900));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.status-panel h2 {
  margin-bottom: 8px;
  color: var(--white);
}

.status-panel p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
}

.why-grid {
  gap: 20px;
}

.why-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 16px;
  min-height: 118px;
  padding: 22px 24px;
}

.why-card h3 {
  margin-bottom: 7px;
  font-size: 17px;
}

.why-card p {
  font-size: 13px;
  line-height: 1.45;
}

.why-icon {
  position: relative;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--blue-600);
}

.why-card .why-icon::before,
.why-card .why-icon::after {
  content: none;
}

.why-icon::before,
.why-icon::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
}

.why-lightning::before {
  left: 16px;
  top: 2px;
  width: 24px;
  height: 48px;
  background: var(--blue-600);
  clip-path: polygon(54% 0, 100% 0, 66% 39%, 100% 39%, 27% 100%, 41% 55%, 0 55%);
  filter: drop-shadow(0 8px 14px rgba(0, 119, 255, 0.18));
}

.why-tag::before {
  left: 8px;
  top: 8px;
  width: 34px;
  height: 34px;
  border-radius: 9px 9px 9px 3px;
  background: var(--blue-600);
  transform: rotate(-45deg);
  filter: drop-shadow(0 8px 14px rgba(0, 119, 255, 0.18));
}

.why-tag::after {
  right: 15px;
  top: 13px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--white);
}

.why-gear::before {
  inset: 4px;
  background: var(--blue-600);
  clip-path: polygon(42% 0, 58% 0, 62% 14%, 72% 18%, 84% 10%, 96% 22%, 88% 34%, 92% 44%, 100% 50%, 92% 56%, 88% 66%, 96% 78%, 84% 90%, 72% 82%, 62% 86%, 58% 100%, 42% 100%, 38% 86%, 28% 82%, 16% 90%, 4% 78%, 12% 66%, 8% 56%, 0 50%, 8% 44%, 12% 34%, 4% 22%, 16% 10%, 28% 18%, 38% 14%);
  filter: drop-shadow(0 8px 14px rgba(0, 119, 255, 0.18));
}

.why-gear::after {
  left: 19px;
  top: 19px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--white);
}

.why-shield::before {
  left: 7px;
  top: 3px;
  width: 38px;
  height: 45px;
  background: var(--blue-600);
  border-radius: 12px 12px 18px 18px;
  clip-path: polygon(50% 0, 100% 15%, 100% 62%, 50% 100%, 0 62%, 0 15%);
  filter: drop-shadow(0 8px 14px rgba(0, 119, 255, 0.18));
}

.why-shield::after {
  left: 20px;
  top: 23px;
  width: 15px;
  height: 8px;
  border-left: 4px solid var(--white);
  border-bottom: 4px solid var(--white);
  transform: rotate(-45deg);
}

.audience-grid {
  grid-template-columns: repeat(3, 1fr);
}

.audience-card {
  padding: 20px 22px;
  color: var(--navy-950);
  font-weight: 800;
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 9px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--white);
}

.faq-question {
  width: 100%;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 22px;
  border: 0;
  color: var(--navy-950);
  background: var(--white);
  text-align: left;
  font-weight: 800;
  cursor: pointer;
}

.faq-question span {
  font-size: 22px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.faq-question[aria-expanded="true"] span {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 22px 18px;
  color: var(--gray-500);
  font-weight: 500;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.cta-band {
  padding: 42px;
  border-radius: var(--radius-xl);
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800) 56%, #083a7a);
  box-shadow: var(--shadow-soft);
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-band h2 {
  margin: 0 0 8px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
}

.cta-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 66px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-950), var(--navy-900) 55%, var(--navy-800));
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 74% 24%, rgba(0, 194, 255, 0.18), transparent 28%);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(36px, 5vw, 54px);
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
  font-weight: 500;
}

.compare-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.compare-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.compare-table th,
.compare-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--gray-100);
  text-align: left;
}

.compare-table th {
  color: var(--navy-950);
  background: var(--gray-50);
  font-weight: 800;
}

.compare-table td {
  color: var(--gray-700);
  font-weight: 600;
}

.server-grid,
.contact-grid {
  grid-template-columns: repeat(3, 1fr);
}

.blog-grid {
  grid-template-columns: repeat(3, 1fr);
}

.content-block {
  max-width: 920px;
  margin: 0 auto;
}

.content-block h2 {
  margin: 0 0 12px;
  color: var(--navy-950);
  font-size: 30px;
  line-height: 1.2;
}

.content-block h3 {
  margin: 28px 0 10px;
  color: var(--navy-950);
  font-size: 21px;
  line-height: 1.3;
  font-weight: 800;
}

.content-block p,
.content-block li {
  color: var(--gray-500);
  font-weight: 500;
}

.content-block ul {
  padding-left: 20px;
}

.legal-content-block {
  max-width: 980px;
}

.legal-section {
  padding: 28px;
  margin-bottom: 22px;
}

.legal-section h2 {
  padding-bottom: 14px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--gray-100);
}

.legal-section p {
  margin: 0 0 16px;
}

.legal-section ul {
  margin: 0 0 18px;
}

.legal-note {
  padding: 18px 20px;
  margin-bottom: 28px;
  border: 1px solid rgba(249, 115, 22, 0.24);
  border-radius: var(--radius-md);
  color: #9a3412;
  background: rgba(249, 115, 22, 0.08);
  font-weight: 700;
}

.site-footer {
  color: rgba(255, 255, 255, 0.82);
  background: linear-gradient(135deg, var(--navy-950), var(--navy-900));
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 34px;
  padding: 58px 0 38px;
}

.footer-brand p {
  margin: 16px 0 0;
  max-width: 300px;
}

.footer-col h3 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 16px;
}

.footer-col a,
.footer-col span {
  display: block;
  margin: 9px 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
}

.footer-col a:hover {
  color: var(--cyan-300);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  font-size: 14px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

@media (max-width: 1120px) {
  .nav-wrap {
    gap: 14px;
  }

  .brand-logo {
    height: 36px;
    max-width: 132px;
  }

  .brand-text {
    font-size: 18px;
  }

  .nav-menu {
    gap: 18px;
    font-size: 14px;
  }

  .nav-actions .btn {
    min-height: 46px;
    padding: 0 18px;
  }
}

@media (max-width: 900px) {
  .nav-menu {
    gap: 18px;
  }

  .hero-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    max-width: 620px;
    margin: 0 auto;
  }

  .hero-art {
    right: 50%;
    top: -18px;
    width: min(760px, 128vw);
    transform: translateX(50%);
  }

  .trust-cards,
  .feature-grid,
  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }

  .server-grid,
  .contact-grid,
  .blog-grid,
  .status-grid,
  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .section {
    padding: 56px 0;
  }

  .nav-wrap {
    min-height: 72px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-actions .btn {
    display: none;
  }

  .nav-menu {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 82px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-md);
    background: rgba(3, 11, 29, 0.98);
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.35);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    padding: 14px 12px;
    border-radius: 10px;
  }

  .nav-menu a:hover {
    background: rgba(255, 255, 255, 0.06);
  }

  .hero {
    padding: 64px 0 54px;
  }

  .hero p {
    font-size: 18px;
  }

  .hero-buttons,
  .cta-band-inner {
    flex-direction: column;
    align-items: stretch;
  }

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

  .trust-cards,
  .feature-grid,
  .server-grid,
  .contact-grid,
  .blog-grid,
  .status-grid,
  .audience-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .status-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .why-card {
    grid-template-columns: 54px 1fr;
  }

  .domain-form,
  .domain-search-form {
    grid-template-columns: 1fr;
  }

  .pricing-card.is-featured {
    transform: none;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .brand-logo {
    height: 34px;
    max-width: 120px;
  }

  .brand-text {
    font-size: 17px;
  }

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

  .hero-art {
    top: 34px;
    width: 610px;
  }

  .server-rack {
    left: 12px;
    width: 205px;
    height: 315px;
  }

  .server-slot {
    width: 128px;
    margin-left: 30px;
  }

  .dashboard {
    top: 94px;
    right: -8px;
    width: 330px;
  }

  .dashboard-body {
    grid-template-columns: 86px 1fr;
  }

  .dashboard-side {
    font-size: 9px;
  }

  .metric-grid,
  .quick-actions {
    grid-template-columns: 1fr;
  }

  .metric-card:nth-child(2) {
    display: none;
  }

  .icon-card {
    align-items: flex-start;
  }

  .domain-panel,
  .cta-band,
  .pricing-card {
    padding: 24px;
  }
}
