/*
  Rebranding guide
  - Update :root tokens to change the primary accent, glow, and global background.
  - Edit --accent / --accent-2 / --accent-glow for the red/orange system glow.
  - Update the hero image in .hero::after and content wall image in .contentWall.
*/
:root {
  --bg-0: #050507;
  --bg-1: #060609;
  --bg-2: #07070a;
  --panel-bg: rgba(12, 12, 16, 0.92);

  --text: #f2eee6;
  --muted: #c2b8a8;

  --accent: #ff5a2b;
  --accent-2: #ff6a00;
  --accent-hot: #ff2d1e;
  --accent-deep: #b40e0e;
  --accent-dark: #5d0505;
  --accent-glow: rgba(255, 106, 0, 0.45);

  --border: rgba(255, 45, 30, 0.28);
  --border-strong: rgba(255, 45, 30, 0.55);

  --shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
  --glow-soft: 0 0 18px rgba(255, 45, 30, 0.25);
  --glow-strong: 0 0 60px rgba(255, 45, 30, 0.4);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 18px;

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
}

/* =========================
   Base / Reset
   ========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial,
    "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 50% -10%, rgba(255, 45, 30, 0.14), transparent 60%),
    radial-gradient(900px 520px at 10% 35%, rgba(255, 106, 0, 0.1), transparent 62%),
    radial-gradient(900px 520px at 90% 70%, rgba(255, 45, 30, 0.08), transparent 65%),
    linear-gradient(180deg, var(--bg-0) 0%, var(--bg-1) 40%, var(--bg-0) 100%);
  background-attachment: fixed;
}

a {
  color: inherit;
}

.wrap {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.lead {
  margin: 0 0 18px;
  color: rgba(238, 231, 218, 0.78);
}

/* =========================
   Background / Global
   ========================= */
.pageBg {
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(1200px 700px at 18% 12%, rgba(229, 9, 20, 0.1), transparent 60%),
    radial-gradient(1100px 650px at 82% 18%, rgba(255, 70, 35, 0.06), transparent 62%),
    radial-gradient(1400px 900px at 50% 110%, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0) 60%),
    linear-gradient(180deg, #050507 0%, #07070a 35%, #050507 100%);
}

.pageBg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("../img/texture.webp") center/cover no-repeat;
  opacity: 0.1;
  filter: contrast(1.05);
  pointer-events: none;
}

.pageBg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(1200px 800px at 50% 10%, rgba(0, 0, 0, 0.4), transparent 65%),
    radial-gradient(1200px 900px at 50% 110%, rgba(0, 0, 0, 0.75), transparent 60%);
  opacity: 1;
  pointer-events: none;
}

/* =========================
   Layout
   ========================= */
.section {
  padding: 44px 0;
  position: relative;
  background: transparent;
  border-top: 1px solid rgba(255, 106, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.35);
}

.section h2 {
  margin: 0 0 10px;
  color: rgba(255, 106, 0, 0.9);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 13px;
}

/* =========================
   Thank-you page additions
   ========================= */
.thankYouHero {
  padding: 80px 0 40px;
}

.thankYouHero__copy {
  max-width: 640px;
}

/* =========================
   Header / Nav
   ========================= */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(6, 6, 8, 0.82);
  border-bottom: 1px solid rgba(255, 35, 35, 0.18);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
/* Mobile: adjunk levegőt a "..." és az INGYENES PRÓBA gomb közé */
.topbar__inner {
  gap: 12px; /* ez adja a spacinget a flex elemek között */
}

/* Biztonsági: a navMore (3 pont) ne tapadjon rá a CTA gombra */
.navMore {
  margin-right: 10px;
}


.brand {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

.brand__logo {
  height: 36px;
  width: auto;
  display: block;
  flex: 0 0 auto;
}

.brand__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand__mark {
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.02;
  margin: 0;
}

.brand__men {
  color: #ffffff;
}

.brand__iptv {
  color: var(--accent);
}

.brand__tag {
  margin: 0;
  font-size: 11px;
  color: rgba(238, 231, 218, 0.62);
  letter-spacing: 0.18em;
  line-height: 1.1;
}

.nav {
  display: flex;
  gap: 18px;
}

.nav a {
  color: rgba(238, 231, 218, 0.85);
  text-decoration: none;
  font-size: 14px;
}

.nav a:hover {
  color: var(--accent-2);
}

.navMore {
  position: relative;
  display: flex;
  align-items: center;
}

.navMore__button {
  display: none;
  min-width: 44px;
  padding: 8px 12px;
  font-size: 22px;
  line-height: 1;
}

.navMore__dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: none;
  flex-direction: column;
  gap: 4px;
  min-width: 210px;
  padding: 12px;
  background: rgba(8, 8, 12, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
  z-index: 60;
}

.navMore__dropdown a {
  color: rgba(238, 231, 218, 0.92);
  text-decoration: none;
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 8px;
}

.navMore__dropdown a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--accent-2);
}

.navMore.is-open .navMore__dropdown {
  display: flex;
}

