/* ==========================================================================
   Zainco Technology — Main Stylesheet
   ISP corporate website · RTL / Arabic
   ========================================================================== */

/* ----- Design tokens ----- */
:root {
  /* Brand */
  --navy-900: #07182b;
  --navy-800: #0a2540;
  --navy-700: #103354;
  --navy-600: #1c456b;
  --cyan-600: #0f8fb8;
  --cyan-500: #15a9d6;
  --cyan-400: #34bce4;
  --cyan-300: #6fd2ec;
  --sky:      #e8f6fb;

  /* Neutrals */
  --ink:       #0e2233;
  --text:      #33475b;
  --text-soft: #5d6f7e;
  --muted:     #8a98a5;
  --line:      #e4ebf0;
  --line-soft: #eef3f6;
  --bg:        #ffffff;
  --bg-soft:   #f5f9fb;
  --bg-soft-2: #eaf3f7;

  /* Effects */
  --radius:    18px;
  --radius-sm: 12px;
  --radius-lg: 26px;
  --shadow-sm: 0 2px 10px rgba(10,37,64,.05);
  --shadow:    0 12px 36px rgba(10,37,64,.09);
  --shadow-lg: 0 26px 60px rgba(10,37,64,.16);
  --grad-brand: linear-gradient(135deg, var(--cyan-500) 0%, var(--cyan-600) 45%, var(--navy-700) 100%);
  --grad-dark:  linear-gradient(150deg, var(--navy-900) 0%, var(--navy-800) 55%, var(--navy-700) 100%);

  --header-h: 78px;
  --maxw: 1200px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }

body {
  font-family: 'Cairo', system-ui, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.8;
  font-size: 16px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

::selection { background: var(--cyan-400); color: #fff; }

/* ----- Layout helpers ----- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }
.section--soft { background: var(--bg-soft); }
.section--tight { padding: 64px 0; }

.section-head {
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head.is-start { margin-inline: 0; text-align: start; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .02em;
  color: var(--cyan-600);
  background: var(--bg-soft-2);
  border: 1px solid rgba(21,169,214,.22);
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--cyan-500);
}

.section-title {
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 800;
  line-height: 1.3;
  color: var(--navy-800);
  letter-spacing: -.01em;
}
.section-title .hl { color: var(--cyan-600); }

.section-sub {
  margin-top: 14px;
  font-size: 17px;
  color: var(--text-soft);
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 800;
  font-size: 15.5px;
  padding: 14px 28px;
  border-radius: 999px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; }
.btn--primary {
  background: var(--grad-brand);
  color: #fff;
  box-shadow: 0 12px 26px rgba(21,169,214,.34);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 18px 34px rgba(21,169,214,.44); }
.btn--dark { background: var(--navy-800); color: #fff; }
.btn--dark:hover { transform: translateY(-3px); background: var(--navy-700); }
.btn--ghost {
  background: rgba(255,255,255,.08);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.35);
}
.btn--ghost:hover { background: rgba(255,255,255,.16); transform: translateY(-3px); }
.btn--light {
  background: #fff;
  color: var(--navy-800);
  border: 1.5px solid var(--line);
}
.btn--light:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--cyan-300); }
.btn--lg { padding: 17px 36px; font-size: 16.5px; }
.btn--block { width: 100%; }

/* ==========================================================================
   Announcement bar
   ========================================================================== */
.announce {
  background: var(--navy-900);
  color: rgba(255,255,255,.82);
  font-size: 13.5px;
}
.announce .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 42px;
  padding-block: 6px;
}
.announce-group { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.announce a { display: inline-flex; align-items: center; gap: 7px; transition: color .2s; }
.announce a:hover { color: var(--cyan-300); }
.announce svg { width: 15px; height: 15px; color: var(--cyan-400); }
.announce-socials { display: flex; align-items: center; gap: 12px; }
.announce-socials a {
  width: 28px; height: 28px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
}
.announce-socials a:hover { background: var(--cyan-500); color: #fff; }
.announce-socials svg { color: #fff; }
.live-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,73,73,.16);
  color: #ff8585;
  border: 1px solid rgba(255,73,73,.32);
  padding: 4px 13px;
  border-radius: 999px;
  font-weight: 700;
}
.live-pill .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #ff4d4d;
  animation: livePulse 1.6s infinite;
}
@keyframes livePulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,77,77,.55); }
  70%  { box-shadow: 0 0 0 8px rgba(255,77,77,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,77,77,0); }
}

