
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700;800&family=Barlow+Condensed:wght@600;700;800&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Keyweb palette (kept from screenshots — confirmed correct) */
  --kw-navy: #152B47;
  --kw-navy-dark: #0F2138;
  --kw-navy-deep: #08152A;
  --kw-red: #A8243E;
  --kw-red-dark: #8B1B30;
  --kw-red-light: #C13551;

  --text-900: #152B47;
  --text-700: #2C3E5C;
  --text-600: #4A5872;
  --text-500: #6B7891;
  --text-400: #97A0B5;

  --bg: #FFFFFF;
  --bg-soft: #F2F5F9;
  --bg-soft-2: #E8EDF3;
  --line: #DCE2EB;
  --line-2: #BFC8D5;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text-700);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

button, a { font-family: inherit; }
button { cursor: pointer; }

.ico { stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

/* ─────────────────────────────────────────────
   UTILITY BAR (top dark navy)
   ───────────────────────────────────────────── */
.utility-bar {
  background: var(--kw-navy);
  color: #fff;
  font-size: 12.5px;
  height: 40px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.utility-inner {
  max-width: 1440px; margin: 0 auto; padding: 0 32px;
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.utility-left, .utility-right { display: flex; align-items: center; gap: 22px; }
.utility-bar a, .utility-bar span {
  color: #fff;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
  transition: opacity 0.15s;
}
.utility-bar a:hover { opacity: 0.7; }
.utility-bar svg { opacity: 0.7; }
.utility-bar .pipe { color: rgba(255,255,255,0.2); margin: 0; }
.utility-bar .lang-active { font-weight: 700; }
.utility-bar .lang-inactive { opacity: 0.5; }

/* ─────────────────────────────────────────────
   HEADER (white, redesigned for proper spacing)
   ───────────────────────────────────────────── */
header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  height: 84px;
  position: sticky; top: 0; z-index: 50;
}
.header-inner {
  max-width: 1440px; margin: 0 auto; padding: 0 32px;
  height: 100%;
  display: flex; align-items: center;
  gap: 36px;
}

.logo {
  display: flex; align-items: center; gap: 11px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.logo-shield {
  width: 40px; height: 40px;
  flex-shrink: 0;
}
.logo-shield svg { display: block; width: 100%; height: 100%; }
.logo-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--kw-navy);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1;
}

header nav {
  display: flex; align-items: center;
  flex: 1; justify-content: center;
  gap: 0;
}
header nav a {
  color: var(--kw-navy);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 700;
  padding: 0 14px;
  height: 84px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.15s;
  display: inline-flex; align-items: center;
  white-space: nowrap;
  position: relative;
}
header nav a:hover { color: var(--kw-red); }
nav a::after {
  content: '';
  position: absolute; left: 50%; bottom: 24px;
  width: 0; height: 2px;
  background: var(--kw-red);
  transition: width 0.2s, left 0.2s;
}
header nav a:hover::after {
  width: calc(100% - 16px);
  left: 8px;
}

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

.btn-icon {
  background: transparent;
  color: var(--kw-navy);
  border: none;
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: background 0.15s;
}
.btn-icon:hover { background: var(--bg-soft); }

.btn-cta-header {
  background: var(--kw-red);
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 12px 24px;
  font-size: 12.5px; font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.15s;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 7px;
  white-space: nowrap;
}
.btn-cta-header:hover { background: var(--kw-red-dark); }

/* ─────────────────────────────────────────────
   HERO
   ───────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  background: var(--kw-navy-deep);
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(8, 21, 42, 0.95) 0%, rgba(8, 21, 42, 0.78) 50%, rgba(15, 33, 56, 0.65) 100%),
    radial-gradient(ellipse at 75% 50%,
      rgba(60, 90, 130, 0.4) 0%,
      rgba(20, 40, 70, 0.7) 40%,
      rgba(8, 21, 42, 0.95) 80%);
  z-index: 0;
}
.hero-bg::before {
  /* server rack silhouettes */
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 640' preserveAspectRatio='xMidYMid slice'><defs><linearGradient id='rack' x1='0%25' y1='0%25' x2='0%25' y2='100%25'><stop offset='0%25' stop-color='%23152B47' stop-opacity='0.45'/><stop offset='100%25' stop-color='%23000' stop-opacity='0.6'/></linearGradient><linearGradient id='floor' x1='0%25' y1='0%25' x2='0%25' y2='100%25'><stop offset='0%25' stop-color='%23000' stop-opacity='0.3'/><stop offset='100%25' stop-color='%23000' stop-opacity='0.85'/></linearGradient><filter id='glow'><feGaussianBlur stdDeviation='1.5'/></filter></defs><rect width='1440' height='640' fill='%23000' opacity='0.1'/><g opacity='0.85'><rect x='760' y='120' width='90' height='420' fill='url(%23rack)' rx='2'/><rect x='870' y='100' width='90' height='440' fill='url(%23rack)' rx='2'/><rect x='980' y='80' width='95' height='460' fill='url(%23rack)' rx='2'/><rect x='1095' y='100' width='90' height='440' fill='url(%23rack)' rx='2'/><rect x='1205' y='120' width='90' height='420' fill='url(%23rack)' rx='2'/><rect x='1315' y='140' width='85' height='400' fill='url(%23rack)' rx='2'/></g><g opacity='0.9'><rect x='765' y='140' width='80' height='3' fill='%23152B47'/><rect x='765' y='150' width='80' height='3' fill='%23152B47'/><rect x='765' y='160' width='80' height='3' fill='%23152B47'/><rect x='765' y='170' width='80' height='3' fill='%23152B47'/><rect x='765' y='185' width='80' height='3' fill='%23152B47'/><rect x='765' y='195' width='80' height='3' fill='%23152B47'/><rect x='765' y='205' width='80' height='3' fill='%23152B47'/><rect x='765' y='220' width='80' height='3' fill='%23152B47'/><rect x='765' y='235' width='80' height='3' fill='%23152B47'/><rect x='765' y='250' width='80' height='3' fill='%23152B47'/><rect x='875' y='120' width='80' height='3' fill='%23152B47'/><rect x='875' y='130' width='80' height='3' fill='%23152B47'/><rect x='875' y='140' width='80' height='3' fill='%23152B47'/><rect x='875' y='155' width='80' height='3' fill='%23152B47'/><rect x='875' y='170' width='80' height='3' fill='%23152B47'/><rect x='875' y='180' width='80' height='3' fill='%23152B47'/><rect x='875' y='195' width='80' height='3' fill='%23152B47'/><rect x='875' y='210' width='80' height='3' fill='%23152B47'/><rect x='875' y='225' width='80' height='3' fill='%23152B47'/><rect x='985' y='100' width='85' height='3' fill='%23152B47'/><rect x='985' y='115' width='85' height='3' fill='%23152B47'/><rect x='985' y='130' width='85' height='3' fill='%23152B47'/><rect x='985' y='145' width='85' height='3' fill='%23152B47'/><rect x='985' y='160' width='85' height='3' fill='%23152B47'/><rect x='985' y='175' width='85' height='3' fill='%23152B47'/><rect x='985' y='190' width='85' height='3' fill='%23152B47'/><rect x='985' y='205' width='85' height='3' fill='%23152B47'/><rect x='1100' y='120' width='80' height='3' fill='%23152B47'/><rect x='1100' y='135' width='80' height='3' fill='%23152B47'/><rect x='1100' y='150' width='80' height='3' fill='%23152B47'/><rect x='1100' y='165' width='80' height='3' fill='%23152B47'/><rect x='1100' y='180' width='80' height='3' fill='%23152B47'/><rect x='1100' y='195' width='80' height='3' fill='%23152B47'/><rect x='1100' y='210' width='80' height='3' fill='%23152B47'/><rect x='1210' y='140' width='80' height='3' fill='%23152B47'/><rect x='1210' y='155' width='80' height='3' fill='%23152B47'/><rect x='1210' y='170' width='80' height='3' fill='%23152B47'/><rect x='1210' y='185' width='80' height='3' fill='%23152B47'/><rect x='1210' y='200' width='80' height='3' fill='%23152B47'/></g><g filter='url(%23glow)'><circle cx='770' cy='148' r='1.5' fill='%23A8243E'/><circle cx='775' cy='148' r='1.5' fill='%2300C853'/><circle cx='780' cy='148' r='1.5' fill='%23FFC107'/><circle cx='790' cy='148' r='1.5' fill='%2300C853'/><circle cx='770' cy='168' r='1.5' fill='%2300C853'/><circle cx='775' cy='168' r='1.5' fill='%2300C853'/><circle cx='780' cy='168' r='1.5' fill='%23A8243E'/><circle cx='770' cy='198' r='1.5' fill='%23FFC107'/><circle cx='775' cy='198' r='1.5' fill='%2300C853'/><circle cx='780' cy='198' r='1.5' fill='%2300C853'/><circle cx='770' cy='228' r='1.5' fill='%2300C853'/><circle cx='775' cy='228' r='1.5' fill='%23A8243E'/><circle cx='780' cy='228' r='1.5' fill='%2300C853'/><circle cx='880' cy='128' r='1.5' fill='%2300C853'/><circle cx='885' cy='128' r='1.5' fill='%23FFC107'/><circle cx='890' cy='128' r='1.5' fill='%2300C853'/><circle cx='880' cy='158' r='1.5' fill='%23A8243E'/><circle cx='885' cy='158' r='1.5' fill='%2300C853'/><circle cx='880' cy='188' r='1.5' fill='%2300C853'/><circle cx='885' cy='188' r='1.5' fill='%2300C853'/><circle cx='890' cy='188' r='1.5' fill='%23FFC107'/><circle cx='990' cy='108' r='1.5' fill='%2300C853'/><circle cx='995' cy='108' r='1.5' fill='%2300C853'/><circle cx='1000' cy='108' r='1.5' fill='%23A8243E'/><circle cx='990' cy='148' r='1.5' fill='%23FFC107'/><circle cx='995' cy='148' r='1.5' fill='%2300C853'/><circle cx='990' cy='178' r='1.5' fill='%2300C853'/><circle cx='995' cy='178' r='1.5' fill='%2300C853'/><circle cx='1000' cy='178' r='1.5' fill='%2300C853'/><circle cx='1105' cy='128' r='1.5' fill='%2300C853'/><circle cx='1110' cy='128' r='1.5' fill='%23A8243E'/><circle cx='1115' cy='128' r='1.5' fill='%2300C853'/><circle cx='1105' cy='168' r='1.5' fill='%2300C853'/><circle cx='1110' cy='168' r='1.5' fill='%2300C853'/><circle cx='1115' cy='168' r='1.5' fill='%23FFC107'/><circle cx='1105' cy='198' r='1.5' fill='%23A8243E'/><circle cx='1110' cy='198' r='1.5' fill='%2300C853'/><circle cx='1215' cy='148' r='1.5' fill='%2300C853'/><circle cx='1220' cy='148' r='1.5' fill='%2300C853'/><circle cx='1215' cy='188' r='1.5' fill='%23FFC107'/><circle cx='1220' cy='188' r='1.5' fill='%2300C853'/></g><rect y='540' width='1440' height='100' fill='url(%23floor)'/><g opacity='0.4'><line x1='760' y1='540' x2='1320' y2='540' stroke='%23152B47' stroke-width='0.5'/></g></svg>");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  opacity: 0.85;
}