/* =========================
   Buttons
   ========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-weight: 800;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, filter 0.18s ease,
    border-color 0.18s ease, box-shadow 0.2s ease;
}

.btn--primary {
  position: relative;
  color: #0b0b0d;
  background: linear-gradient(180deg, #ff3b2f, var(--accent-deep) 65%, var(--accent-dark));
  border: 1px solid rgba(255, 45, 30, 0.75);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.3);
  box-shadow:
    0 0 28px rgba(255, 45, 30, 0.5),
    0 18px 36px rgba(0, 0, 0, 0.65),
    0 0 80px rgba(255, 106, 0, 0.35);
  overflow: hidden;
}

.btn--primary::after {
  content: "";
  position: absolute;
  inset: -60% -20%;
  background: radial-gradient(220px 140px at 20% 50%, rgba(255, 255, 255, 0.35), transparent 65%);
  opacity: 0.4;
  pointer-events: none;
}

.btn--primary::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 12px;
  border: 1px solid rgba(255, 120, 80, 0.55);
  box-shadow: inset 0 0 18px rgba(255, 120, 80, 0.35);
  opacity: 0.6;
  pointer-events: none;
  animation: pulseGlow 2.4s ease-in-out infinite;
}

.btn--primary:hover {
  transform: translateY(-3px) scale(1.01);
  filter: saturate(1.12) brightness(1.03);
  box-shadow:
    0 0 34px rgba(255, 45, 30, 0.6),
    0 26px 50px rgba(0, 0, 0, 0.7),
    0 0 100px rgba(255, 106, 0, 0.45);
}

.btn--ghost {
  color: var(--text);
  background: rgba(14, 14, 18, 0.65);
  border: 1px solid rgba(255, 45, 30, 0.25);
  box-shadow: inset 0 0 14px rgba(255, 45, 30, 0.08);
}

.btn--ghost:hover {
  border-color: rgba(255, 45, 30, 0.55);
}

.is-copied {
  opacity: 0.85;
  font-size: inherit;
  font-weight: inherit;
}

.btn--telegram {
  margin-top: 10px;
  width: 100%;
  background: rgba(12, 12, 16, 0.6);
  border: 1px dashed rgba(255, 106, 0, 0.4);
  color: rgba(238, 231, 218, 0.9);
}

/* =========================
   Hero
   ========================= */
.hero {
  padding: 96px 0 64px;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    url("../img/hero.jpg") 35% 50% / cover no-repeat,
    radial-gradient(520px 420px at 35% 50%, rgba(255, 106, 0, 0.32), transparent 60%),
    radial-gradient(760px 520px at 25% 40%, rgba(255, 106, 0, 0.18), transparent 60%),
    radial-gradient(980px 640px at 78% 40%, rgba(4, 4, 6, 0.42), transparent 66%),
    radial-gradient(1200px 700px at 60% 0%, rgba(4, 4, 6, 0.55), rgba(4, 4, 6, 0.92));
  opacity: 0.98;
  filter: contrast(1.28) saturate(1.3);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(120% 120% at 50% 20%, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.9)),
    linear-gradient(110deg, rgba(4, 4, 6, 0.98) 0%, rgba(4, 4, 6, 0.6) 45%, rgba(4, 4, 6, 0.98) 100%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.05) 0 1px, rgba(255, 255, 255, 0) 1px 3px);
  opacity: 0.65;
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: start;
}

.hero__grid--v2 {
  grid-template-areas:
    "left order"
    "support order";
}

.hero__grid--v2 .hero__left {
  grid-area: left;
}

.hero__grid--v2 .orderBox {
  grid-area: order;
}

.hero__grid--v2 .hero__support {
  grid-area: support;
}

.hero__left h1 {
  margin: 0 0 10px;
  font-size: clamp(42px, 6vw, 72px);
  letter-spacing: 0.04em;
  line-height: 1.03;
  text-transform: uppercase;
}

.hero__headline {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 52ch;
}

.hero__king {
  display: inline-block;
  background: linear-gradient(180deg, #ffd2a5, var(--accent-2) 55%, #a41212 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 10px 30px rgba(255, 106, 0, 0.55), 0 2px 14px rgba(0, 0, 0, 0.7);
}

.hero__streaming {
  color: #fff3e1;
  text-shadow: 0 14px 40px rgba(0, 0, 0, 0.85), 0 0 20px rgba(255, 35, 35, 0.35);
}

.hero__subtitle {
  margin: 0;
  color: rgba(255, 209, 170, 0.95);
  font-weight: 700;
  font-size: clamp(16px, 2.2vw, 20px);
  line-height: 1.5;
}

.hero__intro {
  margin: 0;
  color: rgba(238, 231, 218, 0.86);
  line-height: 1.6;
}

.hero__intro--strong {
  color: rgba(255, 236, 214, 0.95);
  font-weight: 600;
}

.hero__ctaRow {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.hero__ctaRow--v2 {
  margin-top: 22px;
}

.hero__valueList {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  max-width: 56ch;
}

.hero__valueList li {
  position: relative;
  padding-left: 26px;
  color: rgba(238, 231, 218, 0.92);
  line-height: 1.6;
}

.hero__valueList li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffd0a8, var(--accent-2) 60%, #a41212 100%);
  box-shadow: 0 0 12px rgba(255, 106, 0, 0.6);
}

.hero__support {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: rgba(238, 231, 218, 0.86);
}

.hero__devices {
  display: inline-flex;
  align-self: flex-start;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(12, 12, 18, 0.7);
  border: 1px solid rgba(255, 106, 0, 0.35);
  box-shadow: inset 0 0 18px rgba(255, 106, 0, 0.15);
}

.trustBadges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.trustBadges span {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(238, 231, 218, 0.92);
  background: rgba(8, 8, 12, 0.75);
  border: 1px solid rgba(255, 45, 30, 0.38);
  box-shadow: inset 0 0 16px rgba(255, 45, 30, 0.14), 0 8px 18px rgba(0, 0, 0, 0.45);
}

.trustBadges--v2 span {
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 12px;
}

/* =========================
   Order Box / Form
   ========================= */
.orderBox {
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(18, 18, 24, 0.96), rgba(6, 6, 10, 0.98));
  border: 1px solid rgba(255, 45, 30, 0.55);
  box-shadow:
    0 34px 70px rgba(0, 0, 0, 0.7),
    0 0 40px rgba(255, 45, 30, 0.28),
    0 0 80px rgba(255, 106, 0, 0.3);
  position: relative;
  overflow: hidden;
  transform: translateY(-6px);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.orderBox::before {
  content: "";
  position: absolute;
  inset: -12px;
  background:
    radial-gradient(420px 220px at 70% -10%, rgba(255, 106, 0, 0.35), transparent 65%),
    radial-gradient(220px 160px at 30% 0%, rgba(255, 35, 35, 0.35), transparent 70%);
  opacity: 0.8;
  pointer-events: none;
}

.orderBox::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 28px;
  background: linear-gradient(90deg, transparent, rgba(255, 106, 0, 0.35), transparent);
  opacity: 0.55;
}