/* ==========================================================================
   Header / navigation
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow .25s ease;
}
.header.is-stuck { box-shadow: 0 6px 26px rgba(10,37,64,.1); }
.header .container {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: var(--header-h);
}

.brand { display: flex; align-items: center; gap: 11px; }
.brand img { height: 50px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text b { font-size: 19px; font-weight: 800; color: var(--navy-800); }
.brand-text span { font-size: 11.5px; font-weight: 700; color: var(--cyan-600); letter-spacing: .04em; }

.nav { margin-inline-start: auto; }
.nav-mob-cta { display: none; }
.nav-list { display: flex; align-items: center; gap: 4px; }
.nav-list a {
  display: block;
  font-weight: 700;
  font-size: 15px;
  color: var(--navy-700);
  padding: 10px 15px;
  border-radius: 10px;
  transition: color .2s, background .2s;
}
.nav-list a:hover { color: var(--cyan-600); background: var(--bg-soft); }
.nav-list a.is-active { color: var(--cyan-600); }
.nav-list a.is-active::after {
  content: '';
  display: block;
  height: 3px; width: 22px;
  margin: 3px auto 0;
  border-radius: 3px;
  background: var(--cyan-500);
}

.header-cta { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--bg-soft);
  color: var(--navy-800);
}
.nav-toggle svg { width: 24px; height: 24px; margin: 0 auto; }

.nav-backdrop {
  position: fixed; inset: 0;
  background: rgba(7,24,43,.5);
  opacity: 0; visibility: hidden;
  transition: opacity .3s;
  z-index: 110;
}
.nav-backdrop.is-open { opacity: 1; visibility: visible; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  background: var(--grad-dark);
  color: #fff;
  overflow: hidden;
  padding: 96px 0 110px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 8%, rgba(21,169,214,.28), transparent 70%),
    radial-gradient(ellipse 50% 50% at 5% 95%, rgba(21,169,214,.14), transparent 70%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(21,169,214,.14);
  border: 1px solid rgba(21,169,214,.32);
  color: var(--cyan-300);
  font-weight: 700;
  font-size: 13.5px;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.hero-badge svg { width: 16px; height: 16px; }
.hero h1 {
  font-size: clamp(32px, 4.6vw, 56px);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -.015em;
}
.hero h1 .hl {
  background: linear-gradient(120deg, var(--cyan-300), var(--cyan-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lead {
  margin-top: 20px;
  font-size: 17.5px;
  line-height: 1.9;
  color: rgba(255,255,255,.8);
  max-width: 540px;
}
.hero-actions {
  margin-top: 34px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-trust {
  margin-top: 38px;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.hero-trust div { display: flex; flex-direction: column; }
.hero-trust b { font-size: 27px; font-weight: 800; color: #fff; }
.hero-trust span { font-size: 13.5px; color: rgba(255,255,255,.62); }

/* Hero visual */
.hero-visual { position: relative; }
.hero-visual .photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.12);
}
.hero-visual .photo img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}
.hero-float {
  position: absolute;
  background: rgba(255,255,255,.97);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-float .ic {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: var(--grad-brand);
  color: #fff;
  flex-shrink: 0;
}
.hero-float .ic svg { width: 23px; height: 23px; }
.hero-float b { display: block; font-size: 15px; color: var(--navy-800); font-weight: 800; line-height: 1.3; }
.hero-float span { font-size: 12.5px; color: var(--text-soft); }
.hero-float--a { top: 26px; inset-inline-start: -34px; }
.hero-float--b { bottom: 30px; inset-inline-end: -28px; }

/* ==========================================================================
   Feature strip (quick benefits)
   ========================================================================== */
.strip {
  background: #fff;
  margin-top: -56px;
  position: relative;
  z-index: 5;
}
.strip-inner {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.strip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 9px;
  padding: 26px 14px;
  border-inline-end: 1px solid var(--line-soft);
}
.strip-item:last-child { border-inline-end: none; }
.strip-item .ic {
  width: 46px; height: 46px;
  border-radius: 13px;
  display: grid; place-items: center;
  background: var(--bg-soft-2);
  color: var(--cyan-600);
}
.strip-item .ic svg { width: 24px; height: 24px; }
.strip-item b { font-size: 14.5px; color: var(--navy-800); font-weight: 800; }

/* ==========================================================================
   About preview
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 60px;
  align-items: center;
}
.about-media { position: relative; }
.about-media .main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-media .main img { width: 100%; height: 460px; object-fit: cover; }
.about-media .badge {
  position: absolute;
  inset-inline-start: -26px;
  bottom: -26px;
  background: var(--grad-brand);
  color: #fff;
  border-radius: 20px;
  padding: 22px 26px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.about-media .badge b { font-size: 40px; font-weight: 800; display: block; line-height: 1; }
.about-media .badge span { font-size: 13.5px; opacity: .9; }

.about-list { margin-top: 24px; display: grid; gap: 14px; }
.about-list li {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  font-size: 15.5px;
  color: var(--text);
}
.about-list .tick {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 8px;
  background: var(--bg-soft-2);
  color: var(--cyan-600);
  display: grid; place-items: center;
}
.about-list .tick svg { width: 16px; height: 16px; }
.about-list li b { color: var(--navy-800); font-weight: 800; }

/* ==========================================================================
   Stats
   ========================================================================== */
.stats {
  background: var(--grad-dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 60% at 85% 100%, rgba(21,169,214,.22), transparent 70%);
}
.stats-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.stat-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: transform .25s, border-color .25s, background .25s;
}
.stat-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,.08);
  border-color: rgba(21,169,214,.5);
}
.stat-card .ic {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--grad-brand);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.stat-card .ic svg { width: 27px; height: 27px; color: #fff; }
.stat-num {
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  color: #fff;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.stat-num .suffix { font-size: 26px; color: var(--cyan-400); }
.stat-card .label {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 700;
  color: rgba(255,255,255,.9);
}
.stat-card .desc { font-size: 13.5px; color: rgba(255,255,255,.58); }

/* ==========================================================================
   Why-us value cards
   ========================================================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  position: relative;
  overflow: hidden;
}
.value-card::after {
  content: '';
  position: absolute;
  inset-inline-start: 0; top: 0;
  width: 100%; height: 4px;
  background: var(--grad-brand);
  transform: scaleX(0);
  transform-origin: inline-start;
  transition: transform .3s ease;
}
.value-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.value-card:hover::after { transform: scaleX(1); }
.value-card .ic {
  width: 58px; height: 58px;
  border-radius: 16px;
  background: var(--bg-soft-2);
  color: var(--cyan-600);
  display: grid; place-items: center;
  margin-bottom: 20px;
  transition: background .25s, color .25s;
}
.value-card:hover .ic { background: var(--grad-brand); color: #fff; }
.value-card .ic svg { width: 29px; height: 29px; }
.value-card h3 { font-size: 19.5px; font-weight: 800; color: var(--navy-800); margin-bottom: 9px; }
.value-card p { font-size: 15px; color: var(--text-soft); line-height: 1.85; }

/* ==========================================================================
   WiFiber technology
   ========================================================================== */
.wifiber-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items: center;
}
.wifiber-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.wifiber-media img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; }
.wifiber-media .tag {
  position: absolute;
  inset-inline-end: 20px; bottom: 20px;
  background: rgba(255,255,255,.96);
  border-radius: 14px;
  padding: 12px 18px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow);
}
.wifiber-media .tag img { width: 96px; height: auto; min-height: auto; }
.feature-rows { margin-top: 26px; display: grid; gap: 16px; }
.feature-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--bg-soft);
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  padding: 18px 20px;
  transition: transform .2s, box-shadow .2s;
}
.feature-row:hover { transform: translateX(-5px); box-shadow: var(--shadow-sm); }
.feature-row .ic {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--grad-brand);
  color: #fff;
  display: grid; place-items: center;
}
.feature-row .ic svg { width: 23px; height: 23px; }
.feature-row b { display: block; font-size: 16px; color: var(--navy-800); font-weight: 800; }
.feature-row span { font-size: 14px; color: var(--text-soft); }