.hero-inner {
  max-width: 1440px; margin: 0 auto;
  padding: 100px 32px 110px;
  position: relative; z-index: 1;
  min-height: 640px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.hero-content { max-width: 760px; }

.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.4rem, 4.8vw, 4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.05;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.hero-sub {
  font-size: 21px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 32px;
  max-width: 640px;
  line-height: 1.4;
}

.hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.btn-hero-primary {
  background: var(--kw-red);
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 18px 40px;
  font-size: 14.5px; font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 10px;
  transition: background 0.15s, transform 0.15s;
  text-decoration: none;
  box-shadow: 0 6px 20px -4px rgba(168, 36, 62, 0.5);
}
.btn-hero-primary:hover { background: var(--kw-red-dark); transform: translateY(-2px); }

/* HERO right side badge stack */
.hero-badges {
  display: flex; flex-direction: column; gap: 24px;
  align-items: flex-end;
  flex-shrink: 0;
  padding-top: 20px;
}

.hero-badge-eco {
  background: linear-gradient(180deg, #2E8B3D 0%, #206F2C 100%);
  border-radius: 14px;
  padding: 22px 18px 18px;
  width: 156px;
  text-align: center;
  color: #fff;
  position: relative;
  box-shadow: 0 12px 32px -8px rgba(0,0,0,0.4);
}
.hero-badge-eco::before {
  content: '';
  position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%);
  width: 30px; height: 18px;
  background: #206F2C;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.hero-badge-eco-top {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
  opacity: 0.95;
  line-height: 1.25;
}
.hero-badge-eco-circle {
  width: 60px; height: 60px;
  margin: 6px auto 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  color: #2E8B3D;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.hero-badge-eco-circle::before {
  content: '';
  position: absolute; inset: -6px;
  border: 1.5px dashed rgba(255,255,255,0.5);
  border-radius: 50%;
}
.hero-badge-eco-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-top: 6px;
  text-transform: uppercase;
}
.hero-badge-eco-by {
  font-size: 8.5px;
  opacity: 0.75;
  letter-spacing: 0.1em;
  margin-top: 1px;
}

.hero-badge-migration {
  background: var(--kw-red);
  border-radius: 14px;
  padding: 20px 18px;
  width: 200px;
  text-align: center;
  color: #fff;
  box-shadow: 0 12px 32px -8px rgba(0,0,0,0.4);
}
.hero-badge-migration-icon {
  height: 34px;
  margin-bottom: 8px;
  display: flex; align-items: center; justify-content: center;
}
.hero-badge-migration-free {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  background: rgba(255,255,255,0.15);
  padding: 4px 0;
  margin: 8px -18px;
  text-transform: uppercase;
}
.hero-badge-migration-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-top: 4px;
  line-height: 1;
}
.hero-badge-migration-sub {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 6px;
  opacity: 0.9;
}

/* ─────────────────────────────────────────────
   SECTION HEADERS & GENERAL
   ───────────────────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 920px;
  margin: 0 auto 56px;
}
.section-h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 700;
  color: var(--kw-navy);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.1;
  margin-bottom: 18px;
}
.section-h2 .red { color: var(--kw-red); }

.section-sub {
  font-size: 17px;
  color: var(--text-600);
  line-height: 1.65;
  max-width: 760px;
  margin: 0 auto;
}
.section-sub b { color: var(--kw-navy); font-weight: 700; }

.section-inner { max-width: 1440px; margin: 0 auto; padding: 0 32px; }

/* ─────────────────────────────────────────────
   INTRO
   ───────────────────────────────────────────── */
