/* =============================================
   IPTV Host — styles.css
   ============================================= */

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

:root {
  --red:       #e53030;
  --red-dark:  #b91c1c;
  --red-glow:  rgba(229,48,48,.35);
  --green:     #25d366;
  --green-dk:  #1aab52;
  --bg:        #0b0f1a;
  --bg2:       #111827;
  --bg3:       #1a2236;
  --surface:   #1e2a3e;
  --border:    rgba(255,255,255,.08);
  --text:      #e2e8f0;
  --muted:     #8892a4;
  --white:     #ffffff;
  --grad:      linear-gradient(135deg, #e53030 0%, #ff6b35 100%);
  --grad-blue: linear-gradient(135deg, #1e3a5f 0%, #0b0f1a 100%);
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-head: 'Poppins', 'Inter', sans-serif;
  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  20px;
  --r-xl:  28px;
  --shadow-sm: 0 2px 12px rgba(0,0,0,.4);
  --shadow-md: 0 8px 32px rgba(0,0,0,.5);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.6);
  --transition: .22s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
details { cursor: pointer; }

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

/* ---- Container ---- */
.container    { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 860px;  margin: 0 auto; padding: 0 24px; }
.center { text-align: center; margin-top: 48px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
  letter-spacing: .02em;
}

.btn-primary {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
  box-shadow: 0 4px 20px rgba(37,211,102,.3);
}
.btn-primary:hover {
  background: var(--green-dk);
  border-color: var(--green-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,.45);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.3);
}
.btn-secondary:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.6);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn-outline:hover {
  background: var(--green);
  color: #fff;
  transform: translateY(-2px);
}

.btn-lg  { padding: 18px 36px; font-size: 1.05rem; }
.btn-xl  { padding: 22px 48px; font-size: 1.2rem; }
.btn-header { padding: 11px 22px; font-size: .88rem; }

.btn-pulse {
  animation: pulse-green 2.5s infinite;
}
@keyframes pulse-green {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.3); }
  50%      { box-shadow: 0 4px 40px rgba(37,211,102,.65), 0 0 0 8px rgba(37,211,102,.1); }
}

/* ---- Typography helpers ---- */
.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(229,48,48,.15);
  border: 1px solid rgba(229,48,48,.4);
  color: #fc7c7c;
  font-size: .82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}

/* ---- Grid ---- */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-app { grid-template-columns: repeat(6, 1fr); gap: 16px; }

/* ---- Section ---- */
.section { padding: 96px 0; }
.section-dark { background: var(--bg2); }

.section-head {
  text-align: center;
  margin-bottom: 64px;
}
.section-head h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--white);
}
.section-head p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
}

/* =============================================
   TOP BANNER
   ============================================= */
.top-banner {
  background: var(--grad);
  text-align: center;
  padding: 10px 24px;
  font-size: .82rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .03em;
}

/* =============================================
   HEADER
   ============================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11,15,26,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon { font-size: 1.5rem; }
.logo-text {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.02em;
}
.logo-accent { color: var(--red); }

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: center;
}
.nav a {
  font-size: .88rem;
  font-weight: 500;
  color: var(--muted);
  transition: color var(--transition);
  position: relative;
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: width var(--transition);
  border-radius: 2px;
}
.nav a:hover { color: var(--white); }
.nav a:hover::after { width: 100%; }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 0 60px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(229,48,48,.12) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 10% 20%, rgba(30,58,95,.5) 0%, transparent 60%),
    var(--bg);
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

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

.hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -.03em;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-sub strong { color: var(--text); }

.hero-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 36px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat { display: flex; flex-direction: column; }
.stat strong { font-size: 1.8rem; font-weight: 900; color: var(--white); line-height: 1; }
.stat span { font-size: .78rem; color: var(--muted); margin-top: 4px; font-weight: 500; }

.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; }

.hero-features {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-features li {
  font-size: .82rem;
  color: var(--muted);
  font-weight: 500;
}

/* Hero image */
.hero-image {
  position: relative;
  border-radius: var(--r-xl);
  overflow: visible;
}
.hero-image img {
  width: 100%;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg), 0 0 80px rgba(229,48,48,.2);
  border: 1px solid var(--border);
}

.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(17,24,39,.9);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 12px 18px;
  box-shadow: var(--shadow-md);
  animation: float 4s ease-in-out infinite;
}
.float-card-1 { bottom: -20px; left: -24px; animation-delay: 0s; }
.float-card-2 { top: -20px; right: -24px; animation-delay: 2s; }

@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

