:root {
  --navy: #07152e;
  --navy-2: #0b2250;
  --blue: #1261ff;
  --cyan: #00d7ff;
  --teal: #00c2b8;
  --lime: #b7f34a;
  --ink: #081a3d;
  --muted: #65718c;
  --line: rgba(11, 52, 120, .16);
  --white: #fff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 0, rgba(0,215,255,.14), transparent 28%),
    #f7fbff;
}

a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
img { max-width: 100%; }

body.modal-open {
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 700px;
  color: #fff;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 20%, rgba(0,215,255,.55), transparent 28%),
    radial-gradient(circle at 18% 42%, rgba(18,97,255,.48), transparent 36%),
    linear-gradient(132deg, #06142f 0%, #061b4b 54%, #00bba7 100%);
}

.page-hero {
  color: #fff;
  background:
    radial-gradient(circle at 80% 18%, rgba(0,215,255,.48), transparent 30%),
    radial-gradient(circle at 18% 38%, rgba(18,97,255,.42), transparent 34%),
    linear-gradient(132deg, #06142f 0%, #061b4b 56%, #00bba7 100%);
}

.page-hero-grid {
  width: min(1120px, calc(100% - 44px));
  margin: 0 auto;
  padding: 54px 0 78px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 42px;
  align-items: center;
}

.page-hero-grid h1 {
  margin: 14px 0 18px;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: .95;
  letter-spacing: -2px;
}

.page-hero-grid p {
  max-width: 680px;
  color: rgba(255,255,255,.86);
  font-size: 1.16rem;
  line-height: 1.65;
}

.page-hero-grid img {
  width: min(520px, 100%);
  justify-self: center;
  filter: drop-shadow(0 24px 60px rgba(0,215,255,.28));
}

.nav-links.is-static {
  display: flex;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .55;
  background:
    linear-gradient(115deg, transparent 0 18%, rgba(0,215,255,.45) 18.2%, transparent 18.55% 45%, rgba(183,243,74,.32) 45.2%, transparent 45.55%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.06) 0 1px, transparent 1px 130px);
  mask-image: linear-gradient(180deg, #000, transparent 90%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -82px;
  height: 170px;
  border-radius: 50% 50% 0 0;
  background: #f7fbff;
  box-shadow: 0 -24px 70px rgba(0,215,255,.28);
}

.nav,
.hero-grid,
.domain-card,
.section,
.benefit-bar,
.reseller,
.footer {
  width: min(1120px, calc(100% - 44px));
  margin-inline: auto;
}

.nav {
  position: relative;
  z-index: 4;
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 18px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 14px 34px rgba(0,215,255,.16);
}

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

.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: .94rem;
  font-weight: 800;
}

.nav-links a {
  opacity: .92;
  transition: color .2s ease, opacity .2s ease;
}

.nav-links a:hover {
  color: var(--lime);
  opacity: 1;
}

.client-btn,
.btn-primary,
.lime-btn,
.domain-search button,
.contact-form button,
.plan button {
  border: 0;
  border-radius: 14px;
  font-weight: 900;
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
}

.client-btn {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(0,215,255,.62);
  display: inline-grid;
  place-items: center;
  color: #fff;
  background: rgba(255,255,255,.08);
  box-shadow: inset 0 0 20px rgba(0,215,255,.18);
  backdrop-filter: blur(12px);
}

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 12px;
  background: rgba(255,255,255,.08);
}

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

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .86fr);
  gap: 34px;
  align-items: center;
  padding: 34px 0 118px;
}

.hero-copy h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(3.8rem, 7.5vw, 6.8rem);
  line-height: .9;
  letter-spacing: -3px;
}

.hero-copy h1 span { color: var(--cyan); }

.hero-copy p {
  max-width: 620px;
  margin: 24px 0 30px;
  color: #eaf7ff;
  font-size: 1.2rem;
  line-height: 1.6;
}

.hero-points {
  max-width: 520px;
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
}

.hero-points article {
  position: relative;
  min-height: 58px;
  padding: 0 0 0 62px;
}

.hero-points article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--lime), var(--cyan));
  box-shadow: 0 0 28px rgba(0,215,255,.72);
}

.hero-points b {
  display: block;
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  line-height: .9;
}

