:root {
  --ibo-black: #000;
  --ibo-header: #141414;
  --ibo-card: #f4f5f7;
  --ibo-white: #fff;
  --ibo-text: #fff;
  --ibo-muted: #cfcfcf;
  --ibo-red: #e11d48;
  --ibo-red-dark: #be123c;
  --ibo-crimson: #c81e3a;
  --ibo-cyan: #22b8e6;
  --ibo-cyan-dark: #0ea5c9;
  --ibo-gold: #d97706;
  --ibo-radius: 18px;
  --ibo-header-h: 80px;
  --ibo-font: "Karla", Arial, Helvetica, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body.ibo-site,
body.ibo-body,
.ibo-site {
  margin: 0;
  background: var(--ibo-black);
  color: var(--ibo-text);
  font-family: var(--ibo-font);
  font-size: 16px;
  line-height: 1.5;
}

.ibo-site .site,
.ibo-site #page,
.ibo-site .site-header,
.ibo-site .gen-sidebar-nav,
.ibo-site .inside-header,
.ibo-site #site-navigation,
.ibo-site .menu-toggle,
.ibo-site .site-footer,
.ibo-site .inside-site-info {
  display: none !important;
}

.ibo-skip {
  position: absolute;
  left: -999px;
  top: 0;
}

.ibo-skip:focus {
  left: 12px;
  z-index: 10000;
  background: #fff;
  color: #000;
  padding: 8px 12px;
}

.ibo-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--ibo-header-h);
  background: var(--ibo-header);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.ibo-header-inner {
  max-width: 1240px;
  height: 100%;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.ibo-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.ibo-brand img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: block;
}

.ibo-nav {
  display: none;
  align-items: center;
  gap: 22px;
}

.ibo-nav-list {
  display: flex;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ibo-nav-list a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
}

.ibo-nav-list a:hover {
  color: var(--ibo-red);
}

.ibo-lang {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
}

.ibo-flag {
  width: 18px;
  height: 13px;
  border-radius: 2px;
  background: linear-gradient(#000 33%, #dd0000 33% 66%, #ffce00 66%);
  display: inline-block;
}

.ibo-burger {
  width: 52px;
  height: 44px;
  border: 0;
  border-radius: 8px;
  background: var(--ibo-crimson);
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.ibo-burger span {
  width: 20px;
  height: 2px;
  background: #fff;
  display: block;
}

.ibo-mobile {
  background: #0d0d0d;
  padding: 8px 18px 18px;
  border-top: 1px solid #222;
}

.ibo-nav-mobile {
  flex-direction: column;
  gap: 0;
}

.ibo-nav-mobile a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid #222;
}

.ibo-lang-mobile {
  padding: 10px 0;
}

.ibo-main {
  min-height: 60vh;
}

/* Hero */
.ibo-hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 70px 20px 160px;
  text-align: center;
}

.ibo-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 40%, rgba(140, 20, 50, 0.35), rgba(0, 0, 0, 0.82) 58%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.88));
  z-index: 1;
}

.ibo-posters {
  position: absolute;
  inset: -40px;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
  transform: rotate(-6deg) scale(1.18);
  opacity: 0.55;
  z-index: 0;
}

.ibo-poster {
  aspect-ratio: 2 / 3;
  border-radius: 6px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
}

.ibo-hero-content {
  position: relative;
  z-index: 2;
  max-width: 920px;
}

.ibo-hero h1,
.ibo-hero h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 4.4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.65);
}

.ibo-hero .ibo-sub {
  font-size: clamp(22px, 3.4vw, 36px);
  font-weight: 800;
  margin-bottom: 28px;
}

.ibo-counter {
  margin: 18px 0 28px;
  font-weight: 800;
  line-height: 1.1;
}

.ibo-counter b {
  display: block;
  font-size: clamp(34px, 5vw, 48px);
}

.ibo-counter span {
  font-size: 28px;
}

.ibo-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.ibo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 180px;
  padding: 12px 22px;
  border-radius: 6px;
  border: 0;
  font: 700 16px/1 var(--ibo-font);
  text-decoration: none;
  cursor: pointer;
  color: #fff;
}

