/* ============================================================
   CLOUDWEB · Public site design system
   Shared by landing + all subpages (/domeny, /webhosting, …)
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; scroll-behavior: smooth; }
body { margin: 0; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; padding: 0; }
a { color: inherit; text-decoration: none; }
input, select, textarea { font: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
svg { display: block; }

:root {
  --primary:       #1437FF;
  --primary-deep:  #001dc0;
  --primary-hover: #001a9f;
  --primary-50:    #EEF1FF;
  --primary-100:   #D9E0FF;
  --primary-200:   #B6C2FF;
  --success:       #80c700;
  --success-soft:  #EBF7D1;
  --danger:        #dc2626;
  --danger-soft:   #FEE2E2;
  --warning:       #F59E0B;
  --warning-soft:  #FEF3C7;
  --bg:            #F9FBFC;
  --bg-soft:       #F3F6FA;
  --card:          #FFFFFF;
  --ink:           #0F1419;
  --ink-2:         #2B3339;
  --muted:         #6B7280;
  --muted-2:       #9CA3AF;
  --border:        #E5E7EB;
  --border-soft:   #EEF0F3;
  --ring: 0 0 0 4px rgba(20, 55, 255, 0.14);
  --shadow-sm: 0 1px 2px rgba(15, 20, 25, 0.04), 0 1px 3px rgba(15, 20, 25, 0.06);
  --shadow:    0 6px 14px -6px rgba(15, 20, 25, 0.08), 0 12px 28px -12px rgba(15, 20, 25, 0.12);
  --shadow-lg: 0 18px 40px -12px rgba(15, 20, 25, 0.12), 0 30px 60px -20px rgba(20, 55, 255, 0.18);
  --sans: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --mono: 'Geist Mono', ui-monospace, 'SF Mono', Menlo, monospace;
  --radius-sm: 6px;
  --radius:    10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --max:    1200px;
  --gutter: clamp(20px, 4vw, 40px);
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-text-size-adjust: 100%;
  font-feature-settings: 'ss01', 'cv11';
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  background: var(--primary-50);
  border: 1px solid var(--primary-100);
  color: var(--primary-deep);
  border-radius: 999px;
  font-size: 12px; font-weight: 500; letter-spacing: 0.01em;
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 3px rgba(128, 199, 0, 0.2);
}

.mono { font-family: var(--mono); letter-spacing: -0.01em; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: var(--radius);
  font-size: 14px; font-weight: 500; line-height: 1;
  transition: all 0.2s ease;
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn--primary {
  background: var(--primary-deep);
  color: #fff;
  box-shadow: 0 1px 2px rgba(0, 29, 192, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.16);
}
.btn--primary:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 14px -4px rgba(0, 29, 192, 0.4);
}
.btn--secondary {
  background: var(--card);
  color: var(--ink);
  border-color: var(--border);
}
.btn--secondary:hover {
  border-color: var(--ink-2);
  box-shadow: var(--shadow-sm);
}
.btn--ghost { color: var(--ink-2); }
.btn--ghost:hover { color: var(--primary); }
.btn--lg { padding: 14px 26px; font-size: 15px; }

/* BETA TEST BANNER */
.test-banner {
  position: sticky; top: 0; z-index: 70;
  background: linear-gradient(90deg, #FEF3C7 0%, #FDE68A 100%);
  border-bottom: 1px solid #F59E0B;
  color: #78350F;
  font-size: 13px; font-weight: 500;
  text-align: center;
  padding: 10px 16px;
  line-height: 1.45;
}
.test-banner strong { font-weight: 700; }
.test-banner svg {
  display: inline-block; vertical-align: -3px; margin-right: 6px;
  color: #B45309;
}

/* NAV */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(249, 251, 252, 0.88);
  backdrop-filter: saturate(1.5) blur(12px);
  -webkit-backdrop-filter: saturate(1.5) blur(12px);
  border-bottom: 1px solid var(--border-soft);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: 24px;
}
.logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 20px; font-weight: 700; letter-spacing: -0.02em;
  color: var(--ink);
}
.logo img { width: 38px; height: 38px; object-fit: contain; }
.logo span em { font-style: normal; color: var(--primary); }

.nav__menu {
  display: flex; align-items: center; gap: 2px;
  font-size: 14px; font-weight: 500;
}
.nav__menu > li { position: relative; }
.nav__menu > li > a,
.nav__menu > li > button {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 14px; border-radius: 8px;
  color: var(--ink-2);
  transition: all 0.15s;
}
.nav__menu > li > a:hover,
.nav__menu > li > button:hover,
.nav__menu > li.is-active > a {
  background: var(--primary-50);
  color: var(--primary-deep);
}
.nav__menu .caret {
  width: 12px; height: 12px;
  transition: transform 0.15s;
}
.nav__menu > li:hover .caret { transform: rotate(180deg); }