.hero-points span {
  display: block;
  margin-top: 4px;
  color: #e9f5ff;
  font-size: .98rem;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
}

.hero-visual img {
  width: min(100%, 560px);
  filter: drop-shadow(0 32px 72px rgba(0,0,0,.36));
  animation: floaty 4.5s ease-in-out infinite;
}

.speed-badge {
  position: absolute;
  top: 52px;
  right: 18px;
  padding: 14px 18px;
  border: 1px solid rgba(0,215,255,.66);
  border-radius: 16px;
  color: #dbfff8;
  background: rgba(3,34,71,.74);
  box-shadow: 0 0 34px rgba(0,215,255,.32);
  backdrop-filter: blur(14px);
}

.speed-badge strong,
.speed-badge span { display: block; }
.speed-badge span { color: var(--lime); font-size: .78rem; font-weight: 900; }

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

.domain-card {
  position: relative;
  z-index: 5;
  margin-top: -96px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 22px;
  display: grid;
  grid-template-columns: .42fr 1fr .22fr;
  gap: 18px;
  align-items: center;
  background: rgba(255,255,255,.96);
  box-shadow: 0 26px 70px rgba(0,55,145,.2), 0 0 0 9px rgba(255,255,255,.2);
}

.domain-title span,
.domain-title strong {
  display: block;
  font-size: clamp(1.35rem, 2.4vw, 2.2rem);
  line-height: .9;
  font-weight: 900;
}

.domain-title span {
  color: #050b18;
}

.domain-title strong {
  color: var(--blue);
  font-size: clamp(2.1rem, 4vw, 3.25rem);
}

.domain-search {
  display: grid;
  grid-template-columns: 1fr 190px;
  gap: 14px;
}

.domain-search input,
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  outline: 0;
  background: #f8fbff;
}

.domain-search input {
  min-height: 58px;
  padding: 0 22px;
  font-weight: 800;
}