.orderBox:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 45, 30, 0.8);
  box-shadow:
    0 38px 78px rgba(0, 0, 0, 0.75),
    0 0 46px rgba(255, 45, 30, 0.35),
    0 0 100px rgba(255, 106, 0, 0.45);
}

.orderBox__head {
  padding: 18px 18px 0;
}

.orderBox__title {
  font-weight: 950;
  color: rgba(255, 106, 0, 0.95);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.orderBox__sub {
  color: rgba(238, 231, 218, 0.72);
  font-size: 13px;
  margin-top: 6px;
  line-height: 1.5;
}

.orderForm {
  padding: 16px 18px 18px;
}

#company {
  display: none;
}

.field {
  display: block;
  margin-top: 12px;
}

.field span {
  display: block;
  font-size: 12px;
  color: rgba(238, 231, 218, 0.72);
  margin-bottom: 6px;
}

.field input,
.field select {
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  background: rgba(8, 8, 12, 0.92);
  border: 1px solid rgba(255, 45, 30, 0.35);
  color: rgba(238, 231, 218, 0.92);
  outline: none;
}

.field input::placeholder {
  color: rgba(238, 231, 218, 0.45);
}

.field input:focus,
.field select:focus {
  border-color: rgba(255, 45, 30, 0.55);
  box-shadow: 0 0 0 3px rgba(255, 45, 30, 0.15);
}

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

.tgRow {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.tgRow .btn {
  width: 100%;
}

#tgFallback .btn {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
}

.orderForm .btn--primary {
  width: 100%;
  margin-top: 14px;
  padding: 15px 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow:
    0 0 26px rgba(255, 45, 30, 0.6),
    0 22px 42px rgba(0, 0, 0, 0.62),
    0 0 90px rgba(255, 106, 0, 0.4);
}

.formMeta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
  font-size: 12px;
  color: rgba(238, 231, 218, 0.68);
}

.status {
  margin-top: 10px;
  font-size: 13px;
  color: rgba(238, 231, 218, 0.9);
  min-height: 18px;
}

.hidden {
  display: none;
}

.tinyNote {
  margin-top: 10px;
  font-size: 11px;
  color: rgba(238, 231, 218, 0.5);
  line-height: 1.35;
}

/* =========================
   Content Wall
   ========================= */
.contentWall {
  position: relative;
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  min-height: 420px;
  display: flex;
  align-items: center;
  padding: 64px 0 44px;
  background-image:
    radial-gradient(900px 420px at 16% 46%, rgba(255, 106, 0, 0.1), transparent 68%),
    radial-gradient(760px 360px at 78% 56%, rgba(255, 40, 30, 0.08), transparent 70%),
    url("../img/content-wall.webp?v=5");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: inset 0 1px 0 rgba(255, 45, 30, 0.25);
  overflow: hidden;
}

.contentWall::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.48) 45%, rgba(0, 0, 0, 0.72) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.42) 55%, rgba(0, 0, 0, 0.62) 100%);
  opacity: 1;
}

.contentWall::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(900px 600px at 78% 40%, rgba(255, 106, 0, 0.1), transparent 65%),
    radial-gradient(1000px 700px at 25% 45%, rgba(255, 45, 30, 0.08), transparent 70%);
  opacity: 0.85;
}

.contentWall__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 360px;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
}

.contentWall .cwGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 48px;
}

.contentWall .cwVisual {
  display: flex;
  align-items: stretch;
  min-height: 0;
}

.cwVideoWrap {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 0;
  max-width: 420px;
  aspect-ratio: 16 / 10;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.75),
    0 0 40px rgba(255, 45, 30, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: perspective(900px) rotateY(-3deg);
}

.cwVideo {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  border-radius: 18px;
  display: block;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.65),
    0 0 40px rgba(255, 45, 30, 0.18);
  filter: saturate(1.05) contrast(1.05) brightness(0.92);
}

.cwVideoOverlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 18px;
  background:
    radial-gradient(80% 80% at 50% 50%, transparent 60%, rgba(0, 0, 0, 0.45) 100%);
  mix-blend-mode: normal;
  opacity: 0.85;
}

.contentWall__copy {
  max-width: 560px;
  padding: 22px 26px;
  border-radius: 18px;
  background: rgba(7, 7, 10, 0.46);
  border: 1px solid rgba(255, 45, 30, 0.22);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.65), inset 0 0 26px rgba(255, 106, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  align-self: stretch;
}

.contentWall__copy:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 45, 30, 0.6);
  box-shadow: 0 28px 54px rgba(0, 0, 0, 0.75), inset 0 0 28px rgba(255, 106, 0, 0.2);
}