/* MEGA MENU */
.mega {
  position: absolute; top: 100%; left: 50%;
  transform: translate(-50%, 8px);
  min-width: 540px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 20px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.15s, transform 0.15s, visibility 0.15s;
  z-index: 90;
}
.nav__menu > li:hover .mega,
.nav__menu > li:focus-within .mega {
  opacity: 1; visibility: visible;
  transform: translate(-50%, 0);
}
.mega__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4px 24px;
}
.mega__col h5 {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--muted); font-weight: 600;
  margin: 6px 12px 8px;
}
.mega a {
  display: block;
  padding: 9px 12px; border-radius: 8px;
  color: var(--ink-2); font-size: 14px; font-weight: 500;
  transition: all 0.12s;
}
.mega a:hover {
  background: var(--primary-50);
  color: var(--primary-deep);
}
.mega a small {
  display: block;
  font-size: 12px; color: var(--muted);
  font-weight: 400; margin-top: 2px;
}

.nav__right { display: flex; align-items: center; gap: 12px; }
.nav__cart {
  position: relative;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 14px; border-radius: 8px;
  color: var(--ink-2); font-size: 14px; font-weight: 500;
  border: 1px solid var(--border);
  background: var(--card);
}
.nav__cart:hover { border-color: var(--primary); color: var(--primary-deep); }
.nav__cart .badge {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 18px; height: 18px; padding: 0 5px;
  background: var(--primary-deep); color: #fff;
  font-size: 11px; font-weight: 700;
  border-radius: 999px; font-family: var(--mono);
}

/* MOBILE NAV */
.nav__toggle { display: none; }
.mobile-nav {
  display: none;
  background: var(--card);
  border-bottom: 1px solid var(--border-soft);
  padding: 12px var(--gutter);
}
.mobile-nav.is-open { display: block; }
.mobile-nav details { margin-bottom: 4px; }
.mobile-nav summary {
  list-style: none;
  padding: 12px 10px; border-radius: 8px;
  font-size: 15px; font-weight: 600; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
}
.mobile-nav summary::-webkit-details-marker { display: none; }
.mobile-nav summary::after { content: '+'; font-size: 20px; color: var(--primary); }
.mobile-nav details[open] summary::after { content: '–'; }
.mobile-nav ul { padding: 4px 0 10px 10px; }
.mobile-nav li a,
.mobile-nav > a {
  display: block; padding: 10px; border-radius: 8px;
  font-size: 14px; color: var(--ink-2);
}
.mobile-nav li a:hover,
.mobile-nav > a:hover { background: var(--primary-50); color: var(--primary-deep); }
.mobile-nav__ctas {
  display: flex; gap: 10px; margin-top: 12px;
  padding-top: 12px; border-top: 1px solid var(--border-soft);
}
.mobile-nav__ctas .btn { flex: 1; }

/* HERO */
.hero { position: relative; padding: 80px 0 100px; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(20, 55, 255, 0.1), transparent 60%),
    radial-gradient(ellipse 60% 40% at 100% 30%, rgba(128, 199, 0, 0.06), transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(15, 20, 25, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 20, 25, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 40%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 40%, black 30%, transparent 80%);
  pointer-events: none;
}
.hero__inner { position: relative; text-align: center; }
.hero h1 {
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.02; letter-spacing: -0.035em; font-weight: 600;
  margin: 24px auto 20px; max-width: 900px;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--primary) 20%, #5C79FF 80%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__sub {
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.55; color: var(--muted);
  max-width: 640px; margin: 0 auto 36px;
}
.hero__ctas {
  display: flex; justify-content: center; gap: 12px;
  flex-wrap: wrap; margin-bottom: 40px;
}
.hero__badges {
  display: flex; justify-content: center; gap: 28px; flex-wrap: wrap;
  font-size: 13px; color: var(--ink-2);
}
.hero__badges span { display: inline-flex; align-items: center; gap: 8px; }
.hero__badges svg { color: var(--success); flex-shrink: 0; }

/* SUBPAGE HERO (shorter, centred) */
.page-hero {
  position: relative; padding: 60px 0 40px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
  border-bottom: 1px solid var(--border-soft);
}
.page-hero__inner { position: relative; text-align: center; max-width: 760px; margin: 0 auto; }
.page-hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.05; letter-spacing: -0.03em; font-weight: 600;
  margin: 18px 0 16px;
}
.page-hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--primary) 20%, #5C79FF 80%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.page-hero p {
  font-size: 17px; color: var(--muted); margin: 0 auto 24px;
  max-width: 620px;
}
.page-hero__ctas { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }

/* BREADCRUMBS */
.crumbs {
  padding: 16px 0 0;
  font-size: 13px; color: var(--muted);
}
.crumbs ol { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.crumbs li { display: inline-flex; align-items: center; gap: 6px; }
.crumbs li + li::before {
  content: '›'; color: var(--muted-2); margin-right: 0;
}
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--primary-deep); }
.crumbs [aria-current='page'] { color: var(--ink-2); font-weight: 500; }

/* DOMAIN CARD (hero form) */
.domain-card {
  position: relative;
  max-width: 820px; margin: 60px auto 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 28px;
}
.domain-card__head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; margin-bottom: 18px;
}
.domain-card__title {
  font-size: 15px; font-weight: 600; color: var(--ink);
  display: inline-flex; align-items: center; gap: 10px;
}
.domain-card__title svg { color: var(--primary); }
.domain-card__hint { font-size: 12px; color: var(--muted); font-family: var(--mono); }

.domain-form {
  display: flex; gap: 10px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 6px;
  transition: all 0.2s;
}
.domain-form:focus-within {
  border-color: var(--primary);
  box-shadow: var(--ring);
  background: var(--card);
}
.domain-form input {
  flex: 1; min-width: 0;
  border: 0; background: transparent; outline: none;
  padding: 12px 14px;
  font-size: 16px; color: var(--ink); font-weight: 500;
}
.domain-form input::placeholder { color: var(--muted-2); font-weight: 400; }
.domain-form select {
  border: 0; background: var(--card);
  padding: 0 14px;
  font-size: 14px; font-weight: 600;
  color: var(--primary-deep); border-radius: 10px;
  cursor: pointer; font-family: var(--mono); outline: none;
  border-left: 1px solid var(--border);
}
.domain-form button[type='submit'] {
  background: var(--primary-deep); color: #fff;
  padding: 0 22px; border-radius: 10px;
  font-size: 14px; font-weight: 500;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background 0.15s;
}
.domain-form button[type='submit']:hover { background: var(--primary-hover); }
.domain-form button[type='submit']:disabled { opacity: 0.6; cursor: wait; }

.domain-card__tlds {
  display: flex; gap: 18px;
  margin-top: 18px; padding-top: 18px;
  border-top: 1px dashed var(--border);
  flex-wrap: wrap; font-size: 13px; color: var(--muted);
}
.domain-card__tlds .tld { display: inline-flex; align-items: baseline; gap: 6px; }
.domain-card__tlds .tld b { color: var(--ink); font-weight: 600; font-family: var(--mono); }