/* ==========================================================================
   Packages
   ========================================================================== */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  align-items: stretch;
}
.pkg-card {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  position: relative;
}
.pkg-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.pkg-card.is-featured {
  border-color: var(--cyan-500);
  box-shadow: 0 22px 50px rgba(21,169,214,.2);
}
.pkg-card.is-featured::before {
  content: 'الأكثر طلباً';
  position: absolute;
  top: -13px; inset-inline-start: 50%;
  transform: translateX(50%);
  background: var(--grad-brand);
  color: #fff;
  font-size: 12.5px;
  font-weight: 800;
  padding: 5px 18px;
  border-radius: 999px;
  white-space: nowrap;
}
.pkg-name {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 800;
  color: var(--cyan-600);
}
.pkg-name svg { width: 20px; height: 20px; }
.pkg-speed {
  margin-top: 16px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.pkg-speed b { font-size: 52px; font-weight: 800; color: var(--navy-800); line-height: 1; }
.pkg-speed span { font-size: 16px; font-weight: 700; color: var(--text-soft); }
.pkg-sym { font-size: 13.5px; color: var(--muted); margin-top: 4px; }
.pkg-price {
  margin: 20px 0;
  padding: 14px 0;
  border-top: 1px dashed var(--line);
  border-bottom: 1px dashed var(--line);
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.pkg-price b { font-size: 34px; font-weight: 800; color: var(--cyan-600); }
.pkg-price span { font-size: 14.5px; color: var(--text-soft); font-weight: 700; }
.pkg-feats { display: grid; gap: 9px; margin-bottom: 22px; }
.pkg-feats li {
  display: flex; gap: 9px; align-items: center;
  font-size: 14px; color: var(--text);
}
.pkg-feats svg { width: 17px; height: 17px; color: var(--cyan-500); flex-shrink: 0; }
.pkg-card .btn { margin-top: auto; }

/* ==========================================================================
   Coverage
   ========================================================================== */
.coverage-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 52px;
  align-items: center;
}
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.area-tags span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy-700);
  transition: transform .18s, border-color .18s, color .18s;
}
.area-tags span:hover { transform: translateY(-3px); border-color: var(--cyan-400); color: var(--cyan-600); }
.area-tags span::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan-500);
}
.coverage-soon {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--grad-dark);
  color: #fff;
  border-radius: var(--radius);
  padding: 22px 26px;
}
.coverage-soon .ic {
  flex-shrink: 0;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(21,169,214,.2);
  color: var(--cyan-300);
  display: grid; place-items: center;
}
.coverage-soon .ic svg { width: 27px; height: 27px; }
.coverage-soon b { font-size: 17px; font-weight: 800; color: #fff; }
.coverage-soon span { font-size: 14px; color: rgba(255,255,255,.7); }

/* Coverage radar visualization */
.coverage-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 470px;
  background: var(--grad-dark);
  border: 1px solid rgba(21,169,214,.25);
  box-shadow: var(--shadow-lg);
}
.coverage-visual::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(21,169,214,.24) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  -webkit-mask-image: radial-gradient(ellipse 78% 74% at 50% 47%, #000 28%, transparent 82%);
  mask-image: radial-gradient(ellipse 78% 74% at 50% 47%, #000 28%, transparent 82%);
}
.coverage-visual::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 47%, rgba(21,169,214,.3), transparent 62%);
  pointer-events: none;
}
.cv-rings { position: absolute; top: 47%; left: 50%; width: 0; height: 0; }
.cv-ring {
  position: absolute;
  top: 0; left: 0;
  border: 1.5px solid rgba(21,169,214,.45);
  border-radius: 50%;
  transform: translate(-50%,-50%);
  animation: cvPulse 3.6s ease-out infinite;
}
.cv-ring:nth-child(1) { width: 150px; height: 150px; }
.cv-ring:nth-child(2) { width: 290px; height: 290px; animation-delay: 1.2s; }
.cv-ring:nth-child(3) { width: 430px; height: 430px; animation-delay: 2.4s; }
@keyframes cvPulse {
  0%   { width: 70px; height: 70px; opacity: .85; }
  100% { width: 480px; height: 480px; opacity: 0; }
}
.cv-core {
  position: absolute;
  top: 47%; left: 50%;
  transform: translate(-50%,-50%);
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--grad-brand);
  display: grid; place-items: center;
  box-shadow: 0 0 0 9px rgba(21,169,214,.16), 0 14px 34px rgba(21,169,214,.45);
  z-index: 3;
}
.cv-core svg { width: 39px; height: 39px; color: #fff; }
.cv-pin {
  position: absolute;
  width: 25px; height: 25px;
  border-radius: 50%;
  background: #fff;
  display: grid; place-items: center;
  box-shadow: 0 5px 15px rgba(0,0,0,.45);
  transform: translate(-50%,-50%);
  z-index: 2;
}
.cv-pin svg { width: 14px; height: 14px; color: var(--cyan-600); }
.cv-pin.is-key { width: 33px; height: 33px; background: var(--grad-brand); }
.cv-pin.is-key svg { width: 18px; height: 18px; color: #fff; }
.cv-pin.is-key::after {
  content: '';
  position: absolute; inset: -2px;
  border-radius: 50%;
  border: 2px solid var(--cyan-400);
  animation: cvPing 2.6s ease-out infinite;
}
@keyframes cvPing {
  0%   { transform: scale(1); opacity: .75; }
  100% { transform: scale(2.7); opacity: 0; }
}
.cv-badge {
  position: absolute;
  inset-inline-start: 20px;
  bottom: 20px;
  z-index: 4;
  display: flex; align-items: center; gap: 11px;
  background: rgba(255,255,255,.97);
  border-radius: 15px;
  padding: 12px 16px;
  box-shadow: var(--shadow);
}
.cv-badge .ic {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--grad-brand);
  display: grid; place-items: center;
}
.cv-badge .ic svg { width: 22px; height: 22px; color: #fff; }
.cv-badge b { font-size: 22px; font-weight: 800; color: var(--navy-800); line-height: 1.05; }
.cv-badge span { font-size: 12.5px; color: var(--text-soft); }
.cv-chip {
  position: absolute;
  inset-inline-end: 20px;
  top: 20px;
  z-index: 4;
  display: flex; align-items: center; gap: 7px;
  background: rgba(7,24,43,.62);
  border: 1px solid rgba(21,169,214,.32);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  padding: 7px 13px;
  border-radius: 999px;
}
.cv-chip .live {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cyan-400);
  animation: livePulse 1.8s infinite;
}

/* ==========================================================================
   MANRS certification
   ========================================================================== */
.manrs {
  background:
    linear-gradient(rgba(7,24,43,.93), rgba(10,37,64,.95));
  color: #fff;
  position: relative;
}
.manrs-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 50px;
  align-items: center;
}
.manrs-badge {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(21,169,214,.35);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
}
.manrs-seal {
  width: 132px; height: 132px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--grad-brand);
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 8px rgba(21,169,214,.16);
}
.manrs-seal svg { width: 62px; height: 62px; color: #fff; }
.manrs-badge .as {
  font-weight: 800;
  font-size: 21px;
  color: #fff;
  letter-spacing: .03em;
}
.manrs-badge .as-sub { font-size: 13px; color: var(--cyan-300); font-weight: 700; }
.manrs h2 { font-size: clamp(24px, 3vw, 34px); font-weight: 800; line-height: 1.35; }
.manrs h2 .hl { color: var(--cyan-300); }
.manrs p { margin-top: 14px; color: rgba(255,255,255,.74); font-size: 16px; line-height: 1.9; }
.manrs-meta {
  margin-top: 22px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.manrs-meta span {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13.5px;
  font-weight: 700;
}
.manrs-meta svg { width: 16px; height: 16px; color: var(--cyan-400); }

/* ==========================================================================
   Team
   ========================================================================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.team-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.team-card img { width: 100%; aspect-ratio: 3/3.6; object-fit: cover; transition: transform .4s; }
.team-card:hover img { transform: scale(1.06); }
.team-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,24,43,.6), transparent 45%);
}

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta {
  background: var(--grad-brand);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  inset-inline-end: -80px; top: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
}
.cta::after {
  content: '';
  position: absolute;
  inset-inline-start: -60px; bottom: -120px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
}
.cta-inner {
  position: relative;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.cta h2 { font-size: clamp(26px, 3.4vw, 40px); font-weight: 800; line-height: 1.35; }
.cta p { margin-top: 14px; font-size: 17px; color: rgba(255,255,255,.88); }
.cta-actions {
  margin-top: 30px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: var(--navy-900);
  color: rgba(255,255,255,.66);
  padding-top: 72px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
  gap: 44px;
  padding-bottom: 52px;
}
.footer-brand img { height: 56px; width: auto; background: #fff; border-radius: 12px; padding: 8px 10px; }
.footer-brand p { margin-top: 16px; font-size: 14.5px; line-height: 1.9; max-width: 320px; }
.footer-socials { margin-top: 18px; display: flex; gap: 10px; }
.footer-socials a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,.07);
  display: grid; place-items: center;
  color: #fff;
  transition: background .2s, transform .2s;
}
.footer-socials a:hover { background: var(--cyan-500); transform: translateY(-3px); }
.footer-socials svg { width: 18px; height: 18px; }
.footer-col h4 {
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 18px;
}
.footer-col ul { display: grid; gap: 11px; }
.footer-col a { font-size: 14.5px; transition: color .2s, padding .2s; }
.footer-col a:hover { color: var(--cyan-300); padding-inline-start: 5px; }
.footer-contact li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14.5px;
  margin-bottom: 14px;
}
.footer-contact .ic {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(21,169,214,.16);
  color: var(--cyan-300);
  display: grid; place-items: center;
}
.footer-contact .ic svg { width: 18px; height: 18px; }
.footer-contact b { color: #fff; font-weight: 700; display: block; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 13.5px;
}
.footer-bottom a:hover { color: var(--cyan-300); }
.footer-bottom .links { display: flex; gap: 18px; }

/* ==========================================================================
   Floating WhatsApp
   ========================================================================== */
.wa-float {
  position: fixed;
  inset-inline-start: 22px;
  bottom: 22px;
  z-index: 90;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(37,211,102,.5);
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 32px; height: 32px; color: #fff; }
.wa-float::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: waPing 2s infinite;
}
@keyframes waPing {
  0%   { transform: scale(1); opacity: .7; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* Floating "Live broadcast" button */
.live-float {
  position: fixed;
  inset-inline-end: 22px;
  bottom: 22px;
  z-index: 95;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #ff4d4d 0%, #c61f1f 100%);
  color: #fff;
  padding: 13px 20px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(255,77,77,.45);
  font-weight: 800;
  font-size: 14.5px;
  letter-spacing: .01em;
  transition: transform .22s ease, box-shadow .22s ease;
  text-decoration: none;
}
.live-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(255,77,77,.55);
}
.live-float .dot {
  position: relative;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
}
.live-float .dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #fff;
  animation: liveFloatPing 1.6s ease-out infinite;
}
@keyframes liveFloatPing {
  0%   { transform: scale(1);   opacity: .85; }
  100% { transform: scale(2.4); opacity: 0; }
}
@media (max-width: 620px) {
  .live-float { padding: 11px 16px; font-size: 13.5px; bottom: 18px; inset-inline-end: 18px; }
}

/* ==========================================================================
   Sub-page hero
   ========================================================================== */
.page-hero {
  background: var(--grad-dark);
  color: #fff;
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 60% at 85% 10%, rgba(21,169,214,.26), transparent 70%);
}
.page-hero .container { position: relative; }
.page-hero h1 {
  font-size: clamp(28px, 3.8vw, 44px);
  font-weight: 800;
  line-height: 1.3;
}
.page-hero p { margin-top: 12px; color: rgba(255,255,255,.74); font-size: 16.5px; max-width: 620px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  color: rgba(255,255,255,.6);
  margin-bottom: 16px;
}
.breadcrumb a:hover { color: var(--cyan-300); }
.breadcrumb svg { width: 14px; height: 14px; transform: scaleX(-1); }
.breadcrumb .here { color: var(--cyan-300); font-weight: 700; }

/* ==========================================================================
   Generic content cards (about / dealers / contact)
   ========================================================================== */
.lead-text { font-size: 17px; line-height: 2; color: var(--text); }
.lead-text + .lead-text { margin-top: 16px; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split .media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.split .media img { width: 100%; height: 100%; min-height: 380px; object-fit: cover; }

.info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform .25s, box-shadow .25s;
}
.info-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.info-card .ic {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--bg-soft-2);
  color: var(--cyan-600);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.info-card .ic svg { width: 27px; height: 27px; }
.info-card h3 { font-size: 18px; font-weight: 800; color: var(--navy-800); margin-bottom: 8px; }
.info-card p { font-size: 14.5px; color: var(--text-soft); line-height: 1.8; }

/* Dealers */
.dealer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.dealer-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  transition: transform .22s, box-shadow .22s, border-color .22s;
}
.dealer-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--cyan-300); }
.dealer-top { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.dealer-num {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 11px;
  background: var(--grad-brand);
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  display: grid; place-items: center;
}
.dealer-card h3 { font-size: 16.5px; font-weight: 800; color: var(--navy-800); }
.dealer-card .loc,
.dealer-card .tel {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--text-soft);
  margin-top: 7px;
}
.dealer-card svg { width: 17px; height: 17px; color: var(--cyan-600); flex-shrink: 0; margin-top: 4px; }
.dealer-card .tel a { color: var(--navy-800); font-weight: 700; direction: ltr; }
.dealer-card .tel a:hover { color: var(--cyan-600); }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 44px;
  align-items: start;
}
.contact-info { display: grid; gap: 16px; }
.contact-item {
  display: flex;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  align-items: flex-start;
  transition: transform .2s, box-shadow .2s;
}
.contact-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.contact-item .ic {
  flex-shrink: 0;
  width: 50px; height: 50px;
  border-radius: 13px;
  background: var(--grad-brand);
  color: #fff;
  display: grid; place-items: center;
}
.contact-item .ic svg { width: 25px; height: 25px; }
.contact-item h3 { font-size: 16px; font-weight: 800; color: var(--navy-800); margin-bottom: 4px; }
.contact-item p, .contact-item a { font-size: 14.5px; color: var(--text-soft); }
.contact-item a:hover { color: var(--cyan-600); }
.contact-item .ltr { direction: ltr; display: inline-block; }