.contentWall__eyebrow {
  color: rgba(255, 106, 0, 0.9);
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 12px;
}

.contentWall__headline {
  margin: 10px 0 0;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 900;
  line-height: 1.3;
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.7);
}

.contentWall__sub {
  margin: 10px 0 0;
  color: rgba(238, 231, 218, 0.8);
  line-height: 1.6;
  font-size: 14px;
}

.contentWall__chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.contentWall__chips--cta {
  margin-top: 12px;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(238, 231, 218, 0.9);
  background: rgba(10, 10, 14, 0.65);
  border: 1px solid rgba(255, 45, 30, 0.35);
  box-shadow: inset 0 0 12px rgba(255, 45, 30, 0.12);
  transition: transform 0.18s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.chip--category {
  background: rgba(12, 12, 16, 0.8);
  border: 1px solid rgba(255, 45, 30, 0.3);
}

.chip--ghost {
  background: rgba(16, 16, 20, 0.45);
  border: 1px solid rgba(255, 45, 30, 0.25);
}

.chip--outline {
  background: transparent;
  border: 1px solid rgba(255, 45, 30, 0.6);
}

.chip:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 45, 30, 0.6);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.45), inset 0 0 16px rgba(255, 45, 30, 0.22);
}

/* =========================
   Logo Strip
   ========================= */
.logoStrip {
  position: relative;
  padding: 36px 0 42px;
  background: transparent;
  overflow: hidden;
}

.logoStrip::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.25) 40%, rgba(0, 0, 0, 0.65) 100%);
}

.logoStrip__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logoStrip img {
  max-width: 100%;
  height: auto;
  opacity: 0.82;
  filter: saturate(0.9) brightness(0.95) drop-shadow(0 6px 20px rgba(0, 0, 0, 0.55));
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.logoStrip img:hover {
  opacity: 1;
  transform: scale(1.015);
}

/* =========================
   Features / Why Us
   ========================= */
#features {
  padding: 86px 0 70px;
  margin-top: 0;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}

#features .wrap {
  position: relative;
  z-index: 1;
}

#features .wrap::before {
  content: "";
  position: absolute;
  inset: -60px -20px -80px;
  z-index: -1;
  background:
    radial-gradient(700px 320px at 78% 18%, rgba(255, 45, 30, 0.18), transparent 70%),
    radial-gradient(520px 260px at 26% 70%, rgba(255, 120, 80, 0.12), transparent 68%);
  opacity: 0.55;
}

#features h2 {
  margin-bottom: 10px;
  font-size: 12px;
  letter-spacing: 0.26em;
  color: rgba(255, 140, 100, 0.9);
}

.features__headline {
  margin: 0 0 22px;
  font-size: 28px;
  font-weight: 900;
  color: #fff2e8;
  letter-spacing: 0.01em;
  text-transform: none;
  max-width: 560px;
}

.whySys {
  position: relative;
  padding: 72px 0;
  background: transparent;
  overflow: hidden;
}

.whySys::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.45) 40%, rgba(0, 0, 0, 0.72) 100%);
}

.whySys .wrap {
  position: relative;
  z-index: 1;
}

.sysStrip {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(18, 18, 26, 0.72), rgba(8, 8, 12, 0.92));
  border: 1px solid rgba(255, 45, 30, 0.32);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.66), inset 0 0 28px rgba(255, 45, 30, 0.06);
}

.sysStrip__left {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 12px;
}

.sysStrip__right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.sysDot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(60, 255, 120, 0.95);
  box-shadow: 0 0 18px rgba(60, 255, 120, 0.38);
}

.sysChip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(10, 10, 14, 0.62);
  border: 1px solid rgba(255, 45, 30, 0.26);
  color: rgba(238, 231, 218, 0.82);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 11px;
}

.sysChip b {
  color: rgba(255, 106, 0, 0.98);
}

.sysStrip__right .sysChip:first-child {
  position: relative;
  border-color: rgba(255, 45, 30, 0.35);
  box-shadow: 0 0 18px rgba(255, 45, 30, 0.14);
}

.sysStrip__right .sysChip:first-child::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 999px;
  border: 1px solid rgba(255, 45, 30, 0.35);
  opacity: 0;
  animation: sysPulse 2.2s ease-in-out infinite;
}

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

.whySys .cards3 {
  margin-top: 16px;
}

.card {
  background: linear-gradient(180deg, rgba(10, 10, 14, 0.98), rgba(4, 4, 8, 0.98));
  border: 1px solid rgba(255, 45, 30, 0.35);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6), inset 0 0 30px rgba(255, 45, 30, 0.12);
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.whySys .card {
  background: linear-gradient(180deg, rgba(14, 14, 20, 0.82), rgba(8, 8, 12, 0.94));
  border: 1px solid rgba(255, 45, 30, 0.22);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.66), inset 0 0 28px rgba(255, 45, 30, 0.05);
  overflow: hidden;
}

.card::before {
  content: "";
  display: block;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255, 80, 60, 0.55);
  background:
    radial-gradient(14px 14px at 30% 30%, rgba(255, 255, 255, 0.35), transparent 60%),
    radial-gradient(circle at 50% 50%, rgba(255, 80, 60, 0.6), rgba(120, 10, 10, 0.9));
  box-shadow: 0 0 18px rgba(255, 45, 30, 0.45), inset 0 0 12px rgba(255, 120, 80, 0.4);
  margin-bottom: 14px;
}