/* DOMAIN RESULTS (AJAX) */
.domain-results { margin-top: 22px; display: none; text-align: left; }
.domain-results.is-visible { display: block; }
.domain-results__primary {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-soft);
}
.domain-results__primary--available { border-color: rgba(128, 199, 0, 0.35); background: var(--success-soft); }
.domain-results__primary--taken { border-color: rgba(220, 38, 38, 0.25); background: var(--danger-soft); }
.domain-results__primary--error { border-color: var(--border); background: var(--bg-soft); }
.domain-results__name {
  font-family: var(--mono); font-weight: 600;
  color: var(--ink); font-size: 16px;
  letter-spacing: -0.01em;
  flex: 1; min-width: 0; word-break: break-all;
}
.domain-results__status {
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.04em;
  padding: 4px 10px; border-radius: 999px;
}
.domain-results__status--available { background: #3f7800; color: #fff; }
.domain-results__status--taken { background: var(--danger); color: #fff; }
.domain-results__status--error { background: var(--muted); color: #fff; }
.domain-results__price { font-weight: 600; color: var(--ink); font-size: 14px; white-space: nowrap; }
.domain-results__price small { color: var(--muted); font-weight: 400; }
.domain-results__primary .btn { padding: 10px 16px; font-size: 13px; }

.domain-results__suggestions {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
}
.domain-results__suggestion {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  font-size: 13px;
}
.domain-results__suggestion .name {
  font-family: var(--mono); font-weight: 600; color: var(--ink);
  flex: 1; min-width: 0; word-break: break-all;
}
.domain-results__suggestion .price { color: var(--muted); font-weight: 500; }
.domain-results__suggestion--taken { opacity: 0.55; }
.domain-results__suggestion--taken .price { text-decoration: line-through; }
.domain-results__suggestion button { font-size: 12px; color: var(--primary-deep); font-weight: 600; }
.domain-results__suggestion button:hover { text-decoration: underline; }
.domain-results__error { color: var(--danger); font-size: 13px; padding: 4px 0; }

/* SECTION HEAD */
section { position: relative; }
.section-head {
  text-align: center; max-width: 640px; margin: 0 auto 56px;
}
.section-head .eyebrow { margin-bottom: 18px; }
.section-head h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05; letter-spacing: -0.028em;
  font-weight: 600; margin: 0 0 16px;
}
.section-head h2 em { font-style: normal; color: var(--primary); }
.section-head p { font-size: 17px; color: var(--muted); margin: 0; }

/* CONTENT PROSE (text-heavy subpages) */
.prose {
  max-width: 760px; margin: 0 auto;
  font-size: 16px; line-height: 1.7; color: var(--ink-2);
}
.prose h2 {
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.2; letter-spacing: -0.02em;
  font-weight: 600; color: var(--ink);
  margin: 56px 0 18px;
}
.prose h3 {
  font-size: 20px; font-weight: 600; color: var(--ink);
  margin: 36px 0 12px; letter-spacing: -0.01em;
}
.prose h4 {
  font-size: 16px; font-weight: 600; color: var(--ink);
  margin: 24px 0 8px;
}
.prose p { margin: 0 0 18px; }
.prose ul, .prose ol {
  margin: 0 0 22px; padding-left: 22px;
  list-style-position: outside;
}
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose ul li, .prose ol li { margin-bottom: 8px; }
.prose a {
  color: var(--primary-deep); font-weight: 500;
  border-bottom: 1px solid var(--primary-200);
}
.prose a:hover { border-bottom-color: var(--primary-deep); }
.prose strong { font-weight: 600; color: var(--ink); }
.prose code {
  font-family: var(--mono); font-size: 0.92em;
  padding: 2px 6px; border-radius: 4px;
  background: var(--bg-soft); color: var(--primary-deep);
}
.prose blockquote {
  margin: 24px 0; padding: 16px 22px;
  border-left: 3px solid var(--primary);
  background: var(--primary-50);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--ink-2);
}
.prose hr { margin: 40px 0; border: 0; border-top: 1px solid var(--border); }

.lede {
  font-size: 19px; line-height: 1.55; color: var(--ink-2);
  max-width: 720px; margin: 0 auto 32px;
}

/* CALLOUT */
.callout {
  display: flex; gap: 14px;
  padding: 18px 20px;
  background: var(--primary-50);
  border: 1px solid var(--primary-100);
  border-radius: var(--radius-lg);
  margin: 24px 0;
  color: var(--ink-2);
  font-size: 14px; line-height: 1.6;
}
.callout svg { flex-shrink: 0; color: var(--primary); margin-top: 2px; }
.callout strong { color: var(--ink); }
.callout--success { background: var(--success-soft); border-color: rgba(128, 199, 0, 0.35); }
.callout--success svg { color: #3f7800; }
.callout--warning { background: var(--warning-soft); border-color: rgba(245, 158, 11, 0.35); }
.callout--warning svg { color: #B45309; }
.callout--danger { background: var(--danger-soft); border-color: rgba(220, 38, 38, 0.3); }
.callout--danger svg { color: var(--danger); }

/* PLANS */
.plans { padding: 100px 0; background: var(--bg); }
.plans__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; align-items: stretch;
}
.plan {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  display: flex; flex-direction: column;
  position: relative;
  transition: all 0.25s ease;
}
.plan:hover {
  border-color: var(--primary-200);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.plan--featured {
  background: linear-gradient(180deg, #0B1A80 0%, #001dc0 100%);
  color: #fff;
  border-color: var(--primary-deep);
  box-shadow: 0 20px 40px -20px rgba(0, 29, 192, 0.4);
}
.plan--featured:hover { border-color: var(--primary); box-shadow: 0 30px 60px -20px rgba(0, 29, 192, 0.5); }
.plan__badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--success); color: #08290A;
  padding: 5px 14px; border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.02em;
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(128, 199, 0, 0.4);
}
.plan__name {
  font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--primary); margin: 0 0 10px;
}
.plan--featured .plan__name { color: #AEC0FF; }
.plan__headline {
  font-size: 26px; font-weight: 600;
  letter-spacing: -0.02em; margin: 0 0 12px; color: inherit;
}
.plan__desc { font-size: 14px; color: var(--muted); margin: 0 0 26px; min-height: 42px; }
.plan--featured .plan__desc { color: rgba(255, 255, 255, 0.7); }
.plan__price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 6px; }
.plan__price .currency { font-size: 22px; font-weight: 500; color: var(--muted); }
.plan--featured .plan__price .currency { color: rgba(255, 255, 255, 0.7); }
.plan__price .amount { font-size: 52px; font-weight: 600; letter-spacing: -0.03em; line-height: 1; }
.plan__price .period { font-size: 14px; color: var(--muted); margin-left: 4px; }
.plan--featured .plan__price .period { color: rgba(255, 255, 255, 0.7); }
.plan__yearly { font-size: 12px; color: var(--muted); margin-bottom: 22px; font-family: var(--mono); }
.plan--featured .plan__yearly { color: rgba(255, 255, 255, 0.6); }
.plan__btn {
  width: 100%; padding: 13px; border-radius: 10px;
  font-size: 14px; font-weight: 600;
  transition: all 0.2s; margin-bottom: 26px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 0; cursor: pointer;
}
.plan .plan__btn { background: var(--ink); color: #fff; }
.plan .plan__btn:hover { background: var(--primary-deep); }
.plan--featured .plan__btn { background: #fff; color: var(--primary-deep); }
.plan--featured .plan__btn:hover { background: var(--success); color: #08290A; }
.plan__features {
  display: flex; flex-direction: column;
  gap: 11px; font-size: 14px;
  border-top: 1px solid var(--border);
  padding-top: 22px;
}
.plan--featured .plan__features { border-color: rgba(255, 255, 255, 0.15); }
.plan__features li { display: flex; align-items: flex-start; gap: 10px; line-height: 1.45; }
.plan__features svg { flex-shrink: 0; color: var(--success); margin-top: 2px; }
.plan--featured .plan__features svg { color: #9EE533; }
.plan__features b { font-weight: 600; }
.plan__features .muted { color: var(--muted); font-size: 12px; }
.plan--featured .plan__features .muted { color: rgba(255, 255, 255, 0.55); }
.plans__foot { text-align: center; margin-top: 40px; font-size: 14px; color: var(--muted); }
.plans__foot a { color: var(--primary-deep); font-weight: 500; border-bottom: 1px dashed var(--primary-200); }

/* TECH / FEATURES */
.tech {
  padding: 100px 0; background: var(--card);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.tech__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feat {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  transition: all 0.2s;
}
.feat:hover { border-color: var(--primary-200); background: var(--primary-50); }
.feat__ico {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--primary-50); border: 1px solid var(--primary-100);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); margin-bottom: 18px;
}
.feat__ico svg { width: 20px; height: 20px; }
.feat h3 { font-size: 17px; font-weight: 600; margin: 0 0 8px; letter-spacing: -0.01em; }
.feat p { font-size: 14px; color: var(--muted); margin: 0 0 16px; line-height: 1.55; }
.feat__tags { display: flex; flex-wrap: wrap; gap: 6px; }
.feat__tags span {
  font-family: var(--mono); font-size: 11px;
  padding: 4px 8px; background: var(--card);
  border: 1px solid var(--border); border-radius: 6px;
  color: var(--ink-2); font-weight: 500;
}

/* DOMAIN PRICING TABLE (homepage) */
.domains { padding: 100px 0; background: var(--bg); }
.domains__inner {
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 60px; align-items: center;
}
.domains__left h2 {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.05; letter-spacing: -0.028em;
  font-weight: 600; margin: 18px 0 16px;
}
.domains__left h2 em { font-style: normal; color: var(--primary); }
.domains__left p { font-size: 16px; color: var(--muted); margin: 0 0 24px; max-width: 460px; }
.domains__left ul { display: flex; flex-direction: column; gap: 10px; font-size: 14px; margin-bottom: 28px; }
.domains__left ul li { display: flex; gap: 10px; align-items: center; }
.domains__left ul svg { color: var(--success); flex-shrink: 0; }

.tlds {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.tlds__row {
  display: grid; grid-template-columns: 1fr 1fr 1fr auto;
  padding: 18px 22px; align-items: center; gap: 16px;
  border-bottom: 1px solid var(--border-soft);
  transition: background 0.15s;
}
.tlds__row:last-child { border-bottom: 0; }
.tlds__row:hover { background: var(--primary-50); }
.tlds__row--head {
  background: var(--bg-soft); font-family: var(--mono);
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--muted); font-weight: 500;
}
.tlds__row--head:hover { background: var(--bg-soft); }
.tlds__tld {
  font-size: 20px; font-weight: 600; font-family: var(--mono);
  color: var(--primary-deep); letter-spacing: -0.02em;
}
.tlds__price { font-size: 16px; font-weight: 600; }
.tlds__price .per { font-size: 12px; color: var(--muted); font-weight: 400; }
.tlds__note { font-size: 13px; color: var(--muted); }
.tlds__btn { font-size: 13px; color: var(--primary-deep); font-weight: 500; white-space: nowrap; }
.tlds__btn:hover { text-decoration: underline; }
.tlds__btn form { display: inline-flex; }
.tlds__btn form button { font-size: 13px; color: var(--primary-deep); font-weight: 500; white-space: nowrap; border: 0; cursor: pointer; }
.tlds__btn form button:hover { text-decoration: underline; }

/* FULL PRICE TABLE (/domeny/cennik) */
.price-table {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin: 40px 0;
}
.price-table table { width: 100%; border-collapse: collapse; }
.price-table thead th {
  background: var(--bg-soft);
  padding: 14px 18px; text-align: left;
  font-family: var(--mono); font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted);
  border-bottom: 1px solid var(--border);
}
.price-table tbody td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--border-soft);
  font-size: 14px;
}
.price-table tbody tr:last-child td { border-bottom: 0; }
.price-table tbody tr:hover td { background: var(--primary-50); }
.price-table .tld {
  font-family: var(--mono); font-weight: 700;
  color: var(--primary-deep); font-size: 16px; letter-spacing: -0.01em;
}
.price-table .price { font-weight: 600; color: var(--ink); }
.price-table .price small { color: var(--muted); font-weight: 400; }
.price-table .muted { color: var(--muted); }
.price-table .action { text-align: right; }

/* WHY */
.why { padding: 100px 0; background: var(--card); border-top: 1px solid var(--border-soft); }
.why__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why__item {
  padding: 28px 24px; border-radius: var(--radius-lg);
  border: 1px solid var(--border); background: var(--bg);
}
.why__ico {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, var(--primary) 0%, #4762FF 100%);
  display: flex; align-items: center; justify-content: center;
  color: #fff; margin-bottom: 18px;
  box-shadow: 0 6px 14px -4px rgba(20, 55, 255, 0.4);
}
.why__ico svg { width: 22px; height: 22px; }
.why__item h3 { font-size: 16px; font-weight: 600; margin: 0 0 8px; letter-spacing: -0.01em; }
.why__item p { font-size: 14px; color: var(--muted); line-height: 1.55; margin: 0; }

/* FAQ */
.faq { padding: 100px 0; background: var(--bg); }
.faq__list {
  max-width: 820px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 12px;
}
.faq details {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  transition: all 0.2s;
}
.faq details[open] { border-color: var(--primary-200); box-shadow: var(--shadow-sm); }
.faq summary {
  font-size: 16px; font-weight: 600;
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; font-size: 22px; color: var(--primary);
  font-weight: 400; transition: transform 0.2s;
}
.faq details[open] summary::after { content: '–'; }
.faq .faq__a { margin: 14px 0 0; font-size: 15px; color: var(--muted); line-height: 1.7; }
.faq .faq__a p { margin: 0 0 10px; }
.faq .faq__a p:last-child { margin-bottom: 0; }
.faq .faq__group-title {
  font-size: 14px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.04em; color: var(--muted);
  margin: 32px 0 10px 10px;
}
.faq .faq__group-title:first-child { margin-top: 0; }

/* COMPARISON TABLE (hosting plans + decision guide) */
.compare-wrap {
  overflow-x: auto;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow-sm);
}
.compare { width: 100%; border-collapse: collapse; min-width: 720px; }
.compare th, .compare td {
  padding: 14px 18px; text-align: left;
  border-bottom: 1px solid var(--border-soft);
  font-size: 14px;
}
.compare thead th {
  background: var(--bg-soft);
  font-family: var(--mono); font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted);
}
.compare thead th:not(:first-child) {
  text-align: center;
  font-size: 14px; font-family: var(--sans); text-transform: none;
  letter-spacing: -0.01em; color: var(--ink); font-weight: 600;
}
.compare tbody tr:last-child td { border-bottom: 0; }
.compare tbody td:not(:first-child) { text-align: center; }
.compare tbody td:first-child { font-weight: 500; color: var(--ink-2); }
.compare .tick { color: var(--success); }
.compare .cross { color: var(--muted-2); }
.compare .th-featured {
  position: relative;
  background: linear-gradient(180deg, rgba(20, 55, 255, 0.08) 0%, rgba(20, 55, 255, 0) 100%);
}
.compare tbody td.td-featured { background: rgba(20, 55, 255, 0.03); }
.compare tfoot td {
  padding: 20px 18px; text-align: center; border-bottom: 0;
  background: var(--bg-soft);
}