.intro-section {
  background: #fff;
  padding: 80px 0;
  border-bottom: 1px solid var(--line);
}
.intro-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}
.intro-h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  font-weight: 700;
  color: var(--kw-navy);
  text-transform: uppercase;
  letter-spacing: 0.005em;
  line-height: 1.2;
  margin-bottom: 24px;
}
.intro-text {
  font-size: 17px;
  color: var(--text-700);
  line-height: 1.75;
  max-width: 920px;
  margin: 0 auto;
}
.intro-text b { color: var(--kw-navy); font-weight: 700; }

/* ─────────────────────────────────────────────
   PRICING (4 plans)
   ───────────────────────────────────────────── */
.pricing-section {
  background: var(--bg-soft);
  padding: 100px 0;
  border-bottom: 1px solid var(--line);
}
.pricing-grid {
  max-width: 1440px; margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.plan {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: visible;
  display: flex; flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.plan:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px -10px rgba(21, 43, 71, 0.18);
}
.plan-best {
  border: 2px solid var(--kw-red);
  box-shadow: 0 16px 36px -10px rgba(168, 36, 62, 0.25);
}

.plan-tag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--kw-red);
  color: #fff;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  white-space: nowrap;
  z-index: 1;
}

.plan-header {
  background: var(--kw-navy);
  color: #fff;
  padding: 28px 24px 22px;
  text-align: center;
  border-radius: 11px 11px 0 0;
  position: relative;
}
.plan-best .plan-header { background: var(--kw-red); border-radius: 10px 10px 0 0; }

.plan-icon {
  width: 56px; height: 56px;
  margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  opacity: 0.95;
}

.plan-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 6px;
}
.plan-tagline {
  font-size: 13px;
  font-style: italic;
  opacity: 0.85;
}

.plan-body {
  padding: 26px 22px;
  flex: 1;
  display: flex; flex-direction: column;
}

.plan-feats {
  list-style: none;
  display: flex; flex-direction: column; gap: 8px;
  margin-bottom: 22px;
  flex: 1;
}
.plan-feats li {
  font-size: 13.5px;
  color: var(--text-700);
  display: flex; align-items: flex-start; gap: 9px;
  line-height: 1.5;
}
.plan-feats li::before {
  content: '✓';
  color: var(--kw-red);
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}
.plan-feats li b { color: var(--kw-navy); font-weight: 700; }

.plan-recommend {
  background: var(--bg-soft);
  border-radius: 8px;
  padding: 14px 16px;
  margin-bottom: 22px;
}
.plan-recommend-title {
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--kw-navy);
  margin-bottom: 8px;
}
.plan-recommend ul {
  list-style: none;
  display: flex; flex-direction: column; gap: 6px;
}
.plan-recommend li {
  font-size: 12.5px;
  color: var(--text-700);
  line-height: 1.5;
  padding-left: 12px;
  position: relative;
}
.plan-recommend li::before {
  content: '–';
  position: absolute; left: 0;
  color: var(--kw-red);
  font-weight: 700;
}

.plan-price-block {
  text-align: center;
  margin-bottom: 18px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.plan-price-from {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-500);
  margin-bottom: 6px;
}
.plan-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 38px; font-weight: 800;
  color: var(--kw-navy);
  letter-spacing: 0.01em;
  line-height: 1;
}
.plan-price .unit { font-size: 15px; font-weight: 600; color: var(--text-600); }
.plan-price-sub { font-size: 11.5px; color: var(--text-500); margin-top: 6px; letter-spacing: 0.04em; text-transform: uppercase; }

.plan-cta {
  width: 100%;
  background: var(--kw-red);
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 14px 0;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s;
}
.plan-cta:hover { background: var(--kw-red-dark); }

/* ─────────────────────────────────────────────
   DOMAIN SECTION
   ───────────────────────────────────────────── */
.domain-section {
  background: var(--kw-navy);
  padding: 100px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.domain-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 15% 30%, rgba(168, 36, 62, 0.18) 0%, transparent 40%),
    radial-gradient(circle at 85% 70%, rgba(8, 21, 42, 0.7) 0%, transparent 50%);
}
.domain-grid {
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 64px; align-items: center;
  position: relative; z-index: 1;
}
.domain-content h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.15;
  margin-bottom: 22px;
}
.domain-content h2 .red { color: #C13551; }

.domain-content p {
  font-size: 16px;
  color: rgba(255,255,255,0.9);
  line-height: 1.75;
  margin-bottom: 14px;
}
.domain-content p b { color: #fff; font-weight: 700; }

.domain-form-card {
  background: #fff;
  border-radius: 12px;
  padding: 36px;
  box-shadow: 0 24px 50px -12px rgba(0,0,0,0.5);
}
.domain-form-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--kw-navy);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 8px;
}
.domain-form-sub {
  font-size: 14px;
  color: var(--text-600);
  margin-bottom: 22px;
}
.domain-input-wrap {
  display: flex;
  border: 2px solid var(--line);
  border-radius: 100px;
  overflow: hidden;
  transition: border-color 0.15s;
  margin-bottom: 18px;
}
.domain-input-wrap:focus-within { border-color: var(--kw-red); }
.domain-input {
  flex: 1;
  padding: 14px 22px;
  border: none;
  font-size: 15px;
  font-family: inherit;
  font-weight: 600;
  color: var(--kw-navy);
  outline: none;
  background: transparent;
}
.domain-input::placeholder { color: var(--text-400); font-weight: 500; }
.domain-search-btn {
  background: var(--kw-red);
  color: #fff;
  border: none;
  padding: 0 28px;
  font-size: 12.5px; font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background 0.15s;
}
.domain-search-btn:hover { background: var(--kw-red-dark); }

.domain-exts-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-500);
  margin-bottom: 12px;
}
.domain-exts {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.ext-pill {
  background: var(--bg-soft);
  color: var(--kw-navy);
  border-radius: 4px;
  padding: 6px 12px;
  font-size: 13px; font-weight: 700;
  font-family: 'Barlow', monospace;
}

/* ─────────────────────────────────────────────
   STEPS — "Ilyen egyszerűen lesz saját domained..."
   ───────────────────────────────────────────── */
.steps-section {
  background: #fff;
  padding: 100px 0;
  border-bottom: 1px solid var(--line);
}
.steps-grid {
  max-width: 1280px; margin: 56px auto 0; padding: 0 32px;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px; left: 18%; right: 18%;
  height: 2px;
  border-top: 2px dashed var(--line-2);
  z-index: 0;
}
.step-card {
  background: #fff;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 16px;
}
.step-num {
  width: 60px; height: 60px;
  margin: 0 auto 24px;
  background: var(--kw-red);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px; font-weight: 800;
  border: 6px solid #fff;
  box-shadow: 0 6px 18px -4px rgba(168, 36, 62, 0.4);
}
.step-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px; font-weight: 800;
  color: var(--kw-navy);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 14px;
}
.step-desc {
  font-size: 15px;
  color: var(--text-700);
  line-height: 1.7;
}
.step-desc b { color: var(--kw-navy); font-weight: 700; }

.steps-footnote {
  max-width: 880px;
  margin: 56px auto 0;
  text-align: center;
  font-size: 14.5px;
  color: var(--text-600);
  line-height: 1.7;
  padding: 0 32px;
}