.card:nth-child(2)::before {
  background:
    radial-gradient(14px 14px at 30% 30%, rgba(255, 255, 255, 0.35), transparent 60%),
    radial-gradient(circle at 50% 50%, rgba(255, 140, 60, 0.6), rgba(110, 15, 10, 0.92));
}

.card:nth-child(3)::before {
  background:
    radial-gradient(14px 14px at 30% 30%, rgba(255, 255, 255, 0.35), transparent 60%),
    radial-gradient(circle at 50% 50%, rgba(255, 60, 90, 0.6), rgba(100, 10, 20, 0.92));
}

.whySys .card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(240px 140px at 18% 18%, rgba(255, 45, 30, 0.12), transparent 60%),
    radial-gradient(260px 160px at 85% 20%, rgba(255, 106, 0, 0.1), transparent 62%);
  opacity: 0.9;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 45, 30, 0.75);
  box-shadow: 0 26px 48px rgba(0, 0, 0, 0.7), 0 0 28px rgba(255, 45, 30, 0.35);
}

.whySys .card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 45, 30, 0.48);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.72), 0 0 22px rgba(255, 45, 30, 0.18);
}

.card:hover::before {
  box-shadow: 0 0 24px rgba(255, 45, 30, 0.7), inset 0 0 16px rgba(255, 140, 90, 0.5);
}

.card__title {
  font-weight: 900;
  color: rgba(255, 245, 235, 0.96);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
  font-size: 16px;
}

.card__text {
  color: rgba(238, 231, 218, 0.82);
  font-size: 14px;
  line-height: 1.7;
}

.whySys .card h3 {
  margin-top: 10px;
  font-size: 14px;
  letter-spacing: 0.08em;
}

.whySys .card p {
  font-size: 13px;
  color: rgba(238, 231, 218, 0.74);
}

.whySys .modMeta {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  grid-template-columns: max-content 1fr;
  gap: 8px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 900;
  color: rgba(238, 231, 218, 0.7);
  white-space: nowrap;
  overflow: hidden;
}

.metaNum {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 12px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 45, 30, 0.22);
  border: 1px solid rgba(255, 45, 30, 0.38);
  box-shadow: inset 0 0 16px rgba(255, 45, 30, 0.12);
}

.modMain {
  flex: 0 0 auto;
  color: rgba(238, 231, 218, 0.7);
}

.modMain b {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 900;
}

.modSub {
  flex: 1 1 auto;
  min-width: 0;
  color: rgba(255, 106, 0, 0.92);
  overflow: hidden;
  text-overflow: ellipsis;
}

/* =========================
   How it works
   ========================= */
.how {
  padding-top: 28px;
}

.how__steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(12, 12, 16, 0.9), rgba(6, 6, 10, 0.96));
  border: 1px solid rgba(255, 45, 30, 0.3);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6), inset 0 0 30px rgba(255, 45, 30, 0.08);
  position: relative;
  transition: transform 0.18s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.how__steps::before {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  top: 50%;
  height: 2px;
  transform: translateY(-50%);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 106, 0, 0.25),
    rgba(255, 35, 35, 0.38),
    rgba(255, 106, 0, 0.25),
    transparent
  );
  opacity: 0.7;
}

.how__steps:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 45, 30, 0.45);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.6), inset 0 0 36px rgba(255, 45, 30, 0.12);
}

.step {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  color: rgba(238, 231, 218, 0.88);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 13px;
  position: relative;
  z-index: 1;
  padding: 10px 14px;
  background: rgba(10, 10, 14, 0.85);
  border: 1px solid rgba(255, 45, 30, 0.28);
  border-radius: 12px;
  box-shadow: inset 0 0 16px rgba(255, 45, 30, 0.08);
}

.step__n {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 35, 35, 0.22);
  border: 1px solid rgba(255, 35, 35, 0.7);
  box-shadow: 0 0 18px rgba(255, 35, 35, 0.45);
  color: #ffe1e1;
}

.stepArrow {
  color: rgba(255, 35, 35, 0.95);
  text-shadow: 0 0 16px rgba(255, 35, 35, 0.45);
  font-weight: 900;
  font-size: 20px;
}

/* =========================
   Plans / Pricing
   ========================= */
.pricing3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  position: relative;
  padding-bottom: 8px;
}

.pricing3::before {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 0;
  height: 8px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 106, 0, 0.3),
    rgba(255, 35, 35, 0.35),
    rgba(255, 106, 0, 0.3),
    transparent
  );
  opacity: 0.6;
}

.price {
  background: linear-gradient(180deg, rgba(18, 18, 24, 0.92), rgba(6, 6, 10, 0.98));
  border: 1px solid rgba(255, 45, 30, 0.28);
  border-radius: var(--radius-lg);
  padding: 20px;
  position: relative;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.6), inset 0 0 28px rgba(255, 45, 30, 0.06);
  transition: transform 0.18s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  opacity: 0.78;
}

.price:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 45, 30, 0.55);
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.65), 0 0 22px rgba(255, 45, 30, 0.22);
  opacity: 0.9;
}

.price ul {
  margin: 14px 0 18px;
  padding-left: 18px;
  color: rgba(238, 231, 218, 0.78);
  line-height: 1.65;
}

.price__name {
  font-weight: 950;
  font-size: 23px;
  color: rgba(238, 231, 218, 0.94);
  letter-spacing: 0.01em;
}

.price--best {
  border-color: rgba(255, 45, 30, 0.85);
  box-shadow:
    0 26px 60px rgba(0, 0, 0, 0.7),
    0 0 60px rgba(255, 45, 30, 0.4),
    0 0 80px rgba(255, 106, 0, 0.35);
  transform: translateY(-10px) scale(1.02);
  opacity: 1;
}