.domain-search button,
.lime-btn {
  min-height: 58px;
  padding: 0 22px;
  color: #06142f;
  background: linear-gradient(180deg, #caff22, var(--lime));
  box-shadow: 0 18px 35px rgba(183,243,74,.34);
}

.domain-prices {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  color: #0d265e;
  font-weight: 800;
}

.domain-prices span {
  padding: 0 12px;
  border-right: 1px solid rgba(13,38,94,.18);
}

.domain-prices span:last-child { border-right: 0; }
.domain-prices b { display: block; color: #061b4b; }

.domain-save {
  height: 100%;
  min-height: 86px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  align-content: center;
  color: #06142f;
  background: linear-gradient(180deg, #caff22, var(--lime));
  text-align: center;
  font-weight: 900;
}

.domain-save b,
.domain-save span { display: block; }

.domain-results {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.domain-result {
  padding: 14px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid rgba(18, 97, 255, .16);
  background: #fff;
  box-shadow: 0 14px 34px rgba(8, 26, 61, .08);
}

.domain-result strong,
.domain-result span,
.domain-result small { display: block; }
.domain-result strong {
  color: #07152e;
  font-weight: 900;
}
.domain-result span {
  margin-top: 3px;
  color: #41506f;
  font-weight: 700;
}
.domain-result small {
  margin-top: 5px;
  color: #07152e;
  font-size: 1rem;
  font-weight: 900;
}
.domain-pill {
  flex: 0 0 auto;
  min-width: 112px;
  border-radius: 999px;
  padding: 9px 12px;
  color: #06142f;
  background: linear-gradient(180deg, #caff22, var(--lime));
  text-align: center;
  font-size: .92rem;
  font-weight: 900;
}
.domain-actions {
  display: grid;
  gap: 8px;
  justify-items: end;
}
.domain-buy {
  min-height: 38px;
  border: 0;
  border-radius: 999px;
  padding: 0 16px;
  color: #fff;
  background: linear-gradient(180deg, #1261ff, #003fd1);
  box-shadow: 0 12px 24px rgba(18, 97, 255, .24);
  font-weight: 900;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.domain-buy:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(18, 97, 255, .32);
}
.domain-result.is-taken .domain-pill {
  color: #fff;
  background: linear-gradient(180deg, #ff3150, #1261ff);
}
.domain-result.is-unknown .domain-pill {
  color: #06142f;
  background: #e7eef8;
}
.domain-loading { color: var(--muted); font-weight: 800; }

.section {
  padding: 64px 0;
}

.seo-section {
  width: min(1120px, calc(100% - 44px));
  margin: 0 auto;
  padding: 76px 0;
}

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

.seo-grid article {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 52px rgba(11,52,120,.08);
}

.seo-grid img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  margin-bottom: 14px;
}

.seo-grid h3 {
  margin: 0 0 10px;
  color: var(--ink);
}

.seo-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.seo-band {
  width: min(1120px, calc(100% - 44px));
  margin: 0 auto 76px;
  padding: 34px;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  color: #fff;
  background: linear-gradient(120deg, #06142f, #083d87 62%, #00bba7);
  box-shadow: 0 24px 70px rgba(0,68,145,.18);
}

.seo-band h2 {
  margin: 0 0 8px;
}

.seo-band p {
  margin: 0;
  color: rgba(255,255,255,.82);
}

.seo-domain-card {
  margin-top: -44px;
  margin-bottom: 28px;
}

.faq-page {
  min-height: 100vh;
}

.center-cta {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

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

.section-title span,
.mini-label {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--blue);
  background: rgba(18,97,255,.08);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section-title h2,
.contact h2,
.reseller h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.02;
  letter-spacing: -1.6px;
}

.section-title p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

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

.plan {
  position: relative;
  min-height: 526px;
  padding: 30px;
  border: 1px solid rgba(18,97,255,.18);
  border-radius: 22px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 24px 60px rgba(11,52,120,.12);
  overflow: hidden;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.plan::after {
  content: "";
  position: absolute;
  inset: auto -30% -42% -30%;
  height: 190px;
  opacity: 0;
  background: radial-gradient(circle, rgba(0,215,255,.24), transparent 65%);
  transition: opacity .24s ease;
}

.plan:hover {
  transform: translateY(-10px);
  border-color: rgba(0,215,255,.5);
  box-shadow: 0 32px 80px rgba(18,97,255,.18);
}

.plan:hover::after { opacity: 1; }

.plan.featured {
  color: #fff;
  border-color: rgba(0,215,255,.54);
  background:
    radial-gradient(circle at 70% 12%, rgba(183,243,74,.32), transparent 30%),
    linear-gradient(140deg, #125cff, #00bcb5);
  box-shadow: 0 34px 90px rgba(0,194,184,.3);
}

.plan > * {
  position: relative;
  z-index: 1;
}

.chosen {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 7px 16px;
  border-radius: 999px;
  color: #06142f;
  background: linear-gradient(180deg, #caff22, var(--lime));
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.plan h3 {
  margin: 0;
  color: inherit;
  font-size: 1.55rem;
  text-align: left;
  text-transform: none;
  letter-spacing: 0;
}

.plan p {
  min-height: 0;
  margin: 8px 0 18px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.5;
}

.plan.featured p { color: #eaf7ff; }

.plan img {
  width: 78px;
  height: 78px;
  object-fit: contain;
  margin-bottom: 14px;
}

.plan.featured img {
  width: 104px;
  height: 104px;
  filter: drop-shadow(0 16px 26px rgba(0,0,0,.18));
}

.plan strong {
  display: block;
  margin: 8px 0 20px;
  color: inherit;
  font-size: 3rem;
  letter-spacing: -2px;
  text-align: left;
}

.plan strong small {
  color: inherit;
  opacity: .9;
  font-size: 1.12rem;
  letter-spacing: 0;
  font-weight: 700;
}

.plan ul {
  min-height: 198px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}

.plan li {
  position: relative;
  padding-left: 28px;
  color: inherit;
  font-weight: 800;
}

.plan li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #06264b;
  background: var(--lime);
  font-size: .72rem;
}

.plan button {
  width: 100%;
  min-height: 50px;
  margin: 0;
  border: 2px solid var(--blue);
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: #fff;
  font-size: 1rem;
  text-transform: none;
}

.plan.featured button {
  border: 2px solid var(--blue);
  color: #06142f;
  background: linear-gradient(180deg, #caff22, var(--lime));
  box-shadow: 0 18px 36px rgba(183,243,74,.28);
}

.plan-quote {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #06142f;
  font-weight: 800;
}

.plan-quote::before {
  content: "›";
  color: #06142f;
  font-size: 1.2rem;
}

.benefit-bar {
  margin-top: -18px;
  padding: 18px;
  border: 1px solid rgba(18,97,255,.18);
  border-radius: 22px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(255,255,255,.88);
  box-shadow: 0 22px 62px rgba(11,52,120,.14);
  backdrop-filter: blur(14px);
}

.benefit-bar article {
  min-height: 94px;
  padding: 10px 18px;
  border-right: 1px solid rgba(18,97,255,.16);
  display: grid;
  grid-template-columns: 58px 1fr;
  column-gap: 14px;
  align-items: center;
}

.benefit-bar article:last-child { border-right: 0; }
.benefit-bar img { grid-row: span 2; width: 56px; height: 56px; object-fit: contain; }
.benefit-bar b,
.benefit-bar span { display: block; }
.benefit-bar b { align-self: end; }
.benefit-bar span { align-self: start; color: var(--muted); font-weight: 800; }

.reseller {
  margin-top: 56px;
  padding: 42px;
  border-radius: 28px;
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: 36px;
  align-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 9% 18%, rgba(0,215,255,.36), transparent 30%),
    linear-gradient(120deg, #06142f, #083d87 60%, #00bba7);
  box-shadow: 0 30px 86px rgba(0,68,145,.28);
  overflow: hidden;
}

.reseller-image img {
  width: 100%;
  border-radius: 22px;
  filter: drop-shadow(0 26px 44px rgba(0,0,0,.32));
}

.reseller-copy span {
  color: var(--lime);
  font-weight: 900;
}

.reseller h2 {
  max-width: 520px;
  margin: 6px 0 18px;
}

.reseller ul,
.cpanel-grid {
  margin: 0;
  padding: 0;
  list-style: none;
}

.reseller li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 28px;
  color: #eaf7ff;
  font-weight: 700;
}

.reseller li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--lime);
  font-weight: 900;
}

.reseller-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.lime-btn,
.support-chip {
  min-height: 54px;
  padding: 0 22px;
  display: inline-grid;
  place-items: center;
}

.support-chip {
  border: 1px solid rgba(0,215,255,.5);
  border-radius: 14px;
  color: #fff;
  background: rgba(255,255,255,.08);
  font-weight: 900;
}

.cpanel-section {
  padding-bottom: 36px;
}

.cpanel-preview {
  display: block;
  margin-bottom: 24px;
  overflow: hidden;
  border: 1px solid rgba(18,97,255,.18);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 26px 70px rgba(11,52,120,.14);
}

.cpanel-preview img {
  display: block;
  width: 100%;
  height: auto;
}

.page-hero-grid .cpanel-hero-preview {
  width: min(680px, 100%);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 20px;
  background: #fff;
  filter: drop-shadow(0 24px 60px rgba(0,215,255,.28));
}

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

.cpanel-grid article {
  padding: 22px;
  border: 1px solid rgba(18,97,255,.16);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 20px 52px rgba(11,52,120,.1);
  transition: transform .22s ease, box-shadow .22s ease;
}

.cpanel-grid article:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 70px rgba(0,215,255,.18);
}

.cpanel-grid img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.cpanel-grid b {
  display: block;
  margin: 12px 0 8px;
}

.cpanel-grid span {
  color: var(--muted);
  line-height: 1.5;
}

.intro-seo {
  padding-top: 44px;
}

.intro-card {
  position: relative;
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid rgba(0,215,255,.22);
  border-radius: 30px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  gap: 34px;
  align-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 82% 16%, rgba(183,243,74,.2), transparent 30%),
    radial-gradient(circle at 14% 18%, rgba(0,215,255,.26), transparent 32%),
    linear-gradient(135deg, #06142f, #083d87 62%, #00a995);
  box-shadow: 0 32px 90px rgba(0,68,145,.28);
  overflow: hidden;
}

.intro-card::after {
  content: "";
  position: absolute;
  inset: auto -14% -34% 18%;
  height: 230px;
  background: radial-gradient(circle, rgba(0,215,255,.25), transparent 68%);
  pointer-events: none;
}

.intro-card > * {
  position: relative;
  z-index: 1;
}

.intro-card h2 {
  max-width: 700px;
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(2.2rem, 4.6vw, 4.1rem);
  line-height: .98;
  letter-spacing: -1.7px;
}

.intro-card p {
  max-width: 790px;
  margin: 0 0 16px;
  color: #e5f3ff;
  font-size: 1.03rem;
  line-height: 1.75;
}

.intro-highlights {
  display: grid;
  gap: 14px;
}

.intro-highlights article {
  padding: 18px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 18px;
  background: rgba(255,255,255,.1);
  box-shadow: inset 0 0 30px rgba(0,215,255,.08);
  backdrop-filter: blur(12px);
}

.intro-highlights b {
  display: block;
  color: var(--lime);
  font-size: 1.25rem;
}

.intro-highlights span {
  display: block;
  margin-top: 6px;
  color: #eaf7ff;
  line-height: 1.5;
}

.seo-grid article a {
  margin-top: 12px;
  display: inline-flex;
  color: var(--blue);
  font-weight: 900;
}

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

.benefit-grid article {
  min-height: 220px;
  padding: 24px;
  border: 1px solid rgba(18,97,255,.16);
  border-radius: 24px;
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 18px;
  align-items: start;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(18,97,255,.38), rgba(0,215,255,.24), rgba(183,243,74,.18)) border-box;
  box-shadow: 0 24px 64px rgba(11,52,120,.12);
  transition: transform .22s ease, box-shadow .22s ease;
}

.benefit-grid article:hover,
.project-grid article:hover {
  transform: translateY(-7px);
  box-shadow: 0 32px 78px rgba(0,147,255,.17);
}

.benefit-grid img {
  width: 68px;
  height: 68px;
  object-fit: contain;
  filter: drop-shadow(0 12px 18px rgba(18,97,255,.18));
}

.benefit-grid h3,
.project-grid h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 1.16rem;
}

.benefit-grid p,
.project-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.benefit-grid a {
  margin-top: 14px;
  display: inline-flex;
  color: var(--blue);
  font-weight: 900;
}

.project-grid article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid rgba(18,97,255,.16);
  border-radius: 24px;
  background:
    radial-gradient(circle at 86% 10%, rgba(0,215,255,.12), transparent 32%),
    #fff;
  box-shadow: 0 22px 58px rgba(11,52,120,.1);
  transition: transform .22s ease, box-shadow .22s ease;
}

.compare-section {
  padding-top: 38px;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(18,97,255,.16);
  border-radius: 22px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 24px 62px rgba(11,52,120,.12);
}

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

.compare-table th,
.compare-table td {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(18,97,255,.12);
  text-align: left;
}

.compare-table thead th {
  color: #06142f;
  background: linear-gradient(180deg, rgba(0,215,255,.12), rgba(18,97,255,.06));
  font-weight: 900;
}

.compare-table tbody th {
  color: #0d265e;
}

.compare-table td {
  color: var(--muted);
  font-weight: 800;
}

.compare-table button {
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  color: #06142f;
  background: var(--lime);
  font-size: .88rem;
  box-shadow: 0 12px 26px rgba(183,243,74,.25);
}

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

.steps article {
  position: relative;
  min-height: 220px;
  padding: 26px;
  border: 1px solid rgba(0,215,255,.22);
  border-radius: 22px;
  color: #fff;
  background:
    radial-gradient(circle at 86% 12%, rgba(183,243,74,.18), transparent 32%),
    linear-gradient(145deg, #06142f, #083d87);
  box-shadow: 0 24px 60px rgba(11,52,120,.16);
}

.steps b {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #06142f;
  background: var(--lime);
  font-size: 1.25rem;
  font-weight: 900;
}

.steps h3 {
  margin: 18px 0 10px;
}

.steps p {
  color: #d9ebff;
  line-height: 1.55;
}

.migration-band {
  margin-top: 46px;
}

.final-cta {
  width: min(100% - 44px, 1120px);
  margin: 56px auto 24px;
  padding: 36px;
  border: 1px solid rgba(0,215,255,.22);
  border-radius: 28px;
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  background:
    radial-gradient(circle at 18% 12%, rgba(0,215,255,.28), transparent 30%),
    linear-gradient(120deg, #06142f, #083d87 58%, #00bba7);
  box-shadow: 0 30px 86px rgba(0,68,145,.26);
}

.final-cta h2 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.9rem);
  line-height: 1.05;
}

.final-cta div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.breadcrumbs {
  margin-bottom: 14px;
  display: flex;
  gap: 8px;
  color: #b8d8ff;
  font-size: .88rem;
  font-weight: 800;
}

.breadcrumbs a {
  color: #eaf7ff;
}

.article-page {
  max-width: 940px;
  color: var(--muted);
  line-height: 1.75;
}

.article-page h2 {
  margin: 34px 0 12px;
  color: #06142f;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.article-meta {
  margin-top: 0;
  color: var(--blue);
  font-weight: 900;
}

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

.check-list li {
  position: relative;
  padding-left: 30px;
  color: #0d265e;
  font-weight: 800;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 900;
}

.split-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.split-content > div {
  padding: 28px;
  border: 1px solid rgba(18,97,255,.16);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 22px 54px rgba(11,52,120,.1);
}

.faq {
  padding-top: 36px;
}

.faq-list {
  max-width: 840px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq details {
  border: 1px solid rgba(18,97,255,.16);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(11,52,120,.08);
  overflow: hidden;
}

.faq summary {
  padding: 18px 22px;
  color: #0d265e;
  font-weight: 900;
  cursor: pointer;
}

.faq p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
  line-height: 1.55;
}

.contact {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 38px;
  align-items: start;
}

.contact h2 { margin: 0 0 14px; }
.contact p { color: var(--muted); line-height: 1.6; }

.contact-form {
  padding: 28px;
  border: 1px solid rgba(18,97,255,.16);
  border-radius: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  background: #fff;
  box-shadow: 0 28px 70px rgba(11,52,120,.12);
}

.contact-form label {
  display: grid;
  gap: 7px;
}

.contact-form label span {
  color: #0d265e;
  font-size: .9rem;
  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  min-height: 54px;
  padding: 13px 16px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .full,
.contact-form button,
.form-status {
  grid-column: 1 / -1;
}

.contact-form button {
  min-height: 56px;
  color: #06142f;
  background: linear-gradient(180deg, #caff22, var(--lime));
  box-shadow: 0 18px 34px rgba(183,243,74,.28);
}

.form-status {
  color: var(--muted);
  font-weight: 800;
}

.order-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  padding: 24px;
  display: grid;
  place-items: center;
  background: rgba(3, 18, 43, .72);
  backdrop-filter: blur(10px);
}

.order-modal[hidden] {
  display: none;
}

.order-dialog {
  position: relative;
  width: min(980px, 100%);
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 26px;
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 34px 100px rgba(0,0,0,.36);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 44px;
  height: 44px;
  min-height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #06142f;
  background: var(--lime);
  font-size: 1.7rem;
  line-height: 1;
}

.order-dialog-side {
  padding: 36px;
  color: #fff;
  background:
    radial-gradient(circle at 80% 15%, rgba(0,215,255,.38), transparent 34%),
    linear-gradient(145deg, #06142f, #083d87 70%, #00bba7);
}

.order-dialog-side span {
  color: var(--lime);
  font-weight: 900;
  text-transform: uppercase;
}

.order-dialog-side h2 {
  margin: 14px 0;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: .95;
  letter-spacing: -2px;
}

.order-dialog-side p {
  color: #eaf7ff;
  line-height: 1.65;
}

.order-dialog-side strong {
  display: block;
  margin-top: 28px;
  padding: 14px;
  border: 1px solid rgba(0,215,255,.36);
  border-radius: 18px;
  background: rgba(255,255,255,.1);
}

.order-form {
  padding: 38px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}

.order-form label {
  display: grid;
  gap: 7px;
}

.order-form label span {
  color: #0d265e;
  font-size: .9rem;
  font-weight: 900;
}

.order-form .full,
.order-form button,
.order-form .form-status {
  grid-column: 1 / -1;
}

.order-form input,
.order-form textarea {
  width: 100%;
  border: 1px solid rgba(18,97,255,.16);
  border-radius: 15px;
  padding: 13px 14px;
  outline: 0;
  background: #f8fbff;
}

.order-form input:focus,
.order-form textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(0,215,255,.14);
  background: #fff;
}

.order-form button {
  min-height: 56px;
  color: #06142f;
  background: linear-gradient(180deg, #caff22, var(--lime));
  box-shadow: 0 18px 34px rgba(183,243,74,.28);
}

.footer {
  margin-top: 26px;
  padding: 34px 0;
  border-top: 1px solid rgba(255,255,255,.12);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: center;
  color: #eaf7ff;
}

body::after {
  content: "";
  display: block;
  height: 0;
}

.footer {
  width: 100%;
  padding-inline: max(22px, calc((100% - 1120px) / 2));
  background: #06142f;
}

.footer img {
  width: 210px;
  filter: brightness(0) invert(1);
}

.footer p {
  margin: 8px 0 0;
  color: #b8c6dd;
}

.footer nav {
  display: flex;
  gap: 18px;
  font-weight: 800;
}

.footer span {
  justify-self: end;
  color: var(--lime);
  font-weight: 800;
}

.client-btn:hover,
.lime-btn:hover,
.domain-search button:hover,
.contact-form button:hover,
.plan button:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
}

@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .nav { position: relative; }
  .nav-links {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    padding: 18px;
    border: 1px solid rgba(0,215,255,.2);
    border-radius: 18px;
    flex-direction: column;
    align-items: stretch;
    background: rgba(6,20,47,.96);
    z-index: 8;
  }
  .nav-links.is-open { display: flex; }
  .client-btn { display: none; }
  .hero-grid,
  .page-hero-grid,
  .domain-card,
  .reseller,
  .order-dialog,
  .contact {
    grid-template-columns: 1fr;
  }
  .hero-grid {
    padding-top: 34px;
  }
  .hero-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hero-visual {
    min-height: 340px;
  }
  .domain-card {
    margin-top: -96px;
  }
  .plan-grid,
  .cpanel-grid,
  .seo-grid,
  .benefit-grid,
  .project-grid,
  .intro-card,
  .steps,
  .split-content {
    grid-template-columns: 1fr;
  }
  .page-hero-grid {
    padding-top: 34px;
    text-align: center;
  }
  .page-hero-grid p {
    margin-inline: auto;
  }
  .seo-band {
    align-items: stretch;
    flex-direction: column;
  }
  .benefit-bar {
    grid-template-columns: repeat(2, 1fr);
  }
  .benefit-bar article:nth-child(2) {
    border-right: 0;
  }
  .footer {
    grid-template-columns: 1fr;
  }
  .final-cta {
    align-items: stretch;
    flex-direction: column;
  }
  .final-cta div {
    justify-content: flex-start;
  }
  .footer span {
    justify-self: start;
  }
}

@media (max-width: 620px) {
  .nav,
  .hero-grid,
  .page-hero-grid,
  .domain-card,
  .section,
  .seo-section,
  .seo-band,
  .benefit-bar,
  .reseller {
    width: min(100% - 28px, 1120px);
  }
  .brand {
    padding: 8px 10px;
  }
  .brand img {
    width: 174px;
  }
  .hero-copy h1 {
    font-size: 3.5rem;
    letter-spacing: -2px;
  }
  .hero-copy p {
    font-size: 1rem;
  }
  .hero-points {
    grid-template-columns: 1fr;
  }
  .hero-points article {
    min-height: 86px;
  }
  .domain-card {
    padding: 16px;
  }
  .domain-search,
  .domain-prices,
  .benefit-bar,
  .benefit-grid article,
  .domain-result,
  .order-form,
  .contact-form,
  .steps {
    grid-template-columns: 1fr;
  }
  .domain-result {
    align-items: stretch;
    flex-direction: column;
  }
  .domain-actions {
    justify-items: stretch;
  }
  .domain-pill {
    min-width: 0;
  }
  .domain-prices span {
    border-right: 0;
    border-bottom: 1px solid rgba(13,38,94,.12);
    padding: 8px 0;
  }
  .speed-badge {
    top: 16px;
    right: 0;
  }
  .reseller,
  .order-form,
  .contact-form,
  .final-cta,
  .intro-card,
  .split-content > div {
    padding: 22px;
  }
  .footer nav {
    flex-wrap: wrap;
  }
}