/* ─────────────────────────────────────────────
   ONLINE SECTION — "Legyen weboldalad percek alatt"
   ───────────────────────────────────────────── */
.online-section {
  background: var(--bg-soft);
  padding: 100px 0;
  border-bottom: 1px solid var(--line);
}
.online-grid {
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 64px; align-items: center;
}
.online-content h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 700;
  color: var(--kw-navy);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.15;
  margin-bottom: 14px;
}
.online-content h2 .red { color: var(--kw-red); }
.online-content > p {
  font-size: 16px;
  color: var(--text-700);
  line-height: 1.7;
  margin-bottom: 14px;
}
.online-content > p b { color: var(--kw-navy); font-weight: 700; }
.online-needs {
  list-style: none;
  display: flex; flex-direction: column; gap: 12px;
  margin: 20px 0 28px;
}
.online-needs li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px;
  color: var(--text-700);
  line-height: 1.55;
}
.online-needs li svg {
  width: 22px; height: 22px;
  color: var(--kw-red);
  flex-shrink: 0;
  margin-top: 1px;
  stroke-width: 2.5;
}
.online-needs li b { color: var(--kw-navy); font-weight: 700; }

.online-emphasis {
  background: #fff;
  border-left: 4px solid var(--kw-red);
  padding: 16px 20px;
  margin: 20px 0;
  font-size: 15.5px;
  color: var(--kw-navy);
  font-weight: 600;
  line-height: 1.55;
  border-radius: 0 6px 6px 0;
}

.online-image {
  border-radius: 12px;
  height: 460px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(168, 36, 62, 0.18) 0%, transparent 50%),
    linear-gradient(135deg, #1A2B45 0%, #0F2138 100%);
  box-shadow: 0 16px 36px -8px rgba(21, 43, 71, 0.25);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.online-image-svg {
  width: 100%; height: 100%;
  max-width: 480px; max-height: 460px;
  display: block;
}

/* ─────────────────────────────────────────────
   FEATURES (6) — "Ezt kapod, ha a NetMastersshez költözöl..."
   ───────────────────────────────────────────── */
.features-section {
  background: #fff;
  padding: 100px 0;
  border-bottom: 1px solid var(--line);
}
.features-grid {
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.feat-card {
  text-align: center;
  padding: 16px;
}
.feat-icon-wrap {
  width: 80px; height: 80px;
  margin: 0 auto 22px;
  background: var(--bg-soft);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--kw-red);
  position: relative;
}
.feat-icon-wrap::before {
  content: '';
  position: absolute; inset: -6px;
  border: 2px dashed var(--bg-soft-2);
  border-radius: 50%;
}
.feat-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--kw-navy);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.2;
  margin-bottom: 12px;
}
.feat-desc {
  font-size: 15px;
  color: var(--text-700);
  line-height: 1.65;
}
.feat-desc b { color: var(--kw-navy); font-weight: 700; }

/* ─────────────────────────────────────────────
   STATS — "Nézzük a számokat"
   ───────────────────────────────────────────── */
.stats-section {
  background: linear-gradient(135deg, var(--kw-navy-deep) 0%, var(--kw-navy) 100%);
  padding: 100px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 30% 30%, rgba(168, 36, 62, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 70% 70%, rgba(46, 139, 61, 0.08) 0%, transparent 40%);
}
.stats-section .section-h2 { color: #fff; position: relative; z-index: 1; }
.stats-section .section-sub { color: rgba(255,255,255,0.8); position: relative; z-index: 1; }
.stats-section .section-sub b { color: #fff; }

.stats-grid {
  max-width: 1280px; margin: 56px auto 0; padding: 0 32px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative; z-index: 1;
}
.stat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 28px 22px;
  text-align: center;
  transition: background 0.2s, border-color 0.2s;
}
.stat-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(168, 36, 62, 0.4);
}
.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 44px; font-weight: 800;
  color: #C13551;
  letter-spacing: 0.01em;
  line-height: 1;
  margin-bottom: 10px;
}
.stat-num-sm { font-size: 22px; opacity: 0.9; }
.stat-lbl {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  line-height: 1.45;
}

/* ─────────────────────────────────────────────
   TESTIMONIALS
   ───────────────────────────────────────────── */
.testi-section {
  background: var(--bg-soft);
  padding: 100px 0;
  border-bottom: 1px solid var(--line);
}
.testi-grid {
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 32px 28px;
  display: flex; flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.testi-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px -10px rgba(21, 43, 71, 0.15);
}

.testi-quote-mark {
  font-family: Georgia, serif;
  font-size: 64px;
  line-height: 0.6;
  color: var(--kw-red);
  opacity: 0.4;
  margin-bottom: 4px;
  height: 30px;
}

.testi-text {
  font-size: 15.5px;
  color: var(--text-700);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 24px;
  flex: 1;
}
.testi-text b { color: var(--kw-navy); font-style: normal; font-weight: 700; }

.testi-author {
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex; align-items: center; gap: 14px;
}
.testi-av {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px; font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.testi-name { font-size: 15px; font-weight: 800; color: var(--kw-navy); }
.testi-role { font-size: 12.5px; color: var(--text-500); margin-top: 2px; }

/* ─────────────────────────────────────────────
   CONTACT CTA
   ───────────────────────────────────────────── */
.contact-section {
  background: #fff;
  padding: 100px 0;
  border-bottom: 1px solid var(--line);
}
.contact-inner {
  max-width: 1080px; margin: 0 auto; padding: 0 32px;
  text-align: center;
}
.contact-inner h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 700;
  color: var(--kw-navy);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.15;
  margin-bottom: 18px;
}
.contact-inner h2 .red { color: var(--kw-red); }
.contact-inner > p {
  font-size: 17px;
  color: var(--text-600);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.contact-options {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}
.contact-option {
  text-align: center;
  padding: 28px 20px;
  background: var(--bg-soft);
  border-radius: 12px;
  transition: background 0.2s;
}
.contact-option:hover { background: var(--bg-soft-2); }
.contact-option-icon {
  width: 60px; height: 60px;
  margin: 0 auto 14px;
  border: 2px solid var(--kw-red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--kw-red);
  background: #fff;
}
.contact-option-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--kw-navy);
  margin-bottom: 6px;
}
.contact-option-sub {
  font-size: 13.5px;
  color: var(--text-600);
  margin-bottom: 12px;
}
.contact-option-value {
  font-size: 16px;
  font-weight: 700;
  color: var(--kw-navy);
}
.contact-option-value a {
  color: var(--kw-navy);
  text-decoration: none;
  border-bottom: 2px solid var(--kw-red);
  padding-bottom: 1px;
}

.btn-contact-cta {
  background: var(--kw-red);
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 18px 44px;
  font-size: 14.5px; font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 10px;
  transition: background 0.15s, transform 0.15s;
  text-decoration: none;
  box-shadow: 0 6px 20px -4px rgba(168, 36, 62, 0.5);
}
.btn-contact-cta:hover { background: var(--kw-red-dark); transform: translateY(-2px); }