.ibo-btn-red {
  background: linear-gradient(180deg, #f43f5e, var(--ibo-red));
  box-shadow: 0 8px 18px rgba(225, 29, 72, 0.35);
}

.ibo-btn-red:hover {
  background: var(--ibo-red-dark);
}

.ibo-btn-cyan {
  background: linear-gradient(180deg, #38c7ef, var(--ibo-cyan));
  box-shadow: 0 8px 18px rgba(34, 184, 230, 0.3);
}

.ibo-btn-cyan:hover {
  background: var(--ibo-cyan-dark);
}

.ibo-btn-dark {
  background: #111;
  color: #fff;
}

.ibo-btn-gold {
  background: var(--ibo-gold);
  color: #fff;
}

/* Activation card */
.ibo-activate-wrap {
  position: relative;
  z-index: 3;
  margin: -120px auto 40px;
  max-width: 760px;
  padding: 0 16px 20px;
}

.ibo-activate {
  background: #eceff3;
  color: #111;
  border-radius: 28px 28px 16px 16px;
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.ibo-activate-head {
  text-align: center;
  padding: 22px 20px 8px;
}

.ibo-activate-head h2 {
  margin: 0;
  font-size: 28px;
  font-weight: 800;
}

.ibo-activate-head p {
  margin: 4px 0 0;
  color: #666;
  font-weight: 600;
}

.ibo-activate-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 28px 18px;
  border-bottom: 1px solid #d9dee6;
}

.ibo-activate-total .label {
  font-weight: 700;
  color: #555;
}

.ibo-pill {
  display: inline-block;
  margin-top: 8px;
  background: var(--ibo-red);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 999px;
}

.ibo-price {
  font-size: 34px;
  font-weight: 800;
  color: var(--ibo-red);
}

.ibo-activate-body {
  padding: 22px 22px 28px;
}

.ibo-activate-body h3 {
  margin: 0 0 16px;
  font-size: 26px;
}

.ibo-field {
  margin-bottom: 14px;
}

.ibo-field label {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
  color: #333;
}

.ibo-field input,
.ibo-search {
  width: 100%;
  border: 0;
  background: #eef1f6;
  border-radius: 12px;
  padding: 14px 16px;
  font: 500 16px/1.2 var(--ibo-font);
  color: #111;
}

.ibo-field input::placeholder,
.ibo-search::placeholder {
  color: #9aa3b2;
}

.ibo-hp {
  position: absolute;
  left: -9999px;
}

.ibo-form-error {
  background: #fee2e2;
  color: #991b1b;
  padding: 10px 12px;
  border-radius: 10px;
  margin-bottom: 12px;
  font-weight: 600;
}

.ibo-success {
  text-align: center;
  padding: 28px 12px 12px;
}

.ibo-success h3 {
  margin-top: 0;
}

.ibo-support {
  max-width: 760px;
  margin: 0 auto 48px;
  padding: 0 16px;
}

.ibo-wa-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: #16a34a;
  color: #fff;
  text-decoration: none;
  border-radius: 14px;
  padding: 14px 18px;
  font-weight: 700;
}

.ibo-trust {
  margin-top: 14px;
  color: #9ca3af;
  font-size: 14px;
}

.ibo-trust a {
  color: #00b67a;
  font-weight: 800;
  text-decoration: none;
}

/* Sections */
.ibo-section {
  padding: 56px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.ibo-section h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin: 0 0 10px;
  text-align: center;
}

.ibo-lead {
  text-align: center;
  color: var(--ibo-muted);
  margin: 0 0 28px;
}

.ibo-devices {
  display: grid;
  gap: 28px;
}

.ibo-devices ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ibo-devices li {
  padding: 10px 0 14px;
  border-bottom: 1px solid #222;
}

.ibo-devices strong {
  display: block;
  margin-bottom: 4px;
}

.ibo-phone {
  width: min(280px, 70%);
  margin: 0 auto;
  aspect-ratio: 9 / 18;
  border: 8px solid #2a2a2a;
  border-radius: 32px;
  background:
    linear-gradient(180deg, #1a1a1a, #0a0a0a);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.ibo-phone::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(225, 29, 72, 0.35), transparent 30%),
    repeating-linear-gradient(#151515 0 48px, #101010 48px 50px);
}

/* Pricing */
.ibo-plans {
  display: grid;
  gap: 22px;
}

.ibo-plan {
  background: #111;
  border: 1px solid #2a2a2a;
  border-radius: 18px;
  padding: 24px 20px 20px;
  text-align: center;
  position: relative;
}

.ibo-plan.popular {
  border-color: var(--ibo-red);
}

.ibo-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ibo-red);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
}

.ibo-plan h3 {
  margin: 8px 0 4px;
  font-size: 26px;
}

.ibo-plan .ibo-plan-price {
  font-size: 42px;
  margin: 0 0 12px;
  color: var(--ibo-red);
}

.ibo-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 28px 0 0;
}

.ibo-features span {
  background: #151515;
  border-radius: 10px;
  padding: 10px 8px;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
}