.price--best:hover {
  transform: translateY(-12px) scale(1.02);
}

.badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 35, 35, 0.3);
  border: 1px solid rgba(255, 35, 35, 0.75);
  box-shadow: 0 0 16px rgba(255, 35, 35, 0.45);
  color: #ffe3e3;
  font-weight: 900;
  font-size: 11px;
  padding: 6px 8px;
  border-radius: 999px;
  letter-spacing: 0.08em;
}

#plans .plansNote {
  margin: 8px 0 22px;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(238, 231, 218, 0.72);
  max-width: 62ch;
}

#plans .plansNote strong {
  color: rgba(255, 236, 214, 0.92);
  font-weight: 900;
}

/* =========================
   FAQ
   ========================= */
.faq {
  display: grid;
  gap: 10px;
}

details {
  background: linear-gradient(180deg, rgba(12, 12, 16, 0.9), rgba(4, 4, 8, 0.96));
  border: 1px solid rgba(255, 45, 30, 0.25);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  transition: transform 0.18s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

details:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 45, 30, 0.4);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.5);
}

summary {
  cursor: pointer;
  font-weight: 900;
  color: rgba(238, 231, 218, 0.94);
  letter-spacing: 0.01em;
}

details p {
  margin: 10px 0 0;
  color: rgba(238, 231, 218, 0.74);
  line-height: 1.6;
}

.faqMore {
  margin-top: 14px;
}

.faqMore__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  text-decoration: none;
  background: linear-gradient(180deg, rgba(14, 14, 20, 0.72), rgba(8, 8, 12, 0.92));
  border: 1px solid rgba(255, 45, 30, 0.25);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.45), inset 0 0 24px rgba(255, 45, 30, 0.06);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.faqMore__link:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 45, 30, 0.55);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.55), 0 0 18px rgba(255, 45, 30, 0.18);
}

.faqMore__text {
  color: rgba(238, 231, 218, 0.82);
  font-weight: 700;
}

.faqMore__cta {
  margin-left: auto;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(10, 10, 14, 0.65);
  border: 1px solid rgba(255, 45, 30, 0.35);
  color: rgba(238, 231, 218, 0.92);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 12px;
  box-shadow: inset 0 0 14px rgba(255, 45, 30, 0.1);
}

.faqMore__arrow {
  color: rgba(255, 106, 0, 0.95);
  font-weight: 900;
  font-size: 18px;
  text-shadow: 0 0 14px rgba(255, 106, 0, 0.25);
}

/* =========================
   CTA Footer
   ========================= */
.ctaFooter {
  padding: 40px 0;
  position: relative;
}

.ctaFooter::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("../img/cta-footer.webp") center/cover no-repeat;
  opacity: 0.98;
}

.ctaFooter::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(900px 380px at 30% 50%, rgba(255, 106, 0, 0.28), transparent 60%),
    radial-gradient(900px 380px at 70% 50%, rgba(255, 35, 35, 0.3), transparent 60%),
    linear-gradient(90deg, rgba(4, 4, 6, 0.98), rgba(4, 4, 6, 0.72), rgba(4, 4, 6, 0.98));
}

.ctaFooter__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 26px 0;
}

.ctaFooter__title {
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 14px 40px rgba(0, 0, 0, 0.75), 0 0 18px rgba(255, 45, 30, 0.25);
}

.ctaFooter__sub {
  color: rgba(238, 231, 218, 0.72);
  margin-top: 6px;
  font-size: 13px;
}

.ctaFooter .btn--primary {
  box-shadow:
    0 0 34px rgba(255, 45, 30, 0.7),
    0 26px 50px rgba(0, 0, 0, 0.7),
    0 0 100px rgba(255, 106, 0, 0.4);
}

/* =========================
   Footer (Round 4i polish — dark premium, controlled overflow)
   ========================= */
.footer {
  position: relative;
  padding: 22px 0 26px;
  background: rgba(6, 6, 8, 0.78);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* Hairline tricolor accent on top edge — 1px line only, low opacity.
   This is the ONLY tricolor hint in the footer; it never fills the surface. */
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    rgba(242, 56, 37, 0)   0%,
    rgba(242, 56, 37, 0.45) 18%,
    rgba(247, 242, 234, 0.45) 50%,
    rgba(47, 175, 84, 0.45) 82%,
    rgba(47, 175, 84, 0)   100%);
  pointer-events: none;
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 24px;
  color: rgba(238, 231, 218, 0.78);
  font-size: 13px;
  line-height: 1.5;
}

/* min-width: 0 on flex children so long text wraps inside the column
   instead of pushing the flex layout sideways. */
.footer__left,
.footer__right {
  min-width: 0;
  flex: 1 1 auto;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.footer__left {
  font-weight: 600;
  letter-spacing: 0.02em;
}

.footer__right {
  font-size: 13px;
  opacity: 0.85;
  text-align: right;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
  justify-content: flex-end;
}

.footer__right a {
  color: rgba(238, 231, 218, 0.9);
  text-decoration: none;
  transition: color 0.18s ease;
}
.footer__right a:hover {
  color: #2faf54;
}
.footer__right .sep {
  opacity: 0.4;
}

.footer__disclaimer,
.footer__legal {
  max-width: 760px;
  margin: 14px auto 0;
  text-align: center;
  font-size: 12px;
  line-height: 1.55;
  color: rgba(238, 231, 218, 0.6);
  word-break: break-word;
  overflow-wrap: anywhere;
}
.footer__legal p {
  margin: 0;
}

@media (max-width: 720px) {
  .footer {
    padding: 20px 0 22px;
  }
  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .footer__right {
    text-align: left;
    justify-content: flex-start;
    width: 100%;
  }
  .footer__disclaimer,
  .footer__legal {
    text-align: left;
    margin-top: 12px;
  }
}

/* =========================
   Utilities
   ========================= */
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.5), 0 0 18px rgba(255, 45, 30, 0.25);
}