/* ─────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────── */
footer {
  background: var(--kw-navy);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 0;
}
.footer-top {
  max-width: 1440px; margin: 0 auto; padding: 0 32px 48px;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo .logo-text { color: #fff; }

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin: 18px 0 22px;
  max-width: 360px;
}
.footer-contact {
  display: flex; flex-direction: column; gap: 10px;
  font-size: 14px;
}
.footer-contact a, .footer-contact span {
  color: rgba(255,255,255,0.85); text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px;
  transition: color 0.15s;
}
.footer-contact a:hover { color: var(--kw-red-light); }
.footer-contact svg { color: var(--kw-red-light); width: 16px; height: 16px; }

.footer-trust-tags {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-top: 24px;
}
.trust-tag {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 11px;
  color: rgba(255,255,255,0.85);
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.trust-tag svg { color: var(--kw-red-light); width: 12px; height: 12px; }

.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--kw-red-light); }

.footer-bottom {
  max-width: 1440px; margin: 0 auto;
  padding: 22px 32px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 14px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.5);
}
.footer-bottom-links { display: flex; gap: 18px; }
.footer-bottom a { color: rgba(255,255,255,0.65); text-decoration: none; }
.footer-bottom a:hover { color: var(--kw-red-light); }

/* ─────────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────────── */
@media (max-width: 1280px) {
  nav a { font-size: 12.5px; padding: 0 9px; }
  .footer-top { grid-template-columns: 1.6fr 1fr 1fr 1fr; }
  .footer-col:nth-child(5) { display: none; }
}
@media (max-width: 1100px) {
  nav a { font-size: 12px; padding: 0 7px; letter-spacing: 0.03em; }
}
@media (max-width: 980px) {
  header nav { display: none; }
  .utility-bar { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-badges { flex-direction: row; flex-wrap: wrap; justify-content: center; padding-top: 0; padding-bottom: 20px; }
  .pricing-grid, .features-grid, .stats-grid, .testi-grid, .contact-options, .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .domain-grid, .online-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .pricing-grid, .features-grid, .stats-grid, .testi-grid, .contact-options, .steps-grid, .footer-top { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────────
   SUBPAGE HERO (smaller, breadcrumb-style)
   ───────────────────────────────────────────── */
.page-hero {
  background: var(--kw-navy-deep);
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--kw-red);
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(8, 21, 42, 0.92) 0%, rgba(8, 21, 42, 0.7) 50%, rgba(15, 33, 56, 0.6) 100%),
    radial-gradient(ellipse at 80% 50%, rgba(60, 90, 130, 0.45) 0%, transparent 60%);
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle 1px at 15% 30%, rgba(255,180,80,0.4) 0%, transparent 100%),
    radial-gradient(circle 1px at 25% 70%, rgba(120,200,255,0.35) 0%, transparent 100%),
    radial-gradient(circle 1px at 75% 25%, rgba(255,180,80,0.35) 0%, transparent 100%),
    radial-gradient(circle 1px at 85% 60%, rgba(120,200,255,0.3) 0%, transparent 100%),
    repeating-linear-gradient(90deg, transparent 0, transparent 80px, rgba(255,255,255,0.012) 80px, rgba(255,255,255,0.012) 81px);
  opacity: 0.6;
}
.page-hero-inner {
  max-width: 1440px; margin: 0 auto; padding: 0 32px;
  position: relative; z-index: 1;
}
.breadcrumb {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 18px;
}
.breadcrumb a { color: rgba(255,255,255,0.7); text-decoration: none; }
.breadcrumb a:hover { color: var(--kw-red-light); }
.breadcrumb-sep { opacity: 0.4; }
.breadcrumb-current { color: var(--kw-red-light); }

.page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin-bottom: 18px;
  max-width: 900px;
}
.page-hero h1 .red { color: #C13551; }

.page-hero-sub {
  font-size: 19px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  max-width: 720px;
  line-height: 1.55;
}

/* ─────────────────────────────────────────────
   GENERIC CONTENT BLOCKS for subpages
   ───────────────────────────────────────────── */
.content-section {
  padding: 80px 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.content-section.alt {
  background: var(--bg-soft);
}

.content-section.dark {
  background: var(--kw-navy);
  color: #fff;
}

.content-section.dark .section-h2 { color: #fff; }
.content-section.dark .section-h2 .red { color: #C13551; }
.content-section.dark .section-sub { color: rgba(255,255,255,0.85); }
.content-section.dark .section-sub b { color: #fff; }

.content-inner {
  max-width: 1080px; margin: 0 auto; padding: 0 32px;
}
.content-inner-wide { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

.content-h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  font-weight: 700;
  color: var(--kw-navy);
  text-transform: uppercase;
  letter-spacing: 0.005em;
  line-height: 1.2;
  margin-bottom: 24px;
}
.content-h2 .red { color: var(--kw-red); }
.content-h2.center { text-align: center; }

.content-h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  font-weight: 700;
  color: var(--kw-navy);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.25;
  margin-bottom: 14px;
}
.content-h3 .red { color: var(--kw-red); }

.content-body p {
  font-size: 16px;
  color: var(--text-700);
  line-height: 1.75;
  margin-bottom: 16px;
}
.content-body p b { color: var(--kw-navy); font-weight: 700; }
.content-body p:last-child { margin-bottom: 0; }

.content-body ul.bullet-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 12px;
  margin: 16px 0 24px;
}
.content-body ul.bullet-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15.5px;
  color: var(--text-700);
  line-height: 1.6;
}
.content-body ul.bullet-list li svg {
  width: 20px; height: 20px;
  color: var(--kw-red);
  flex-shrink: 0;
  margin-top: 2px;
  stroke-width: 2.5;
}
.content-body ul.bullet-list li b { color: var(--kw-navy); font-weight: 700; }

.content-grid-2 {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
}
.content-grid-2.flip { direction: rtl; }
.content-grid-2.flip > * { direction: ltr; }

.content-image {
  border-radius: 12px;
  height: 360px;
  background: linear-gradient(135deg, var(--kw-navy) 0%, var(--kw-navy-dark) 100%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  position: relative;
  box-shadow: 0 16px 36px -8px rgba(21, 43, 71, 0.18);
}
.content-image::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: 30px 30px;
  opacity: 0.7;
}
.content-image-icon {
  width: 110px; height: 110px;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.18);
  border-radius: 24px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  position: relative; z-index: 1;
}
.content-image-icon svg { width: 56px; height: 56px; }

.cta-row {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-top: 24px;
}
.btn-page-primary {
  background: var(--kw-red);
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 15px 32px;
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 9px;
  transition: background 0.15s, transform 0.15s;
  text-decoration: none;
  box-shadow: 0 6px 18px -4px rgba(168, 36, 62, 0.4);
}
.btn-page-primary:hover { background: var(--kw-red-dark); transform: translateY(-2px); }
.btn-page-secondary {
  background: #fff;
  color: var(--kw-navy);
  border: 2px solid var(--kw-navy);
  border-radius: 100px;
  padding: 13px 30px;
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 9px;
  transition: all 0.15s;
  text-decoration: none;
}
.btn-page-secondary:hover { background: var(--kw-navy); color: #fff; }

/* Card grid (3-column for things like benefits, features, etc.) */
.card-grid-3 {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
}
.card-grid-4 {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  max-width: 1440px; margin: 0 auto; padding: 0 32px;
}
.card-grid-2 {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1080px; margin: 0 auto; padding: 0 32px;
}

.feature-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 32px 28px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px -10px rgba(21, 43, 71, 0.15);
}
.feature-card-icon {
  width: 64px; height: 64px;
  margin: 0 auto 20px;
  background: var(--bg-soft);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--kw-red);
}
.feature-card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 19px;
  font-weight: 800;
  color: var(--kw-navy);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 12px;
}
.feature-card-desc {
  font-size: 14.5px;
  color: var(--text-600);
  line-height: 1.65;
}
.feature-card-desc b { color: var(--kw-navy); font-weight: 700; }