.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 38px;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy-800);
  margin-bottom: 7px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
  background: var(--bg-soft);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 13px 16px;
  transition: border-color .2s, background .2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--cyan-500);
  background: #fff;
}
.field textarea { resize: vertical; min-height: 120px; }

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  line-height: 0;
}
.map-embed iframe { width: 100%; height: 360px; border: 0; }

/* ----- Misc ----- */
.timeline {
  position: relative;
  margin-top: 10px;
  padding-inline-start: 30px;
}
.timeline::before {
  content: '';
  position: absolute;
  inset-inline-start: 7px; top: 8px; bottom: 8px;
  width: 2px;
  background: var(--line);
}
.timeline li { position: relative; padding-bottom: 26px; }
.timeline li:last-child { padding-bottom: 0; }
.timeline li::before {
  content: '';
  position: absolute;
  inset-inline-start: -30px; top: 6px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid var(--cyan-500);
}
.timeline li b { display: block; font-size: 16.5px; color: var(--navy-800); font-weight: 800; }
.timeline li span { font-size: 14.5px; color: var(--text-soft); }

.note-box {
  display: flex;
  gap: 14px;
  background: var(--bg-soft-2);
  border: 1px solid rgba(21,169,214,.2);
  border-radius: var(--radius);
  padding: 20px 24px;
  align-items: flex-start;
}
.note-box svg { width: 22px; height: 22px; color: var(--cyan-600); flex-shrink: 0; }
.note-box p { font-size: 14.5px; color: var(--text); }
.note-box b { color: var(--navy-800); }