.ibo-apps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.ibo-app {
  background: #111;
  border-radius: 12px;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #ddd;
  text-align: center;
  padding: 10px;
  font-size: 12px;
}

/* FAQ */
.ibo-faq {
  max-width: 860px;
}

.ibo-acc {
  border-bottom: 1px solid #2a2a2a;
}

.ibo-acc button {
  width: 100%;
  background: none;
  border: 0;
  color: #fff;
  text-align: left;
  font: 700 16px/1.4 var(--ibo-font);
  padding: 16px 8px;
  cursor: pointer;
}

.ibo-acc button::after {
  content: "+";
  float: right;
  color: var(--ibo-red);
  font-size: 22px;
}

.ibo-acc.is-open button::after {
  content: "–";
}

.ibo-acc-panel {
  display: none;
  color: #cfcfcf;
  padding: 0 8px 16px;
}

.ibo-acc.is-open .ibo-acc-panel {
  display: block;
}

/* Inner pages */
.ibo-page {
  padding: 36px 18px 64px;
  max-width: 980px;
  margin: 0 auto;
}

.ibo-page h1 {
  text-align: center;
  font-size: clamp(32px, 6vw, 52px);
  margin: 10px 0 24px;
}

.ibo-download-hero h1 {
  color: var(--ibo-crimson);
  font-weight: 800;
}

.ibo-download-hero h2 {
  color: #f9a8d4;
  text-align: center;
  margin: 0 0 8px;
}

.ibo-download-hero p {
  text-align: center;
  color: #ddd;
}

.ibo-device {
  border-top: 1px solid #333;
  padding: 28px 0;
  text-align: center;
}

.ibo-device h3 {
  margin-top: 0;
}

.ibo-device ol {
  display: inline-block;
  text-align: left;
}

.ibo-reseller-grid {
  display: grid;
  gap: 28px;
}

.ibo-reseller-card {
  background: #fff;
  color: #111;
  border-radius: 18px;
  padding: 28px 18px;
  text-align: center;
}

.ibo-reseller-card h2 {
  margin: 0;
  font-size: 32px;
}

.ibo-reseller-card .price {
  color: var(--ibo-gold);
  font-size: 42px;
  font-weight: 800;
  margin: 6px 0 18px;
}

.ibo-box {
  width: min(280px, 80%);
  margin: 0 auto 18px;
  aspect-ratio: 1;
  border-radius: 8px;
  background: linear-gradient(135deg, #f5e6a8, #c9a227 45%, #fff 45%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7a5b00;
  font-weight: 800;
  font-size: 28px;
  text-align: center;
  line-height: 1.1;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.ibo-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 28px;
  background: #111;
}

.ibo-table th,
.ibo-table td {
  border: 1px solid #333;
  padding: 12px;
  text-align: left;
}

.ibo-catalog {
  display: grid;
  gap: 18px;
}

.ibo-catalog-toolbar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.ibo-groups,
.ibo-channels {
  background: #0f0f0f;
  border: 1px solid #222;
  border-radius: 14px;
  padding: 16px;
  max-height: 640px;
  overflow: auto;
}

.ibo-groups h2,
.ibo-channels h2 {
  margin: 0 0 12px;
  font-size: 20px;
  text-align: left;
}

.ibo-chip,
.ibo-channel {
  display: block;
  padding: 8px 6px;
  border-bottom: 1px solid #1d1d1d;
  color: #ddd;
  font-size: 14px;
}

.ibo-legal {
  color: #ddd;
}

.ibo-legal h2 {
  text-align: left;
  font-size: 22px;
  margin: 28px 0 8px;
}

.ibo-footer {
  border-top: 1px solid #222;
  padding: 22px 16px 80px;
  color: #9ca3af;
  font-size: 13px;
  text-align: center;
}

.ibo-footer a {
  color: #d1d5db;
  text-decoration: none;
}

.ibo-footer a:hover {
  color: #fff;
}

.ibo-wa {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--ibo-red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
  z-index: 60;
  text-decoration: none;
}

.ibo-wa:hover {
  background: var(--ibo-red-dark);
}

@media (min-width: 900px) {
  .ibo-burger {
    display: none;
  }

  .ibo-mobile {
    display: none !important;
  }

  .ibo-nav {
    display: flex;
  }

  .ibo-hero {
    min-height: 720px;
    padding-bottom: 180px;
  }

  .ibo-devices {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .ibo-plans {
    grid-template-columns: 1fr 1fr;
    max-width: 760px;
    margin: 0 auto;
  }

  .ibo-reseller-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ibo-catalog {
    grid-template-columns: 1fr 1.2fr;
  }

  .ibo-apps {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
}
