/* ==========================================================================
   KING365TV — style.css
   Design system: white + light grey + premium blue
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --blue-50:  #eff6ff;
  --blue-100: #dbeafe;
  --blue-200: #bfdbfe;
  --blue-500: #2f6fed;
  --blue-600: #1d5ce0;
  --blue-700: #1748b4;

  --ink:      #111827;
  --ink-soft: #374151;
  --muted:    #6b7280;
  --line:     #e5e7eb;
  --line-soft:#eef1f5;

  --bg:       #ffffff;
  --bg-alt:   #f7f8fa;
  --bg-tint:  #f3f6fd;

  --green:    #0f9d58;
  --green-ink:#0a6b3d;
  --amber:    #b45309;

  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 22px;

  --shadow-xs: 0 1px 2px rgba(17, 24, 39, .05);
  --shadow-sm: 0 2px 8px rgba(17, 24, 39, .06);
  --shadow-md: 0 8px 24px rgba(17, 24, 39, .08);
  --shadow-lg: 0 18px 48px rgba(17, 24, 39, .10);

  --container: 1160px;
  --header-h: 74px;

  --font: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--bg);
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.2; margin: 0 0 .6em; font-weight: 700; letter-spacing: -.015em; }
h1 { font-size: clamp(1.95rem, 1.3rem + 2.3vw, 2.85rem); }
h2 { font-size: clamp(1.55rem, 1.15rem + 1.6vw, 2.3rem); }
h3 { font-size: clamp(1.15rem, 1.02rem + .5vw, 1.35rem); }
p  { margin: 0 0 1.1em; }
ul, ol { margin: 0 0 1.1em; padding-left: 1.25em; }
li { margin-bottom: .45em; }
a { color: var(--blue-600); text-decoration: none; }
/* Links inside running text are underlined: colour alone is not a sufficient
   distinction (WCAG 1.4.1). Buttons, cards and navigation keep their own styling. */
main p a:not(.btn), main li a:not(.btn), .faq-a a, .cookie-banner p a, .footer-trademark a {
  text-decoration: underline; text-underline-offset: 2px;
}
a:hover { text-decoration: underline; }
strong { color: var(--ink); font-weight: 650; }
hr { border: 0; border-top: 1px solid var(--line); margin: 2.5rem 0; }