/* ----- Reveal animation ----- */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
.reveal[data-delay="5"] { transition-delay: .4s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .wa-float::after, .live-pill .dot { animation: none; }
  .cv-ring, .cv-pin.is-key::after, .cv-chip .live { animation: none; }
  .nav.is-open { animation: none; }
  .live-float .dot::after { animation: none; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .strip-inner { grid-template-columns: repeat(3, 1fr); }
  .strip-item:nth-child(3) { border-inline-end: none; }
  .strip-item:nth-child(n+4) { border-top: 1px solid var(--line-soft); }
}

@media (max-width: 960px) {
  .section { padding: 72px 0; }
  .nav-toggle { display: grid; }
  .nav {
    position: fixed;
    top: 0; inset-inline-end: 0;
    width: min(340px, 84vw);
    height: 100vh;
    background: #fff;
    z-index: 120;
    margin: 0;
    padding: 90px 26px 30px;
    box-shadow: -16px 0 50px rgba(7,24,43,.18);
    overflow-y: auto;
    display: none;
  }
  .nav.is-open {
    display: block;
    animation: navSlideIn .3s cubic-bezier(.4,0,.2,1);
  }
  @keyframes navSlideIn {
    from { transform: translateX(-100%); }
    to   { transform: translateX(0); }
  }
  .nav-list { flex-direction: column; align-items: stretch; gap: 4px; }
  .nav-list a { padding: 13px 16px; border-radius: 12px; font-size: 16px; }
  .nav-list a.is-active { background: var(--bg-soft); }
  .nav-list a.is-active::after { display: none; }
  .nav-mob-cta { margin-top: 18px; display: grid; gap: 10px; }

  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; max-width: 460px; }
  .hero-float--a { inset-inline-start: 10px; }
  .hero-float--b { inset-inline-end: 10px; }
  .about-grid,
  .wifiber-grid,
  .coverage-grid,
  .split,
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-media .badge { inset-inline-start: 16px; }
  .manrs-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .manrs-meta { justify-content: center; }
  .why-grid,
  .info-cards,
  .dealer-grid { grid-template-columns: repeat(2, 1fr); }
  .pkg-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 22px; }
  .stats-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  body { font-size: 15.5px; }
  .container { padding: 0 18px; }
  .section { padding: 60px 0; }
  .announce-group .hide-xs { display: none; }
  .announce .container { justify-content: center; }
  .strip-inner { grid-template-columns: repeat(2, 1fr); }
  .strip-item:nth-child(2) { border-inline-end: none; }
  .strip-item:nth-child(n+3) { border-top: 1px solid var(--line-soft); }
  .strip-item:nth-child(odd) { border-inline-end: 1px solid var(--line-soft); }
  .strip-item:nth-child(even) { border-inline-end: none; }
  .why-grid,
  .info-cards,
  .pkg-grid,
  .dealer-grid,
  .team-grid,
  .form-row { grid-template-columns: 1fr; }
  .team-grid { gap: 14px; }
  .hero-float { display: none; }
  .about-media .badge { padding: 16px 20px; }
  .about-media .badge b { font-size: 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-card { padding: 26px 22px; }
  .btn { padding: 13px 22px; }
  .coverage-visual { min-height: 400px; }
  .cv-badge b { font-size: 19px; }
  .header-cta .btn { display: none; }
  .header .container { gap: 12px; min-height: 66px; }
  .brand img { height: 42px; }
  .brand-text b { font-size: 16px; }
  .brand-text span { font-size: 10px; }
  .hero { padding: 60px 0 80px; }
  .hero-badge { font-size: 12px; padding: 7px 13px; }
  .hero-trust { gap: 18px; }
  .hero-trust b { font-size: 22px; }
  .hero-visual .photo img { height: 380px; }
  .announce .container { gap: 10px; }
  .announce-socials { display: none; }
}