/* CTA */
.cta {
  padding: 100px 0; position: relative; overflow: hidden;
  background:
    radial-gradient(circle at 20% 30%, rgba(20, 55, 255, 0.4), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(128, 199, 0, 0.15), transparent 40%),
    #0B1A80;
  color: #fff;
}
.cta::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black 30%, transparent 80%);
  pointer-events: none;
}
.cta__inner { position: relative; text-align: center; max-width: 720px; margin: 0 auto; }
.cta h2 { font-size: clamp(32px, 4.5vw, 52px); line-height: 1.05; letter-spacing: -0.028em; margin: 0 0 18px; font-weight: 600; }
.cta h2 em { font-style: normal; color: #9EE533; }
.cta p { font-size: 17px; color: rgba(255, 255, 255, 0.7); margin: 0 0 32px; }
.cta .btn--primary { background: #fff; color: var(--primary-deep); }
.cta .btn--primary:hover { background: var(--success); color: #08290A; }
.cta .btn--secondary { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.3); }
.cta .btn--secondary:hover { background: rgba(255, 255, 255, 0.08); border-color: #fff; }

/* SPLIT SECTION (text+image or text+list) */
.split { padding: 80px 0; }
.split__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.split--reverse .split__inner > :first-child { order: 2; }
.split h2 {
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.1; letter-spacing: -0.02em;
  font-weight: 600; margin: 12px 0 16px;
}
.split h2 em { font-style: normal; color: var(--primary); }
.split p { font-size: 16px; line-height: 1.65; color: var(--muted); margin: 0 0 16px; }
.split ul {
  display: flex; flex-direction: column; gap: 12px;
  margin-top: 20px; font-size: 15px;
}
.split ul li { display: flex; gap: 12px; align-items: flex-start; }
.split ul svg { color: var(--success); flex-shrink: 0; margin-top: 4px; }

/* FEATURE GRID (for niche pages) */
.feature-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin: 40px 0;
}
.feature-card {
  padding: 24px; border: 1px solid var(--border);
  border-radius: var(--radius-lg); background: var(--card);
  transition: all 0.2s;
}
.feature-card:hover { border-color: var(--primary-200); box-shadow: var(--shadow-sm); }
.feature-card__ico {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--primary-50); color: var(--primary);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.feature-card h3 { font-size: 16px; font-weight: 600; margin: 0 0 8px; }
.feature-card p { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.55; }

/* STEPS */
.steps { counter-reset: step; display: flex; flex-direction: column; gap: 24px; margin: 32px 0; }
.step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px; align-items: flex-start;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--primary-deep);
  color: #fff; font-weight: 600; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 14px -4px rgba(0, 29, 192, 0.35);
}
.step h3 { font-size: 17px; font-weight: 600; margin: 8px 0 6px; }
.step p { font-size: 15px; color: var(--muted); margin: 0; line-height: 1.6; }