/* FAQ */
.faq-list {
  max-width: 1280px; margin: 40px auto 0; padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  align-items: start;
}
@media (max-width: 760px) {
  .faq-list { grid-template-columns: 1fr; }
}
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}
.faq-q {
  padding: 18px 24px;
  cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--kw-navy);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  list-style: none;
  background: var(--bg-soft);
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+';
  font-family: monospace;
  font-size: 24px;
  color: var(--kw-red);
  font-weight: 400;
  transition: transform 0.2s;
}
details[open] .faq-q::after { transform: rotate(45deg); }
.faq-a {
  padding: 18px 24px 22px;
  font-size: 15px;
  color: var(--text-700);
  line-height: 1.7;
}
.faq-a b { color: var(--kw-navy); font-weight: 700; }
.faq-a ul { margin: 12px 0; padding-left: 20px; }
.faq-a ul li { margin-bottom: 6px; }

@media (max-width: 980px) {
  .content-grid-2 { grid-template-columns: 1fr; }
  .card-grid-3, .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .card-grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .card-grid-3, .card-grid-4 { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────────
   BACK TO TOP BUTTON
   ───────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 52px; height: 52px;
  background: var(--kw-red);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 22px -4px rgba(168, 36, 62, 0.55);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s, transform 0.25s, visibility 0s linear 0.25s, background 0.15s;
  z-index: 60;
  text-decoration: none;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0s;
}
.back-to-top:hover { background: var(--kw-red-dark); }
.back-to-top svg { width: 20px; height: 20px; stroke-width: 2.5; }

/* ─────────────────────────────────────────────
   PAGE HERO with illustration (2-column)
   ───────────────────────────────────────────── */
.page-hero-inner.with-illustration {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
  min-height: 380px;
}
.page-hero-illustration {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  max-height: 420px;
}
.page-hero-illustration svg {
  width: 100%;
  height: auto;
  max-width: 460px;
  max-height: 100%;
  display: block;
  filter: drop-shadow(0 12px 28px rgba(0,0,0,0.4));
}
@media (max-width: 980px) {
  .page-hero-inner.with-illustration {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .page-hero-illustration {
    max-height: 280px;
    padding: 0 0 12px;
    margin-bottom: 8px;
    order: -1;
  }
  .page-hero-illustration svg { max-width: 320px; max-height: 260px; }
  .page-hero-text { padding-top: 12px; }
}
@media (max-width: 600px) {
  .page-hero-illustration { display: none; }
}

/* ─── PAYMENT & PARTNER BADGES (footer) ─── */
.payment-strip,
.partners-strip {
  max-width: 1440px;
  margin: 0 auto;
  padding: 28px 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.partners-strip {
  padding-top: 22px;
  padding-bottom: 22px;
}
.payment-strip-label,
.partners-strip-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
  flex-shrink: 0;
}
.payment-logos,
.partners-logos {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.payment-logo,
.partner-logo {
  background: #fff;
  height: 40px;
  padding: 6px 14px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s, box-shadow 0.15s;
  text-decoration: none;
}
.payment-logo:hover,
.partner-logo:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px -6px rgba(0,0,0,0.4);
}
.payment-logo img,
.partner-logo img {
  display: block;
  height: 24px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}
.partner-logo img {
  height: 28px;
  max-width: 150px;
}
/* SimplePay needs wider container due to logo aspect ratio + subline */
.payment-logo--simplepay {
  padding: 4px 14px;
}
.payment-logo--simplepay img {
  height: 32px;
  max-width: 170px;
}

.util-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: rgba(255,255,255,0.85) !important;
  opacity: 1;
  transition: opacity 0.15s, color 0.15s, transform 0.15s;
}
.util-social:hover {
  transform: translateY(-1px);
}
.util-social svg { width: 17px !important; height: 17px !important; }
.util-social:hover {
  opacity: 1;
  color: #fff !important;
}
.util-social svg { opacity: 1 !important; }

.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.75) !important;
  text-decoration: none;
  transition: all 0.15s;
}
.footer-social:hover {
  background: var(--kw-red);
  border-color: var(--kw-red);
  color: #fff !important;
  transform: translateY(-2px);
}

.logo-img {
  height: 36px;
  width: auto;
  display: block;
}

/* ─── MOBILE HAMBURGER MENU ─── */
.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: auto;
  z-index: 60;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--kw-navy);
  border-radius: 2px;
  position: relative;
  transition: transform 0.2s, opacity 0.2s;
}
.hamburger span::before,
.hamburger span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 24px;
  height: 2.5px;
  background: var(--kw-navy);
  border-radius: 2px;
  transition: transform 0.2s;
}
.hamburger span::before { top: -8px; }
.hamburger span::after { top: 8px; }
.hamburger.is-open span { background: transparent; }
.hamburger.is-open span::before { transform: translateY(8px) rotate(45deg); }
.hamburger.is-open span::after { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(8, 21, 42, 0.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0s linear 0.25s;
  z-index: 55;
}
.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.25s;
}
.mobile-menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  height: 100dvh;
  width: 86%;
  max-width: 360px;
  background: #fff;
  box-shadow: -8px 0 24px rgba(0,0,0,0.2);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.mobile-menu.is-open .mobile-menu-panel { transform: translateX(0); }

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
  background: #fff;
}
.mobile-menu-header img { height: 30px; }
.mobile-menu-close {
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--kw-navy);
}

.mobile-menu-scroll {
  flex: 1 1 auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  min-height: 0;
}

.mobile-menu-cta-top {
  margin: 14px 18px 6px;
  display: flex;
  background: var(--kw-red);
  border-radius: 100px;
  overflow: hidden;
}
.mobile-menu-cta-top a {
  flex: 1;
  text-align: center;
  padding: 11px 6px;
  color: #fff !important;
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: background 0.15s;
}
.mobile-menu-cta-top a:hover { background: var(--kw-red-dark); }
.mobile-menu-cta-top a + a { border-left: 1px solid rgba(255,255,255,0.2); }
.mobile-menu-cta-top svg { flex-shrink: 0; }

.mobile-menu-section-label {
  padding: 18px 18px 6px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-500);
}

.mobile-menu-nav {
  padding: 0 0 8px;
}
.mobile-menu-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 18px;
  color: var(--kw-navy);
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: background 0.15s, color 0.15s;
  border-left: 3px solid transparent;
}
.mobile-menu-nav a:hover,
.mobile-menu-nav a:active {
  background: var(--bg-soft);
  color: var(--kw-red);
  border-left-color: var(--kw-red);
}
.mobile-menu-nav a::after {
  content: '';
  width: 7px;
  height: 7px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.4;
  transition: opacity 0.15s, transform 0.15s;
}
.mobile-menu-nav a:hover::after { opacity: 1; transform: rotate(45deg) translate(2px, -2px); }

.mobile-menu-divider {
  height: 1px;
  background: var(--line);
  margin: 6px 18px;
}

.mobile-menu-socials {
  display: flex;
  gap: 8px;
  padding: 10px 18px 24px;
}
.mobile-menu-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-soft);
  color: var(--kw-navy);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.mobile-menu-socials a:hover {
  background: var(--kw-red);
  color: #fff;
}