/* ==========================================================================
   Legal / policy page
   ========================================================================== */
.legal-wrap {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: start;
}
.legal-toc {
  position: sticky;
  top: calc(var(--header-h) + 16px);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 20px;
}
.legal-toc h4 {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  color: var(--cyan-600);
  margin-bottom: 14px;
}
.legal-toc ol { list-style: none; counter-reset: toc; display: grid; gap: 2px; }
.legal-toc a {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy-700);
  padding: 7px 9px;
  border-radius: 8px;
  transition: background .18s, color .18s;
}
.legal-toc a:hover { background: #fff; color: var(--cyan-600); }
.legal-toc a::before {
  counter-increment: toc;
  content: counter(toc) '. ';
  color: var(--cyan-500);
  font-weight: 800;
}
.legal-article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 46px;
  box-shadow: var(--shadow-sm);
}
.legal-article section { margin-bottom: 36px; scroll-margin-top: calc(var(--header-h) + 16px); }
.legal-article section:last-child { margin-bottom: 0; }
.legal-article h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 21px;
  font-weight: 800;
  color: var(--navy-800);
  padding-bottom: 12px;
  margin-bottom: 14px;
  border-bottom: 2px solid var(--line-soft);
}
.legal-article h2 .num {
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 800;
  color: var(--cyan-600);
  background: var(--bg-soft-2);
  border-radius: 7px;
  padding: 4px 9px;
}
.legal-article h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy-700);
  margin: 18px 0 8px;
}
.legal-article p { font-size: 15px; color: var(--text-soft); margin-bottom: 12px; }
.legal-article ul { display: grid; gap: 8px; margin: 10px 0 14px; }
.legal-article ul li {
  position: relative;
  padding-inline-start: 22px;
  font-size: 15px;
  color: var(--text-soft);
}
.legal-article ul li::before {
  content: '';
  position: absolute;
  inset-inline-start: 0; top: 11px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--cyan-500);
}
.legal-article ul li strong { color: var(--navy-800); }
.legal-contact {
  background: var(--grad-dark);
  color: #fff;
  border-radius: var(--radius);
  padding: 26px 30px;
  margin-top: 8px;
}
.legal-contact h3 { color: #fff; margin: 0 0 4px; }
.legal-contact dl {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 9px 16px;
  margin-top: 14px;
  font-size: 14.5px;
}
.legal-contact dt { color: rgba(255,255,255,.6); }
.legal-contact dd { color: #fff; font-weight: 600; }
@media (max-width: 900px) {
  .legal-wrap { grid-template-columns: 1fr; }
  .legal-toc { position: static; }
  .legal-toc ol { grid-template-columns: 1fr 1fr; gap: 2px 14px; }
  .legal-article { padding: 28px 22px; }
  .legal-contact dl { grid-template-columns: 1fr; gap: 2px; }
  .legal-contact dt { margin-top: 8px; }
}

/* ==========================================================================
   Live streaming page
   ========================================================================== */
[hidden] { display: none !important; }

.live-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}

/* Player */
.player-card {
  background: var(--grad-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(21,169,214,.2);
}
.player-stage {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}
.player-stage > video,
.player-stage > iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block;
}
.player-stage > iframe { border: 0; }

.player-empty {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: rgba(255,255,255,.7);
  padding: 26px;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(21,169,214,.2), transparent 70%),
    var(--grad-dark);
}
.player-empty .ic {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: var(--grad-brand);
  display: grid; place-items: center;
  margin-bottom: 18px;
  box-shadow: 0 0 0 9px rgba(21,169,214,.14), 0 14px 30px rgba(21,169,214,.32);
}
.player-empty .ic svg { width: 42px; height: 42px; color: #fff; }
.player-empty b {
  font-size: 19px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}
.player-empty span { font-size: 14.5px; max-width: 340px; line-height: 1.7; }

.player-live {
  position: absolute;
  top: 14px;
  inset-inline-start: 14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,77,77,.16);
  border: 1px solid rgba(255,77,77,.45);
  color: #ffb3b3;
  font-weight: 800;
  font-size: 12.5px;
  padding: 5px 12px;
  border-radius: 999px;
  z-index: 3;
  backdrop-filter: blur(6px);
  pointer-events: none;
}
.player-live .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #ff4d4d;
  animation: livePulse 1.6s infinite;
}