/* CART */
.cart { padding: 60px 0 100px; }
.cart__grid {
  display: grid; grid-template-columns: 1fr 360px;
  gap: 32px; align-items: start;
}
.cart__items {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.cart__item {
  display: grid; grid-template-columns: 1fr auto auto;
  gap: 20px; align-items: center;
  padding: 22px 24px;
  border-bottom: 1px solid var(--border-soft);
}
.cart__item:last-child { border-bottom: 0; }
.cart__item-name {
  font-weight: 600; color: var(--ink); font-size: 15px;
  margin-bottom: 4px;
}
.cart__item-meta { font-size: 13px; color: var(--muted); }
.cart__item-price { font-weight: 600; color: var(--ink); font-size: 15px; white-space: nowrap; }
.cart__item-remove {
  font-size: 12px; color: var(--muted);
  border: 1px solid var(--border); border-radius: 6px;
  padding: 6px 10px;
  transition: all 0.15s;
}
.cart__item-remove:hover { color: var(--danger); border-color: var(--danger); background: var(--danger-soft); }

.cart__empty {
  padding: 60px 24px; text-align: center;
  color: var(--muted);
}
.cart__empty svg { margin: 0 auto 16px; color: var(--muted-2); }
.cart__empty h2 { font-size: 20px; color: var(--ink); margin: 0 0 8px; font-weight: 600; }
.cart__empty p { margin: 0 0 22px; }

.cart__summary {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 24px;
  box-shadow: var(--shadow-sm);
  position: sticky; top: 90px;
}
.cart__summary h3 {
  font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--muted); font-weight: 600;
  margin: 0 0 16px;
}
.cart__summary-line {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 10px 0; font-size: 14px; color: var(--ink-2);
  border-bottom: 1px dashed var(--border-soft);
}
.cart__summary-line:last-of-type { border-bottom: 0; }
.cart__summary-total {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 16px 0 8px; margin-top: 8px;
  border-top: 1px solid var(--border);
  font-size: 18px; font-weight: 700; color: var(--ink);
}
.cart__summary .btn { width: 100%; margin-top: 16px; }