:focus-visible {
  outline: 3px solid var(--blue-500);
  outline-offset: 2px;
  border-radius: 6px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--blue-600); color: #fff; padding: .75rem 1.1rem; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

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

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 20px; }
.section { padding: 76px 0; }
.section--alt { background: var(--bg-alt); }
.section--tint { background: linear-gradient(180deg, var(--bg-tint), #ffffff); }
.section-head { max-width: 760px; margin: 0 auto 44px; text-align: center; }
.section-head p { color: var(--muted); font-size: 1.05rem; margin-bottom: 0; }
.eyebrow {
  display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--blue-600); background: var(--blue-50);
  padding: .35rem .7rem; border-radius: 999px; margin-bottom: 1rem;
}
.grid { display: grid; gap: 22px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.text-center { text-align: center; }
.lead { font-size: 1.12rem; color: var(--ink-soft); }
.narrow { max-width: 800px; margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font: inherit; font-weight: 650; line-height: 1.2; text-align: center;
  padding: .92rem 1.5rem; border-radius: 12px; border: 1px solid transparent;
  cursor: pointer; transition: background-color .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease;
  text-decoration: none;
}
.btn:hover { text-decoration: none; }
.btn--primary { background: var(--blue-600); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--blue-700); box-shadow: var(--shadow-md); transform: translateY(-1px); }
.btn--ghost { background: #fff; color: var(--ink); border-color: var(--line); box-shadow: var(--shadow-xs); }
.btn--ghost:hover { border-color: var(--blue-200); background: var(--blue-50); color: var(--blue-700); }
.btn--light { background: #fff; color: var(--blue-700); }
.btn--light:hover { background: var(--blue-50); }
.btn--sm { padding: .6rem 1rem; font-size: .93rem; border-radius: 10px; }
.btn--block { display: flex; width: 100%; }
.btn[disabled], .btn[aria-disabled="true"] { opacity: .55; cursor: not-allowed; transform: none; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.site-header.is-stuck { box-shadow: var(--shadow-sm); border-bottom-color: var(--line-soft); }
.site-header .container { max-width: 1300px; }
.header-inner {
  display: flex; align-items: center; gap: 16px;
  min-height: var(--header-h);
}
.brand { display: inline-flex; align-items: center; gap: .55rem; font-weight: 800; color: var(--ink); letter-spacing: -.02em; }
.brand:hover { text-decoration: none; }
.brand img { width: 34px; height: 34px; }
.brand span { font-size: 1.16rem; }
.brand span b { color: var(--blue-600); font-weight: 800; }

.main-nav { margin-left: auto; }
.main-nav ul { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.main-nav li { margin: 0; }
.main-nav a {
  display: block; padding: .55rem .7rem; border-radius: 9px;
  color: var(--ink-soft); font-size: .93rem; font-weight: 550; white-space: nowrap;
}
.main-nav a:hover { background: var(--bg-alt); color: var(--ink); text-decoration: none; }
.main-nav a[aria-current="page"] { color: var(--blue-700); background: var(--blue-50); }

.header-actions { display: flex; align-items: center; gap: 10px; }
.header-actions .btn { white-space: nowrap; }
.lang-switch { display: inline-flex; align-items: center; gap: 2px; border: 1px solid var(--line); border-radius: 999px; padding: 3px; background: #fff; }
.lang-switch a {
  padding: .28rem .6rem; border-radius: 999px; font-size: .84rem; font-weight: 650; color: var(--muted);
}
.lang-switch a:hover { text-decoration: none; color: var(--ink); }
.lang-switch a[aria-current="true"] { background: var(--blue-600); color: #fff; }

.nav-toggle {
  display: none; margin-left: auto;
  width: 44px; height: 44px; align-items: center; justify-content: center;
  background: #fff; border: 1px solid var(--line); border-radius: 11px; cursor: pointer;
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--ink); position: relative; transition: background .15s; }
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--ink); transition: transform .2s ease, top .2s ease;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { top: 0; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { background: linear-gradient(170deg, #f2f6ff 0%, #ffffff 62%); padding: 68px 0 72px; border-bottom: 1px solid var(--line-soft); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 52px; align-items: center; }
.hero h1 { margin-bottom: .5em; }
.hero h1 .accent { color: var(--blue-600); }
.hero-sub { font-size: 1.14rem; color: var(--ink-soft); max-width: 34em; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin: 1.6rem 0 1.4rem; }
.hero-points { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px 20px; }
.hero-points li { display: flex; align-items: center; gap: .45rem; font-size: .95rem; color: var(--ink-soft); margin: 0; }
.hero-points svg { flex: 0 0 auto; color: var(--green); }
.hero-visual { position: relative; }
.hero-visual img { width: 100%; border-radius: var(--radius-lg); }

/* ---------- Cards ---------- */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow-xs);
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
.card--hover:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: var(--blue-200); }
.card h3 { margin-bottom: .45em; }
.card p:last-child { margin-bottom: 0; }
.card-icon {
  width: 46px; height: 46px; border-radius: 13px; display: flex; align-items: center; justify-content: center;
  background: var(--blue-50); color: var(--blue-600); margin-bottom: 16px;
}
.card-icon svg { width: 24px; height: 24px; }

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: stretch; }
.plan {
  position: relative; display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px 24px; box-shadow: var(--shadow-xs);
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
.plan:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.plan--featured { border-color: var(--blue-500); border-width: 2px; box-shadow: var(--shadow-lg); }
.plan-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--blue-600); color: #fff; font-size: .76rem; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase; padding: .32rem .8rem; border-radius: 999px; white-space: nowrap;
}
.plan-name { font-size: 1.22rem; margin-bottom: .15em; }
.plan-duration { color: var(--muted); font-size: .9rem; margin-bottom: 1rem; }
.plan-price { display: flex; align-items: baseline; gap: .3rem; margin-bottom: .25rem; }
.plan-price .amount { font-size: 2.35rem; font-weight: 800; color: var(--ink); letter-spacing: -.03em; line-height: 1; }
.plan-price .currency { font-size: 1rem; font-weight: 650; color: var(--muted); }
.plan-price .amount--tbd { font-size: 1.5rem; color: var(--blue-700); }
.plan-permonth { font-size: .88rem; color: var(--muted); min-height: 1.3em; margin-bottom: .6rem; }
.plan-save {
  display: inline-block; background: #e8f6ee; color: var(--green-ink); font-size: .8rem; font-weight: 700;
  padding: .25rem .6rem; border-radius: 999px; margin-bottom: 1rem;
}
.plan-features { list-style: none; padding: 0; margin: 0 0 1.4rem; flex: 1 1 auto; }
.plan-features li { display: flex; gap: .55rem; align-items: flex-start; font-size: .95rem; margin-bottom: .55rem; }
.plan-features svg { flex: 0 0 auto; margin-top: .32em; color: var(--blue-600); }
.pricing-note { margin-top: 26px; text-align: center; color: var(--muted); font-size: .92rem; }

/* ---------- Devices ---------- */
.device-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.device {
  display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 12px;
  color: var(--ink-soft); font-size: .93rem; font-weight: 600; box-shadow: var(--shadow-xs);
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.device:hover { border-color: var(--blue-200); box-shadow: var(--shadow-sm); transform: translateY(-2px); text-decoration: none; color: var(--blue-700); }
.device svg { width: 34px; height: 34px; color: var(--blue-600); }

/* ---------- Steps ---------- */
.steps { counter-reset: step; display: grid; gap: 20px; grid-template-columns: repeat(4, 1fr); }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 22px; position: relative; box-shadow: var(--shadow-xs); }
.step::before {
  counter-increment: step; content: counter(step);
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 10px; background: var(--blue-600); color: #fff;
  font-weight: 800; font-size: 1rem; margin-bottom: 14px;
}
.step h3 { font-size: 1.08rem; }
.step p { margin-bottom: 0; font-size: .95rem; color: var(--muted); }

/* ---------- FAQ accordion ---------- */
.faq { max-width: 840px; margin-inline: auto; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff; margin-bottom: 12px; box-shadow: var(--shadow-xs); overflow: hidden; }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font: inherit; font-weight: 650; color: var(--ink); text-align: left;
  background: none; border: 0; padding: 18px 20px; cursor: pointer;
}
.faq-q:hover { background: var(--bg-alt); }
.faq-q .chev { flex: 0 0 auto; width: 18px; height: 18px; color: var(--blue-600); transition: transform .2s ease; }
.faq-q[aria-expanded="true"] .chev { transform: rotate(180deg); }
.faq-a { padding: 0 20px; }
.faq-a[hidden] { display: none; }
.faq-a > :first-child { margin-top: 0; }
.faq-a > :last-child { margin-bottom: 20px; }

/* ---------- Value / trust strip ---------- */
.strip { background: var(--bg-alt); border-block: 1px solid var(--line-soft); padding: 26px 0; }
.strip-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 34px; list-style: none; margin: 0; padding: 0; }
.strip-list li { display: flex; align-items: center; gap: .5rem; font-size: .94rem; font-weight: 600; color: var(--ink-soft); margin: 0; }
.strip-list svg { color: var(--blue-600); flex: 0 0 auto; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(135deg, var(--blue-600), #3f7ef2); color: #fff; border-radius: var(--radius-lg); padding: 46px 40px; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.92); max-width: 620px; margin-inline: auto; }
.cta-band .btn-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 1.4rem; }
.cta-band .btn--outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.cta-band .btn--outline:hover { background: rgba(255,255,255,.14); }

/* ---------- Testimonial placeholder component ---------- */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-xs); }
.review p { font-size: .98rem; }
.review .review-meta { display: flex; align-items: center; gap: .6rem; font-size: .88rem; color: var(--muted); margin: 0; }
.review .avatar { width: 34px; height: 34px; border-radius: 50%; background: var(--blue-50); color: var(--blue-700); display: flex; align-items: center; justify-content: center; font-weight: 700; }

/* ---------- Content pages ---------- */
.page-head { background: var(--bg-alt); border-bottom: 1px solid var(--line-soft); padding: 46px 0 40px; }
.page-head h1 { margin-bottom: .35em; }
.page-head p { color: var(--muted); max-width: 720px; margin-bottom: 0; }
.breadcrumb { font-size: .87rem; color: var(--muted); margin-bottom: 1rem; }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; padding: 0; margin: 0; }
.breadcrumb li { margin: 0; }
.breadcrumb li + li::before { content: "/"; margin-right: .4rem; color: var(--line); }