.player-spinner {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 52px; height: 52px;
  border: 3px solid rgba(255,255,255,.18);
  border-top-color: var(--cyan-400);
  border-radius: 50%;
  animation: spnRotate .9s linear infinite;
  z-index: 2;
}
@keyframes spnRotate { to { transform: translate(-50%, -50%) rotate(360deg); } }

/* Now playing bar */
.now-playing {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: #fff;
}
.np-logo {
  width: 54px; height: 54px;
  border-radius: 13px;
  background: var(--grad-brand);
  flex-shrink: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  font-family: 'Manrope', system-ui, sans-serif;
}
.np-logo img {
  width: 100%; height: 100%;
  object-fit: contain;
  background: #fff;
}
.np-text { flex: 1; min-width: 0; }
.np-text b {
  display: block;
  font-size: 16.5px;
  font-weight: 800;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 4px;
}
.np-text span {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.np-text .live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--cyan-400);
  animation: livePulse 1.6s infinite;
}
.np-actions { display: flex; gap: 8px; }
.np-btn {
  width: 40px; height: 40px;
  border-radius: 11px;
  background: rgba(255,255,255,.08);
  color: #fff;
  display: grid;
  place-items: center;
  transition: background .2s, color .2s;
}
.np-btn:hover { background: var(--cyan-500); }
.np-btn svg { width: 19px; height: 19px; }