/* FOOTER */
footer {
  background: var(--card);
  border-top: 1px solid var(--border-soft);
  padding: 70px 0 30px;
}
.foot-top {
  display: grid;
  grid-template-columns: 1.3fr repeat(4, 1fr);
  gap: 48px; padding-bottom: 50px;
  border-bottom: 1px solid var(--border-soft);
}
.foot-brand p {
  font-size: 14px; color: var(--muted);
  max-width: 280px; margin: 16px 0 20px; line-height: 1.55;
}
.foot-brand .logo { margin-bottom: 0; }
.foot-brand__contact { font-size: 13px; color: var(--muted); line-height: 1.8; }
.foot-brand__contact b { color: var(--ink); font-weight: 600; }
.foot-col h4 {
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--ink-2); margin: 0 0 18px; font-weight: 600;
}
.foot-col li { padding: 5px 0; font-size: 14px; }
.foot-col li a { color: var(--muted); transition: color 0.15s; }
.foot-col li a:hover { color: var(--primary-deep); }
.foot-col li a .tag {
  font-family: var(--mono); font-size: 9px;
  padding: 2px 6px; background: var(--success-soft);
  color: #355605; border-radius: 4px;
  margin-left: 6px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.04em;
  vertical-align: middle;
}
.foot-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 30px; gap: 20px; font-size: 13px;
  color: var(--muted); flex-wrap: wrap;
}
.foot-bottom .links { display: flex; gap: 22px; }
.foot-bottom a:hover { color: var(--primary-deep); }
.foot-bottom .status-inline { display: inline-flex; align-items: center; gap: 8px; }
.foot-bottom .status-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 3px rgba(128, 199, 0, 0.2);
}