.prose { max-width: 780px; }
.prose h2 { margin-top: 2.2em; }
.prose h3 { margin-top: 1.6em; }
.prose ol li, .prose ul li { margin-bottom: .5em; }
.callout {
  background: var(--blue-50); border: 1px solid var(--blue-100); border-left: 4px solid var(--blue-500);
  border-radius: var(--radius-sm); padding: 16px 20px; margin: 1.6rem 0;
}
.callout p:last-child { margin-bottom: 0; }
.callout--warn { background: #fffbeb; border-color: #fde68a; border-left-color: #f59e0b; }

.toc { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 24px; margin-bottom: 2rem; box-shadow: var(--shadow-xs); }
.toc p { font-weight: 700; color: var(--ink); margin-bottom: .6rem; }
.toc ul { list-style: none; padding: 0; margin: 0; columns: 2; column-gap: 28px; }
.toc li { margin-bottom: .35em; break-inside: avoid; }

.install-block { scroll-margin-top: calc(var(--header-h) + 20px); border: 1px solid var(--line); border-radius: var(--radius); background: #fff; padding: 28px; margin-bottom: 22px; box-shadow: var(--shadow-xs); }
.install-block h2 { margin-top: 0; font-size: 1.45rem; }
.install-block ol { padding-left: 1.2em; }

/* ---------- Tables ---------- */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 1.5rem 0; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
table { border-collapse: collapse; width: 100%; min-width: 520px; font-size: .95rem; }
th, td { text-align: left; padding: 13px 16px; border-bottom: 1px solid var(--line-soft); }
th { background: var(--bg-alt); color: var(--ink); font-weight: 650; }
tr:last-child td { border-bottom: 0; }

/* ---------- Forms / checkout ---------- */
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.field { display: flex; flex-direction: column; gap: .38rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-weight: 600; font-size: .93rem; color: var(--ink); }
.field .hint { font-size: .83rem; color: var(--muted); }
.field input, .field select, .field textarea {
  font: inherit; color: var(--ink); background: #fff;
  border: 1px solid var(--line); border-radius: 11px; padding: .78rem .9rem; width: 100%;
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--blue-500); box-shadow: 0 0 0 3px var(--blue-100); outline: none;
}
.field input[aria-invalid="true"], .field select[aria-invalid="true"] { border-color: #dc2626; }
.field .error { color: #b91c1c; font-size: .85rem; min-height: 1.1em; }
.checkbox-row { display: flex; gap: .6rem; align-items: flex-start; font-size: .93rem; }
.checkbox-row input { width: 18px; height: 18px; margin-top: .22em; flex: 0 0 auto; }

.checkout-layout { display: grid; grid-template-columns: 1.35fr .9fr; gap: 30px; align-items: start; }
.summary { position: sticky; top: calc(var(--header-h) + 20px); background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); }
.summary h2 { font-size: 1.15rem; }
.summary-row { display: flex; justify-content: space-between; gap: 1rem; padding: .55rem 0; border-bottom: 1px dashed var(--line); font-size: .95rem; }
.summary-row:last-of-type { border-bottom: 0; }
.summary-total { display: flex; justify-content: space-between; align-items: baseline; margin-top: .8rem; padding-top: .9rem; border-top: 2px solid var(--line); font-weight: 800; color: var(--ink); font-size: 1.15rem; }

.pay-option { border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 16px 18px; margin-bottom: 12px; background: #fff; }
.pay-option h3 { font-size: 1rem; margin-bottom: .3em; }
.pay-option p { margin-bottom: 0; font-size: .92rem; color: var(--muted); }

.contact-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.contact-card > div { min-width: 0; }
.contact-card { display: flex; gap: 16px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-xs); }
.contact-card .card-icon { margin-bottom: 0; }

/* ---------- Blog ---------- */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.post-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-xs); transition: box-shadow .2s, transform .2s; }
.post-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.post-card .post-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.post-card h3 { font-size: 1.1rem; }
.post-card p { font-size: .95rem; color: var(--muted); flex: 1; }
.post-meta { font-size: .82rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; font-weight: 650; margin-bottom: .6rem; }
.post-thumb { background: linear-gradient(135deg, var(--blue-50), #e6eeff); aspect-ratio: 16 / 9; display: flex; align-items: center; justify-content: center; }
.post-thumb svg { width: 58px; height: 58px; color: var(--blue-500); }

/* ---------- Footer ---------- */
.site-footer { background: #0f172a; color: #cbd5e1; padding: 58px 0 26px; margin-top: 0; }
.site-footer h3 { color: #fff; font-size: .95rem; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 1rem; }
.site-footer a { color: #cbd5e1; }
.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 34px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: .5em; font-size: .94rem; }
.footer-brand { display: inline-flex; align-items: center; gap: .55rem; font-weight: 800; color: #fff; font-size: 1.15rem; margin-bottom: .9rem; }
.footer-brand img { width: 32px; height: 32px; }
.footer-about { font-size: .93rem; color: #94a3b8; max-width: 34em; }
.footer-bottom {
  margin-top: 38px; padding-top: 20px; border-top: 1px solid #1e293b;
  display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; align-items: center;
  font-size: .87rem; color: #94a3b8;
}
.footer-legal { display: flex; flex-wrap: wrap; gap: 6px 18px; list-style: none; margin: 0; padding: 0; }
.footer-legal li { margin: 0; }

/* ---------- Floating contact ---------- */
.floating-contact { position: fixed; right: 16px; bottom: 16px; z-index: 90; display: flex; flex-direction: column; gap: 10px; }
.fab {
  width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: #fff; box-shadow: var(--shadow-md); transition: transform .18s ease;
}
.fab:hover { transform: scale(1.06); text-decoration: none; }
.fab svg { width: 26px; height: 26px; }
.fab--whatsapp { background: #25d366; }
.fab--telegram { background: #29a2da; }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 120;
  max-width: 760px; margin-inline: auto;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 20px 22px;
  display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between;
}
.cookie-banner p { margin: 0; font-size: .92rem; flex: 1 1 320px; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 9px; }
.cookie-banner[hidden] { display: none; }

/* ---------- Misc ---------- */
.notice { border-radius: var(--radius-sm); padding: 14px 18px; font-size: .94rem; margin-bottom: 1rem; }
.notice--ok { background: #ecfdf5; border: 1px solid #a7f3d0; color: #065f46; }
.notice--err { background: #fef2f2; border: 1px solid #fecaca; color: #991b1b; }
.tag { display: inline-block; font-size: .78rem; font-weight: 700; padding: .22rem .55rem; border-radius: 999px; background: var(--blue-50); color: var(--blue-700); }

/* Trademark / non-affiliation notice in the footer */
.footer-trademark {
  margin: 34px 0 0; padding-top: 20px; border-top: 1px solid #1e293b;
  font-size: .8rem; line-height: 1.6; color: #8494a8;
}
.footer-trademark + .footer-bottom { margin-top: 16px; padding-top: 16px; }

/* Compact plan card used by the home-page price teaser */
.plan--compact { padding: 24px 20px; }
.plan--compact .plan-name { font-size: 1.1rem; margin-bottom: .5em; }
.plan--compact .plan-price { margin-bottom: .1rem; }
.plan--compact .plan-price .amount { font-size: 2rem; }
.plan--compact .plan-save { margin-bottom: 1rem; }
.plan--compact .btn { margin-top: auto; }
.plan { scroll-margin-top: calc(var(--header-h) + 20px); }