/* Channels pane */
.channels-pane {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}
.channels-head {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.search-wrap { flex: 1; max-width: 360px; min-width: 220px; }
.channels-head h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--navy-800);
  display: flex;
  align-items: center;
  gap: 9px;
}
.channels-head .count {
  background: var(--bg-soft-2);
  color: var(--cyan-600);
  font-size: 12px;
  font-weight: 800;
  padding: 2px 10px;
  border-radius: 999px;
  font-family: 'Manrope', system-ui, sans-serif;
}
.search-wrap { position: relative; }
.search-wrap .search-icon {
  position: absolute;
  inset-inline-start: 13px;
  top: 50%;
  transform: translateY(-50%);
  width: 17px; height: 17px;
  color: var(--muted);
  pointer-events: none;
}
.channel-search {
  width: 100%;
  font-family: inherit;
  font-size: 14.5px;
  color: var(--text);
  background: var(--bg-soft);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 11px 14px;
  padding-inline-start: 38px;
  transition: border-color .2s, background-color .2s;
}
.channel-search:focus {
  outline: none;
  border-color: var(--cyan-500);
  background-color: #fff;
}

.channels-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 10px;
}

.ch-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-soft);
  border: 1.5px solid transparent;
  border-radius: 12px;
  padding: 10px 12px;
  text-align: start;
  width: 100%;
  cursor: pointer;
  font-family: inherit;
  transition: background .18s, border-color .18s, transform .18s;
}
.ch-card:hover {
  background: #fff;
  border-color: var(--cyan-300);
  transform: translateY(-1px);
}
.ch-card.is-playing {
  background: linear-gradient(135deg, rgba(21,169,214,.11), rgba(15,143,184,.07));
  border-color: var(--cyan-500);
}
.ch-card .ch-logo {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--grad-brand);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 17px;
  flex-shrink: 0;
  overflow: hidden;
  font-family: 'Manrope', system-ui, sans-serif;
}
.ch-card .ch-logo img {
  width: 100%; height: 100%;
  object-fit: contain;
  background: #fff;
}
.ch-card .ch-info { flex: 1; min-width: 0; }
.ch-card .ch-info b {
  display: block;
  font-size: 14.5px;
  font-weight: 800;
  color: var(--navy-800);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ch-card .ch-info span {
  font-size: 12.5px;
  color: var(--text-soft);
}
.ch-card .ch-play {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--bg-soft-2);
  color: var(--cyan-600);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: background .18s, color .18s;
}
.ch-card:hover .ch-play,
.ch-card.is-playing .ch-play {
  background: var(--cyan-500);
  color: #fff;
}
.ch-card .ch-play svg { width: 13px; height: 13px; }

.ch-empty {
  text-align: center;
  padding: 28px 16px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.8;
}
.ch-empty code {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  padding: 1px 6px;
  border-radius: 6px;
  font-size: 12.5px;
  font-family: 'SF Mono', Menlo, monospace;
  color: var(--navy-700);
  direction: ltr;
  display: inline-block;
}

.live-note {
  margin-top: 24px;
  display: flex;
  gap: 14px;
  background: var(--bg-soft-2);
  border: 1px solid rgba(21,169,214,.22);
  border-radius: var(--radius);
  padding: 18px 22px;
  align-items: center;
  flex-wrap: wrap;
}
.live-note .ic {
  width: 40px; height: 40px;
  border-radius: 11px;
  background: var(--grad-brand);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.live-note .ic svg { width: 21px; height: 21px; }
.live-note .txt { flex: 1; min-width: 220px; }
.live-note .txt b {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: var(--navy-800);
  margin-bottom: 3px;
}
.live-note .txt span {
  font-size: 13.5px;
  color: var(--text-soft);
}

@media (prefers-reduced-motion: reduce) {
  .player-spinner { animation: none; }
  .np-text .live-dot, .player-live .dot { animation: none; }
}

@media (max-width: 620px) {
  .player-card { border-radius: var(--radius); }
  .channels-pane { padding: 18px; border-radius: var(--radius); }
  .channels-head { flex-direction: column; align-items: stretch; }
  .search-wrap { max-width: none; }
  .now-playing { padding: 14px 16px; gap: 11px; }
  .np-logo { width: 46px; height: 46px; font-size: 19px; }
  .np-text b { font-size: 15px; }
  .np-btn { width: 36px; height: 36px; }
  .np-btn svg { width: 17px; height: 17px; }
}