/* FORMS */
.form {
  display: flex; flex-direction: column; gap: 18px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px; box-shadow: var(--shadow-sm);
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__field { display: flex; flex-direction: column; gap: 6px; }
.form__field label {
  font-size: 13px; font-weight: 600; color: var(--ink-2);
}
.form__field input[type='text'],
.form__field input[type='email'],
.form__field input[type='tel'],
.form__field input[type='url'],
.form__field textarea,
.form__field select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  background: var(--bg);
  border-radius: 10px;
  font-size: 15px;
  color: var(--ink);
  transition: border-color 120ms, box-shadow 120ms;
}
.form__field input:focus,
.form__field textarea:focus,
.form__field select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(20, 55, 255, 0.12);
}
.form__field textarea { min-height: 140px; resize: vertical; font-family: inherit; }
.form__field small { font-size: 12px; color: var(--muted); }
.form__check {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: var(--muted); line-height: 1.5;
}
.form__check input[type='checkbox'] { margin-top: 3px; flex-shrink: 0; }
.form__check a { color: var(--primary); }
.form__foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.form__foot small { color: var(--muted); font-size: 12px; }
.form .error {
  color: var(--danger);
  font-size: 12px;
  margin-top: 4px;
}
@media (max-width: 680px) {
  .form__row { grid-template-columns: 1fr; }
  .form { padding: 24px; }
}

/* RESPONSIVE */
@media (max-width: 1080px) {
  .plans__grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .tech__grid { grid-template-columns: repeat(2, 1fr); }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .domains__inner { grid-template-columns: 1fr; gap: 40px; }
  .split__inner { grid-template-columns: 1fr; gap: 36px; }
  .split--reverse .split__inner > :first-child { order: 0; }
  .foot-top { grid-template-columns: 1fr 1fr; }
  .foot-brand { grid-column: 1 / -1; }
  .nav__menu { display: none; }
  .nav__toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 42px; height: 42px; border-radius: 8px;
    border: 1px solid var(--border); background: var(--card);
    color: var(--ink-2);
  }
  .cart__grid { grid-template-columns: 1fr; }
  .cart__summary { position: static; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .hero { padding: 50px 0 70px; }
  .page-hero { padding: 40px 0 28px; }
  .hero__badges { gap: 14px; font-size: 12px; }
  .domain-card { padding: 20px; margin-top: 40px; }
  .domain-form { flex-wrap: wrap; }
  .domain-form input { width: 100%; min-width: 0; }
  .domain-form select { flex: 1; padding: 10px 14px; border-left: 0; border-top: 1px solid var(--border); border-radius: 0; }
  .domain-form button[type='submit'] { padding: 12px 20px; }
  .domain-card__tlds { gap: 12px; font-size: 12px; }
  .tech__grid, .why__grid { grid-template-columns: 1fr; }
  .tlds__row { grid-template-columns: 1fr auto; row-gap: 6px; }
  .tlds__row .tlds__note, .tlds__row .tlds__btn { display: none; }
  .tlds__row--head { display: none; }
  .plans, .tech, .domains, .why, .faq, .cta, .split { padding: 60px 0; }
  .foot-top { grid-template-columns: 1fr; gap: 32px; }
  .foot-bottom { flex-direction: column; align-items: flex-start; }
  .nav__right .btn--ghost { display: none; }
  .domain-results__primary { flex-wrap: wrap; }
  .feature-grid { grid-template-columns: 1fr; }
  .cart__item { grid-template-columns: 1fr auto; gap: 12px; }
  .cart__item-remove { grid-column: 2; justify-self: end; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