@keyframes pulseGlow {
  0%,
  100% {
    opacity: 0.55;
    box-shadow: inset 0 0 14px rgba(255, 120, 80, 0.25), 0 0 0 rgba(255, 45, 30, 0);
  }

  50% {
    opacity: 0.9;
    box-shadow: inset 0 0 22px rgba(255, 120, 80, 0.45), 0 0 26px rgba(255, 45, 30, 0.3);
  }
}

@keyframes sysPulse {
  0% {
    transform: scale(0.98);
    opacity: 0;
  }

  35% {
    opacity: 0.25;
  }

  70% {
    transform: scale(1.03);
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

/* =========================
   Responsive
   ========================= */
@media (max-width: 860px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hero__grid--v2 {
    grid-template-areas:
      "left"
      "order"
      "support";
  }

  .hero__support {
    margin-top: 4px;
  }

  .nav {
    display: none;
  }

  .navMore__button {
    display: inline-flex;
  }

  .cards3,
  .pricing3 {
    grid-template-columns: 1fr;
  }

  .row2 {
    grid-template-columns: 1fr;
  }

  .tgRow {
    grid-template-columns: 1fr;
  }

  .price--best {
    transform: none;
  }

  .contentWall {
    min-height: clamp(320px, 60vh, 380px);
    background-size: 100% 100%, auto, auto, cover;
    background-position: center, center, center, 50% 35%;
  }

  .contentWall__inner {
    min-height: 280px;
  }

  .contentWall__copy {
    max-width: 100%;
  }

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

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

  .sysStrip__right {
    justify-content: flex-start;
  }

  .modSub {
    display: none;
  }
}

@media (min-width: 861px) {
  .navMore__button,
  .navMore__dropdown {
    display: none;
  }
}

@media (max-width: 900px) {
  .contentWall .cwGrid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contentWall .cwVisual {
    align-items: center;
  }

  .cwVideo {
    max-height: 280px;
  }

  .cwVideoWrap {
    max-width: 360px;
    margin: 0 auto;
  }
}

@media (max-width: 720px) {
  .logoStrip {
    padding: 28px 0 32px;
  }

  .logoStrip img {
    opacity: 0.9;
  }
}

@media (max-width: 640px) {
  .brand__logo {
    height: 30px;
  }
}

@media (max-width: 520px) {
  .faqMore__text {
    font-size: 14px;
  }

  .faqMore__cta {
    display: none;
  }
}

/* ===================================================================
   ROUND 4c — OMTV / OnlineMagyarTV visual skin refresh
   Front-end visible rebrand only. Preserves the existing dark/red
   premium aesthetic. Subtle Hungarian-green micro-accents on borders.
   =================================================================== */

/* Round 4f — visible header logo is now a pure HTML/CSS text wordmark.
   The PNG asset at assets/img/meniptv-logo.png is retained on disk and
   still referenced by OG / Twitter / JSON-LD metadata for social previews,
   but is no longer rendered in the visible sticky header. */

/* Defensive: should the legacy image markup reappear anywhere, hide it. */
.brand__logo,
.brand__text {
  display: none !important;
}

/* New text wordmark anchor */
.brand--textLogo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  min-width: max-content;
  gap: 0;
}

.brandLogoText {
  display: inline-flex;
  align-items: baseline;
  white-space: nowrap;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.045em;
  font-size: clamp(26px, 2.25vw, 36px);
  font-family: inherit;
  filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.65));
}

/* Round 4g — scoped + !important so no later/earlier rule can override. */
.brand--textLogo .brandLogoText__red,
.brandLogoText .brandLogoText__red {
  color: #f23825 !important;
  text-shadow: 0 0 10px rgba(255, 76, 35, 0.28);
}

.brand--textLogo .brandLogoText__white,
.brandLogoText .brandLogoText__white {
  color: #f7f2ea !important;
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.10);
}

.brand--textLogo .brandLogoText__green,
.brandLogoText .brandLogoText__green {
  color: #2faf54 !important;
  text-shadow: 0 0 10px rgba(47, 175, 84, 0.24);
}

@media (max-width: 680px) {
  .brandLogoText {
    font-size: clamp(22px, 6vw, 29px);
    letter-spacing: -0.05em;
  }
}

/* Round 4f — restore a compact header now that the tall image logo is gone.
   Round 4e had pushed effective topbar height to ~96px desktop; the text
   logo (~32–36px tall) fits comfortably in the original 14px / 14px padding
   for a ~64–68px sticky header. Padding kept as-is from the base styles
   (.topbar__inner padding: 14px 0); no override needed. */

/* Round 4n — the earlier permanent green border-bottom on .orderBox was removed
   because it read as an accidental stripe. Interaction-based green accents now
   live in the Round 4n block at the end of this file. The primary CTA hover
   still gets a subtle green outer ring on hover only. */

.btn--primary:hover {
  box-shadow:
    0 0 0 1px rgba(60, 160, 90, 0.35),
    0 8px 24px rgba(255, 80, 30, 0.35);
}

/* Hero H1 — slightly tighter line-height for the new two-word headline */
.hero__king,
.hero__streaming {
  letter-spacing: 0.02em;
}