.float-icon { font-size: 1.6rem; }
.float-card strong { display: block; font-size: .88rem; font-weight: 700; color: var(--white); }
.float-card small  { font-size: .75rem; color: var(--muted); }

/* =============================================
   TRUST STRIP
   ============================================= */
.trust-strip {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.trust-strip .container {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--muted);
}
.trust-item span { font-size: 1.2rem; }

/* =============================================
   CARDS
   ============================================= */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(229,48,48,.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}
.card:hover { transform: translateY(-6px); border-color: rgba(229,48,48,.3); box-shadow: var(--shadow-md); }
.card:hover::before { opacity: 1; }

.card-icon { font-size: 2.5rem; margin-bottom: 16px; }
.card h3 { font-family: var(--font-head); font-size: 1.15rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.card p { font-size: .9rem; color: var(--muted); line-height: 1.6; }

/* =============================================
   PLANS
   ============================================= */
.plans { align-items: start; }

.plan {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: var(--transition);
}
.plan:hover { transform: translateY(-6px); }

.plan-popular, .plan-best {
  border-color: var(--green);
  box-shadow: 0 0 40px rgba(37,211,102,.15);
  transform: scale(1.04);
}
.plan-popular:hover, .plan-best:hover { transform: scale(1.04) translateY(-6px); }

.plan-best {
  border-color: var(--red);
  box-shadow: 0 0 40px rgba(229,48,48,.2);
}

.popular-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 50px;
  white-space: nowrap;
  letter-spacing: .05em;
}
.plan-best .popular-badge { background: var(--red); }

.plan h3 { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 16px; margin-top: 10px; }

.plan-price { margin-bottom: 10px; }
.plan-price strong { display: block; font-size: 2.2rem; font-weight: 900; color: var(--white); }
.plan-price .strike { font-size: .85rem; color: var(--muted); text-decoration: line-through; }

.plan-desc { font-size: .82rem; color: var(--muted); margin-bottom: 20px; }

.plan ul { text-align: left; margin-bottom: 24px; display: flex; flex-direction: column; gap: 8px; }
.plan ul li { font-size: .88rem; color: var(--text); }

.plans-note {
  text-align: center;
  margin-top: 32px;
  font-size: .85rem;
  color: var(--muted);
}

/* =============================================
   APPS
   ============================================= */
.app-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 24px 16px;
  text-align: center;
  transition: var(--transition);
}
.app-card:hover { transform: translateY(-4px); border-color: rgba(229,48,48,.4); }
.app-logo { font-size: 2rem; margin-bottom: 10px; }
.app-card h4 { font-size: .88rem; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.app-card p { font-size: .78rem; color: var(--muted); line-height: 1.5; }

.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(135deg, var(--surface) 0%, rgba(37,211,102,.08) 100%);
  border: 1px solid rgba(37,211,102,.25);
  border-radius: var(--r-lg);
  padding: 32px 40px;
  margin-top: 48px;
}
.cta-banner h3 { font-size: 1.3rem; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.cta-banner p { color: var(--muted); font-size: .92rem; }

/* =============================================
   GALLERY
   ============================================= */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.8));
  color: #fff;
  font-size: .82rem;
  font-weight: 600;
  padding: 20px 16px 12px;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:hover figcaption { opacity: 1; }

/* =============================================
   STEPS
   ============================================= */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 40px; left: calc(16.66% + 20px); right: calc(16.66% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--red) 0%, var(--red) 50%, transparent 100%);
  background: repeating-linear-gradient(90deg, var(--red) 0, var(--red) 8px, transparent 8px, transparent 16px);
  opacity: .4;
}

.step {
  text-align: center;
  padding: 40px 24px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  position: relative;
  transition: var(--transition);
}
.step:hover { transform: translateY(-4px); border-color: rgba(229,48,48,.3); }

.step-num {
  width: 60px; height: 60px;
  background: var(--grad);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  margin: 0 auto 20px;
  box-shadow: 0 4px 20px var(--red-glow);
}

.step h3 { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.step p  { font-size: .9rem; color: var(--muted); line-height: 1.6; }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: var(--transition);
}
.testimonial:hover { transform: translateY(-4px); border-color: rgba(255,215,0,.25); }