@media (max-width: 980px) {
  header nav { display: none !important; }
  .header-actions { display: none !important; }
  .hamburger { display: flex; }
  /* Also hide the entire utility bar so the hamburger covers everything */
  .utility-bar { display: none !important; }
}

/* ─── COOKIE BANNER ─── */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 70;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 16px 40px -8px rgba(8, 21, 42, 0.25);
  max-width: 720px;
  margin: 0 auto;
  transition: opacity 0.25s ease;
}
.cookie-banner-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 18px 24px;
}
.cookie-banner-text {
  flex: 1;
  font-size: 13.5px;
  color: var(--text-700);
  line-height: 1.55;
}
.cookie-banner-text strong {
  color: var(--kw-navy);
  font-weight: 700;
}
.cookie-banner-text a {
  color: var(--kw-red);
  text-decoration: underline;
}
.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-btn {
  border: none;
  border-radius: 100px;
  padding: 10px 20px;
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
}
.cookie-btn-secondary {
  background: transparent;
  color: var(--kw-navy);
  border: 2px solid var(--line);
}
.cookie-btn-secondary:hover {
  background: var(--bg-soft);
  border-color: var(--text-500);
}
.cookie-btn-primary {
  background: var(--kw-red);
  color: #fff;
}
.cookie-btn-primary:hover { background: var(--kw-red-dark); }

@media (max-width: 720px) {
  .cookie-banner-inner { flex-direction: column; align-items: stretch; }
  .cookie-banner-actions { justify-content: stretch; }
  .cookie-btn { flex: 1; }
}

/* ─── EMPHASIZED PHONE LINK ─── */
.utility-left a[href^="tel:"] {
  font-weight: 700;
  color: #fff !important;
  background: rgba(168, 36, 62, 0.25);
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid rgba(168, 36, 62, 0.5);
  transition: background 0.15s, border-color 0.15s;
}
.utility-left a[href^="tel:"]:hover {
  background: var(--kw-red);
  border-color: var(--kw-red);
}
.utility-left a[href^="tel:"] svg { color: #FF8095; }
.utility-left a[href^="tel:"]:hover svg { color: #fff; }

/* ─── LIVE CHAT WIDGET ─── */
.live-chat {
  position: fixed;
  bottom: 28px;
  right: 90px;
  z-index: 65;
}
.live-chat-toggle {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--kw-navy);
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px -4px rgba(8, 21, 42, 0.4);
  transition: background 0.15s, transform 0.15s;
}
.live-chat-toggle:hover {
  background: var(--kw-navy-dark);
  transform: scale(1.05);
}
.live-chat-icon-close { display: none; }
.live-chat.is-open .live-chat-icon-open { display: none; }
.live-chat.is-open .live-chat-icon-close { display: block; }
.live-chat-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--kw-red);
  animation: chatPulse 2.2s infinite;
  pointer-events: none;
}
@keyframes chatPulse {
  0% { transform: scale(0.95); opacity: 0.8; }
  70% { transform: scale(1.25); opacity: 0; }
  100% { transform: scale(1.25); opacity: 0; }
}
.live-chat.is-open .live-chat-pulse { display: none; }

.live-chat-panel {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 340px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 16px 40px -10px rgba(8, 21, 42, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s, transform 0.2s, visibility 0s linear 0.2s;
  overflow: hidden;
}
.live-chat.is-open .live-chat-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.2s, transform 0.2s;
}

.live-chat-header {
  background: var(--kw-navy);
  color: #fff;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.live-chat-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--kw-red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
}
.live-chat-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 2px;
}
.live-chat-status {
  font-size: 11.5px;
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  gap: 6px;
}
.live-chat-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #28C840;
  box-shadow: 0 0 0 0 rgba(40, 200, 64, 0.7);
  animation: chatDot 2s infinite;
}
@keyframes chatDot {
  0% { box-shadow: 0 0 0 0 rgba(40, 200, 64, 0.6); }
  70% { box-shadow: 0 0 0 6px rgba(40, 200, 64, 0); }
  100% { box-shadow: 0 0 0 0 rgba(40, 200, 64, 0); }
}

.live-chat-body {
  padding: 18px;
  background: var(--bg-soft);
}
.live-chat-msg { margin-bottom: 14px; }
.live-chat-bubble {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px 14px 14px 14px;
  padding: 12px 14px;
  font-size: 13.5px;
  color: var(--text-700);
  line-height: 1.5;
}
.live-chat-time {
  font-size: 11px;
  color: var(--text-500);
  margin-top: 4px;
  margin-left: 6px;
}
.live-chat-quick {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
}
.live-chat-quick-btn {
  background: #fff;
  border: 1px solid var(--kw-red);
  color: var(--kw-red);
  padding: 9px 12px;
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  transition: all 0.15s;
}
.live-chat-quick-btn:hover {
  background: var(--kw-red);
  color: #fff;
}

.live-chat-footer {
  display: flex;
  border-top: 1px solid var(--line);
}
.live-chat-action {
  flex: 1;
  text-align: center;
  padding: 12px 6px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--kw-navy);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: background 0.15s;
}
.live-chat-action:hover { background: var(--bg-soft); }
.live-chat-action + .live-chat-action { border-left: 1px solid var(--line); }

@media (max-width: 600px) {
  .live-chat { bottom: 92px; right: 16px; }
  .live-chat-panel { width: calc(100vw - 32px); right: -42px; }
}

/* ─── COMPARISON TABLE (subpage) ─── */
.compare-table-wrap {
  margin-top: 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow-x: auto;
  box-shadow: 0 8px 22px -10px rgba(21, 43, 71, 0.12);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}