/* ===================================================================
   ROUND 4h — Subtle Hungarian-green secondary accent polish.
   Strictly micro-accent. Never recolors a full surface. CTAs stay
   red/orange; only borders, focus rings, small markers, and hover
   underlines get a hint of green.
   =================================================================== */

/* 1. Form focus rings — green border + faint green ring on input/select/textarea focus.
      Keeps the red/orange CTA system intact but signals "active/safe input" with green. */
.field input:focus,
.field select:focus,
.field textarea:focus,
.orderForm input:focus,
.orderForm select:focus,
.orderForm textarea:focus,
.contact-card input:focus,
.contact-card textarea:focus {
  border-color: rgba(47, 175, 84, 0.55) !important;
  box-shadow:
    0 0 0 2px rgba(47, 175, 84, 0.18),
    0 6px 18px rgba(0, 0, 0, 0.35);
  outline: none;
}

/* 2. Order-box bottom edge — removed in Round 4n (was reading as an accidental
      static stripe). Interaction-based replacement is in the Round 4n block. */

/* 3. Nav hover — keep the existing orange text-hover, add a tiny green underline. */
.nav a {
  position: relative;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  background: rgba(47, 175, 84, 0);
  transition: background 0.18s ease;
}
.nav a:hover::after,
.nav a:focus-visible::after {
  background: rgba(47, 175, 84, 0.6);
}

/* 4. System / status chips — when the chip text indicates an "ON / ACTIVE / READY"
      state, the surrounding chip already uses orange-red. Add a small green dot
      glow on .sysDot to read as "system online". */
.sysDot {
  background: #2faf54 !important;
  box-shadow:
    0 0 10px rgba(47, 175, 84, 0.55),
    0 0 0 2px rgba(47, 175, 84, 0.12);
}

/* 5. Secure / trust row separator — Round 4n: switched from a green dashed line
      (which read as an accidental green stripe) to a neutral warm-white hairline. */
.formMeta {
  border-top: 1px dashed rgba(255, 255, 255, 0.10);
  padding-top: 8px;
}

/* 6. Feature cards — Round 4n: the bottom green hairline is now hover-only so
      the cards read as plain dark panels in the resting state. */
.cards3 .card {
  position: relative;
}
.cards3 .card::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg,
    rgba(47, 175, 84, 0) 0%,
    rgba(47, 175, 84, 0) 50%,
    rgba(47, 175, 84, 0) 100%);
  pointer-events: none;
  transition: background 0.2s ease;
}
.cards3 .card:hover::after,
.cards3 .card:focus-within::after {
  background: linear-gradient(90deg,
    rgba(47, 175, 84, 0) 0%,
    rgba(47, 175, 84, 0.30) 50%,
    rgba(47, 175, 84, 0) 100%);
}

/* 7. Plan cards — only the "LEGNÉPSZERŰBB" card gets a 1px green inset line
      below its badge so it reads as the recommended option. */
.price--best {
  box-shadow:
    inset 0 1px 0 rgba(47, 175, 84, 0.35),
    0 18px 40px rgba(0, 0, 0, 0.55);
}

/* 8. FAQ open-state — earlier 2px green left border was removed in Round 4n
      (it read as an accidental left stripe). Replacement: subtle full-card
      border-tint + box-shadow on hover and on details[open], applied in the
      Round 4n block at the end of this file. */

/* 9. Footer — superseded by the Round 4i polish block below. The earlier
      Round 4h gradient overlay made the footer read like a filled flag block,
      so the visible band has been replaced with a 1px hairline (see Round 4i). */

/* 10. Active / recommended chips and the "active" pill states
       — small green dot before currently-active items. */
.chip--ghost.is-active::before,
.pill.is-active::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-right: 6px;
  background: #2faf54;
  box-shadow: 0 0 8px rgba(47, 175, 84, 0.55);
  vertical-align: middle;
}

/* ===================================================================
   ROUND 4n — Interaction-based green accents only.
   Removed: permanent .orderBox green border-bottom, permanent
   .faq details[open] left stripe, permanent green-tinted .formMeta line,
   permanent cards3 hairline.
   Added: hover / focus-within / open-state subtle accents.
   Header text logo, primary CTA, footer Round 4i hairline, sysDot,
   price--best inset (recommended), form focus rings, and nav-hover
   underline all preserved.
   =================================================================== */

/* Order box — resting state stays dark/red/glassy. On focus-within (user
   actively interacting with any input/select/textarea inside) and on hover,
   a soft green outer ring fades in. Border color tints only slightly. */
.orderBox {
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.orderBox:hover {
  border-color: rgba(47, 175, 84, 0.22);
}
.orderBox:focus-within {
  border-color: rgba(47, 175, 84, 0.40);
  box-shadow:
    0 0 0 2px rgba(47, 175, 84, 0.14),
    0 18px 40px rgba(0, 0, 0, 0.55);
}

/* FAQ items — resting state is the existing dark panel.
   Hover: faint full-card border tint.
   Open: slightly stronger full-card border + a soft inner halo.
   No left stripe, no green fill. */
.faq details {
  transition: border-color 0.2s ease, box-shadow 0.25s ease;
}
.faq details:hover {
  border-color: rgba(47, 175, 84, 0.22);
}
.faq details[open] {
  border-color: rgba(47, 175, 84, 0.30);
  box-shadow: 0 0 0 1px rgba(47, 175, 84, 0.12) inset;
}
.faq details[open] summary {
  color: #f7f2ea;
}
.faq details[open] summary::marker {
  color: #2faf54;
}