.stars { color: #fbbf24; font-size: 1.1rem; margin-bottom: 14px; letter-spacing: .1em; }
.testimonial p { font-size: .9rem; color: var(--text); line-height: 1.7; margin-bottom: 20px; font-style: italic; }

.who { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 44px; height: 44px;
  background: var(--grad);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.who strong { display: block; font-size: .9rem; color: var(--white); }
.who small  { font-size: .78rem; color: var(--muted); }

/* =============================================
   FAQ
   ============================================= */
.faq { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item[open] { border-color: rgba(229,48,48,.35); }

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-weight: 600;
  font-size: .95rem;
  color: var(--white);
  list-style: none;
  cursor: pointer;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--red);
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--white); background: rgba(255,255,255,.03); }

.faq-item p {
  padding: 0 24px 20px;
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.7;
}

/* =============================================
   CTA FINAL
   ============================================= */
.cta-final {
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(229,48,48,.1) 0%, transparent 70%), var(--bg);
  text-align: center;
  padding: 120px 0;
}
.cta-final h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -.02em;
}
.cta-final p { font-size: 1.1rem; color: var(--muted); margin-bottom: 40px; }
.cta-final small { display: block; margin-top: 16px; font-size: .82rem; color: var(--muted); }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer p { font-size: .88rem; color: var(--muted); line-height: 1.7; margin-top: 12px; }
.footer h4 { font-size: .88rem; font-weight: 700; color: var(--white); margin-bottom: 16px; text-transform: uppercase; letter-spacing: .08em; }
.footer ul { display: flex; flex-direction: column; gap: 10px; }
.footer ul li a { font-size: .88rem; color: var(--muted); transition: color var(--transition); }
.footer ul li a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
}
.footer-bottom p { font-size: .8rem; color: var(--muted); margin: 0; }

.seo-line {
  font-size: .72rem !important;
  opacity: .5;
  max-width: 700px;
}

/* =============================================
   FLOATING WHATSAPP
   ============================================= */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 200;
  width: 60px; height: 60px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 30px rgba(37,211,102,.5);
  transition: var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 40px rgba(37,211,102,.7);
}
.wpp-pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 3px solid rgba(37,211,102,.4);
  animation: wpp-ring 2s ease-out infinite;
}
@keyframes wpp-ring {
  0%   { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* =============================================
   RESPONSIVE — Tablet (≤1024px)
   ============================================= */
@media (max-width: 1024px) {
  .hero-inner    { grid-template-columns: 1fr; gap: 48px; }
  .hero-content  { max-width: 100%; text-align: center; }
  .hero-stats    { justify-content: center; }
  .hero-ctas     { justify-content: center; }
  .hero-features { justify-content: center; }
  .hero-image    { max-width: 560px; margin: 0 auto; }

  .grid-4  { grid-template-columns: repeat(2, 1fr); }
  .grid-app { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  .cta-banner { flex-direction: column; text-align: center; }
}

/* =============================================
   RESPONSIVE — Mobile (≤768px)
   ============================================= */
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .section-head { margin-bottom: 40px; }

  .nav      { display: none; }
  .hero     { min-height: auto; padding: 60px 0 48px; }
  .hero-content h1 { font-size: 2.2rem; }
  .hero-stats { gap: 20px; }
  .float-card-1, .float-card-2 { display: none; }

  .grid-3  { grid-template-columns: 1fr; }
  .grid-4  { grid-template-columns: 1fr; }
  .grid-app { grid-template-columns: repeat(2, 1fr); }
  .steps   { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .gallery { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .trust-strip .container { gap: 20px; }

  .plan-popular, .plan-best { transform: scale(1); }

  .btn-xl { padding: 18px 32px; font-size: 1rem; }
  .cta-final { padding: 80px 0; }

  .whatsapp-float { bottom: 20px; right: 20px; width: 54px; height: 54px; }
}

/* ---- Cluster Hub Cards (index) ---- */
.cluster-hub-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 20px;
  text-decoration: none;
  transition: var(--transition);
}
.cluster-hub-card:hover {
  transform: translateY(-5px);
  border-color: rgba(229,48,48,.4);
  box-shadow: var(--shadow-md);
}
.cluster-hub-card > span { font-size: 2rem; }
.cluster-hub-card strong { font-size: .95rem; color: var(--white); font-weight: 700; }
.cluster-hub-card small { font-size: .78rem; color: var(--muted); }
.cluster-hub-featured {
  border-color: rgba(37,211,102,.35);
  background: linear-gradient(135deg, rgba(37,211,102,.07) 0%, var(--surface) 100%);
}
.cluster-hub-featured:hover { border-color: var(--green); }

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: center; }
  .gallery   { grid-template-columns: 1fr; }
  .hero-features { flex-direction: column; align-items: center; }
  .trust-strip .container { justify-content: flex-start; }
}