.compare-table thead th {
  background: var(--kw-navy);
  color: #fff;
  padding: 18px 14px;
  text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.15;
}
.compare-table thead th span {
  color: var(--kw-red-light);
  font-weight: 800;
}
.compare-table thead th.compare-best { background: var(--kw-red); }
.compare-table thead th.compare-best span { color: #fff; }
.compare-table .compare-feature-col { background: #fff; }
.compare-table tbody td {
  padding: 14px 14px;
  text-align: center;
  font-size: 14px;
  color: var(--kw-navy);
  border-top: 1px solid var(--line);
}
.compare-table tbody td.compare-cat {
  text-align: left;
  font-weight: 600;
  background: var(--bg-soft);
  color: var(--text-700);
}
.compare-table tbody td.compare-best {
  background: rgba(168, 36, 62, 0.05);
  font-weight: 700;
  color: var(--kw-red);
}
.compare-table tbody tr:hover td:not(.compare-cat) {
  background: rgba(168, 36, 62, 0.03);
}
.compare-table .compare-price-row td {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--kw-navy);
  background: var(--bg-soft);
  border-top: 2px solid var(--kw-red);
}
.compare-table .compare-price-row td.compare-best {
  color: var(--kw-red);
  font-size: 20px;
}
.compare-table .compare-price-row td.compare-cat,
.compare-table .compare-cta-row td.compare-cat {
  background: var(--bg-soft);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-700);
}
.compare-cta-cell {
  display: inline-block;
  padding: 10px 22px;
  background: #fff;
  color: var(--kw-navy);
  border: 2px solid var(--kw-navy);
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: all 0.15s;
}
.compare-cta-cell:hover { background: var(--kw-navy); color: #fff; }
.compare-cta-cell-best {
  background: var(--kw-red);
  color: #fff;
  border-color: var(--kw-red);
}
.compare-cta-cell-best:hover { background: var(--kw-red-dark); border-color: var(--kw-red-dark); }

/* ─── REUSABLE EYEBROW TAG ─── */
.eyebrow-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(168, 36, 62, 0.08);
  color: var(--kw-red);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.eyebrow-tag svg { flex-shrink: 0; }
.eyebrow-tag.eyebrow-on-dark {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.eyebrow-tag.eyebrow-on-dark svg { color: var(--kw-red-light); }
/* Centered for use above section headers */
.section-header .eyebrow-tag,
.content-inner .eyebrow-tag.center {
  margin-left: auto;
  margin-right: auto;
}
.section-header { display: flex; flex-direction: column; align-items: center; }

/* ─── HERO PROMO BADGE (subpages) ─── */
.hero-promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(168, 36, 62, 0.18);
  border: 1px solid rgba(168, 36, 62, 0.45);
  color: #fff;
  padding: 8px 18px 8px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  margin-top: 10px;
  margin-bottom: 6px;
  backdrop-filter: blur(4px);
}
.hero-promo-badge svg { color: #FF8095; flex-shrink: 0; }
.hero-promo-badge b { font-weight: 700; color: #fff; }

/* Hide utility trust tags (Magyar tárhely / .hu regisztrátor / 2005 óta) on narrow screens to prevent wrap/squish */
@media (max-width: 1230px) {
  .util-trust-tag { display: none !important; }
}
/* Hide social icons in utility right on slightly narrower screens to avoid overflow */
@media (max-width: 1100px) {
  .utility-right .util-social { display: none !important; }
  .utility-right .util-social + .pipe { display: none !important; }
}

/* Promo badge on light backgrounds (within content sections) */
.promo-badge-light {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(168, 36, 62, 0.08);
  border: 1px solid rgba(168, 36, 62, 0.25);
  color: var(--kw-red);
  padding: 8px 18px 8px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  margin: 0 auto 18px;
  width: fit-content;
  max-width: 100%;
  text-align: center;
}
.promo-badge-light svg { color: var(--kw-red); flex-shrink: 0; }
.promo-badge-light b { font-weight: 700; color: var(--kw-navy); }

/* ─── PAGE-SPECIFIC SECTION DECORATIONS ─── */









/* ─── COMPARE TABLE GROUP HEADER ─── */
.compare-table .compare-group-row td {
  background: var(--kw-navy);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 16px;
  text-align: left;
  border-top: 2px solid var(--kw-red);
}


/* ─── ICON STRIP (felül a footer felett) ─── */
.icon-strip {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 32px;
}
.icon-strip-inner {
  max-width: 1440px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  gap: 40px; flex-wrap: wrap;
}
.icon-strip-section {
  display: flex; align-items: center; gap: 18px;
}
.icon-strip-label {
  font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted);
  white-space: nowrap;
}
.icon-strip-logos { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.icon-strip-logo {
  display: inline-flex; align-items: center; justify-content: center; height: 28px;
  opacity: 0.75; transition: opacity 0.2s; flex-shrink: 0;
}
.icon-strip-logo:hover { opacity: 1; }
.icon-strip-logo img { height: 100%; width: auto; max-width: 90px; object-fit: contain; }
.icon-strip-logo--simplepay img { height: 24px; max-width: 110px; }
.icon-strip-divider {
  width: 1px; height: 32px; background: var(--line); flex-shrink: 0;
}
@media (max-width: 760px) {
  .icon-strip-inner { gap: 16px; flex-direction: column; align-items: flex-start; }
  .icon-strip-divider { display: none; }
  .icon-strip-section { flex-wrap: wrap; }
}

/* ─── FOOTER (compact 4-col) ─── */
footer {
  background: var(--kw-navy);
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  position: relative;
  overflow: hidden;
  padding: 0;
}
.footer-cta-strip {
  background: linear-gradient(135deg, var(--kw-red) 0%, #8B1B30 100%);
  padding: 22px 32px;
  position: relative;
  z-index: 1;
}
.footer-cta-strip-inner {
  max-width: 1440px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; flex-wrap: wrap;
}
.footer-cta-strip-text { color: #fff; }
.footer-cta-strip-text strong {
  font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 800;
  letter-spacing: 0.02em; display: block; line-height: 1.2;
}
.footer-cta-strip-text span { font-size: 12.5px; opacity: 0.9; }
.footer-cta-strip-form { display: flex; gap: 6px; }
.footer-cta-strip-form input {
  background: rgba(0, 0, 0, 0.25); border: 1px solid rgba(255, 255, 255, 0.2); color: #fff;
  padding: 9px 14px; border-radius: 100px; min-width: 240px;
  font-family: inherit; font-size: 13px; outline: none;
}
.footer-cta-strip-form input::placeholder { color: rgba(255, 255, 255, 0.55); }
.footer-cta-strip-form input:focus { border-color: rgba(255, 255, 255, 0.5); }
.footer-cta-strip-form button {
  background: #fff; color: var(--kw-red); border: none; padding: 9px 18px;
  border-radius: 100px; font-weight: 700; font-size: 13px; cursor: pointer;
  font-family: inherit; transition: background 0.2s;
  display: inline-flex; align-items: center; gap: 6px;
}
.footer-cta-strip-form button:hover { background: rgba(255, 255, 255, 0.9); }

.footer-top {
  max-width: 1440px; margin: 0 auto; padding: 36px 32px 28px;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px; border-bottom: 1px solid var(--line);
  position: relative; z-index: 1;
}
.footer-brand .logo-img { height: 32px; width: auto; margin-bottom: 12px; display: block; }
.footer-brand p {
  font-size: 12.5px; line-height: 1.55; margin: 0 0 14px; color: rgba(255, 255, 255, 0.55); max-width: 320px;
}
.footer-brand-contact { display: flex; flex-direction: column; gap: 5px; font-size: 12.5px; }
.footer-brand-contact a, .footer-brand-contact span {
  color: rgba(255, 255, 255, 0.85); text-decoration: none;
  display: inline-flex; align-items: center; gap: 7px;
}
.footer-brand-contact a:hover { color: #fff; }
.footer-brand-contact svg { width: 13px; height: 13px; opacity: 0.6; flex-shrink: 0; }
.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase; color: #fff; margin: 0 0 12px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 5px; }
.footer-col a {
  color: rgba(255, 255, 255, 0.7); text-decoration: none; font-size: 12.5px; transition: color 0.2s;
}
.footer-col a:hover { color: #fff; }

.footer-bottom {
  max-width: 1440px; margin: 0 auto; padding: 16px 32px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11.5px; color: rgba(255, 255, 255, 0.5);
  flex-wrap: wrap; gap: 12px;
  position: relative; z-index: 1;
}
.footer-bottom-trust { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.footer-bottom-trust span { display: inline-flex; align-items: center; gap: 5px; }
.footer-bottom-trust svg { width: 11px; height: 11px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.08); color: rgba(255, 255, 255, 0.7);
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none; transition: all 0.2s;
}
.footer-social:hover { background: var(--kw-red); color: #fff; }
.footer-social svg { width: 13px; height: 13px; }

@media (max-width: 760px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 24px; padding: 28px 24px 20px; }
  .footer-brand { grid-column: span 2; }
  .footer-cta-strip-inner { justify-content: flex-start; flex-direction: column; align-items: flex-start; }
  .footer-cta-strip-form { width: 100%; }
  .footer-cta-strip-form input { min-width: 0; flex: 1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; padding: 14px 24px; }
}
