/* ============================================================
   PANAPLAYTV — MAIN STYLESHEET
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

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

/* --- VARIABLES --- */
:root {
  --bg-0:    #04040d;
  --bg-1:    #07071a;
  --bg-2:    #0c0c1e;
  --bg-card: #0e0e20;
  --bg-card-h: #131328;
  --border:  #181830;
  --border-a: #2d2d58;

  --p1: #6c5fff;
  --p2: #a855f7;
  --p3: #c084fc;
  --grad:      linear-gradient(135deg, #6c5fff, #a855f7);
  --grad-t:    linear-gradient(135deg, #9d8fff, #d088fc);
  --grad-sub:  linear-gradient(135deg, rgba(108,95,255,.12), rgba(168,85,247,.12));

  --t1: #eeeef8;
  --t2: #9090b8;
  --t3: #48485a;

  --green: #22c55e;
  --wa: #25D366;

  --r-s: 8px;
  --r:   14px;
  --r-l: 22px;
  --r-xl: 32px;

  --shadow:   0 4px 40px rgba(0,0,0,.6);
  --glow:     0 0 48px rgba(108,95,255,.28);
  --glow-s:   0 0 20px rgba(108,95,255,.18);
}

/* --- BASE --- */
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--bg-0);
  color: var(--t1);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--t1);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* --- LAYOUT --- */
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }

.section    { padding: 96px 0; }
.section-sm { padding: 64px 0; }

/* --- UTILS --- */
.grad-text {
  background: var(--grad-t);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: rgba(108,95,255,.1);
  border: 1px solid rgba(108,95,255,.24);
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 600;
  color: var(--p3);
  letter-spacing: .05em;
  text-transform: uppercase;
}

.section-header { text-align: center; margin-bottom: 56px; }
.section-header .badge { margin-bottom: 14px; }
.section-header h2 { margin-bottom: 14px; }
.section-header p  { color: var(--t2); max-width: 580px; margin: 0 auto; font-size: 1.05rem; }

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--r);
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all .2s ease;
  white-space: nowrap;
  line-height: 1;
}

.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: var(--glow-s);
}
.btn-primary:hover { box-shadow: var(--glow); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--t1);
  border: 1px solid var(--border-a);
}
.btn-outline:hover { background: rgba(255,255,255,.04); border-color: rgba(108,95,255,.4); }

.btn-wa { background: var(--wa); color: #fff; }
.btn-wa:hover { background: #1db954; transform: translateY(-2px); box-shadow: 0 4px 20px rgba(37,211,102,.35); }

.btn-ghost { background: rgba(255,255,255,.05); color: var(--t1); border: 1px solid var(--border); }
.btn-ghost:hover { background: rgba(255,255,255,.08); }

.btn-lg { padding: 16px 36px; font-size: 1.05rem; border-radius: var(--r-l); }
.btn-sm { padding: 9px 18px; font-size: .85rem; }
.btn-full { width: 100%; justify-content: center; }

.btns { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* --- CARDS --- */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-l);
  padding: 28px;
  transition: all .3s ease;
}
.card:hover {
  border-color: var(--border-a);
  box-shadow: var(--glow-s);
  transform: translateY(-3px);
}

/* ============================================================
   HEADER / NAV
   ============================================================ */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all .3s ease;
}
.site-header.scrolled {
  background: rgba(4,4,13,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -.03em;
  background: var(--grad-t);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
}

.logo em {
  font-style: normal;
  -webkit-text-fill-color: var(--t2);
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  font-size: .85em;
  font-weight: 600;
}

.nav { display: flex; align-items: center; gap: 2px; }

.nav a {
  padding: 7px 13px;
  color: var(--t2);
  font-size: .88rem;
  font-weight: 500;
  border-radius: var(--r-s);
  transition: all .2s;
  white-space: nowrap;
}
.nav a:hover, .nav a.active { color: var(--t1); background: rgba(255,255,255,.05); }

/* Dropdown */
.nav-drop { position: relative; }

.nav-drop > a::after {
  content: '';
  display: inline-block;
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid var(--t2);
  margin-left: 4px;
  vertical-align: middle;
  transition: transform .2s;
}
.nav-drop:hover > a::after { transform: rotate(180deg); }

.drop-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 8px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all .2s ease;
  box-shadow: var(--shadow);
  z-index: 100;
}
.nav-drop:hover .drop-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.drop-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: var(--r-s);
  font-size: .87rem;
  color: var(--t2);
}
.drop-menu a:hover { color: var(--t1); background: rgba(255,255,255,.05); }

.nav-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* Mobile toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
}
.menu-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--t1);
  border-radius: 2px;
  transition: all .3s;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--bg-0);
  z-index: 999;
  flex-direction: column;
  padding: 80px 24px 40px;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }

.mobile-nav a {
  display: block;
  padding: 14px 0;
  font-family: 'Syne', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--t2);
  border-bottom: 1px solid var(--border);
  transition: color .2s;
}
.mobile-nav a:hover { color: var(--t1); }

.mob-sub { padding-left: 16px; }
.mob-sub a { font-size: .98rem; font-weight: 500; }

.mob-label {
  padding: 14px 0 4px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--t3);
  border-bottom: none !important;
}

.mob-cta {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mob-close {
  position: absolute;
  top: 18px; right: 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--t1);
  font-size: 1.4rem;
  line-height: 1;
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
}

/* ============================================================
   HERO (Homepage)
   ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; z-index: 0; }

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(108,95,255,.16) 0%, transparent 70%);
  top: -250px; right: -150px;
}
.orb-2 {
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(168,85,247,.1) 0%, transparent 70%);
  bottom: -80px; left: 5%;
}
.orb-3 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(108,95,255,.2) 0%, transparent 70%);
  top: 40%; left: 45%;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 50% 40%, black 20%, transparent 75%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.hero-content .badge {
  margin-bottom: 28px;
  animation: fadeUp .6s ease both;
  animation-delay: .1s;
}

.hero h1 {
  margin-bottom: 24px;
  animation: fadeUp .6s ease both;
  animation-delay: .2s;
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--t2);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 40px;
  animation: fadeUp .6s ease both;
  animation-delay: .3s;
}

.hero .btns {
  animation: fadeUp .6s ease both;
  animation-delay: .4s;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  animation: fadeUp .6s ease both;
  animation-delay: .5s;
}

.hero-stat {
  padding: 0 32px 0 0;
  margin-right: 32px;
  border-right: 1px solid var(--border);
}
.hero-stat:last-child { border-right: none; margin-right: 0; }

.stat-val {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  background: var(--grad-t);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}
.stat-lbl {
  font-size: .78rem;
  color: var(--t3);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: 2px;
  display: block;
}

/* Providers strip */
.providers {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.providers-label {
  font-size: .78rem;
  color: var(--t3);
  text-transform: uppercase;
  letter-spacing: .06em;
  flex-shrink: 0;
}
.provider-tag {
  padding: 5px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: .8rem;
  color: var(--t2);
}

/* ============================================================
   FEATURES GRID
   ============================================================ */

.feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.feat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-l);
  padding: 28px;
  transition: all .3s ease;
}
.feat-card:hover {
  border-color: rgba(108,95,255,.3);
  box-shadow: var(--glow-s);
  transform: translateY(-3px);
}

.feat-icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  background: var(--grad-sub);
  border: 1px solid rgba(108,95,255,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feat-icon svg { width: 22px; height: 22px; stroke: var(--p3); stroke-width: 1.75; fill: none; }

.feat-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.feat-card p  { color: var(--t2); font-size: .9rem; line-height: 1.6; }

/* ============================================================
   PRICING CARDS
   ============================================================ */

.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: start;
}

.plan-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-l);
  padding: 28px;
  position: relative;
  transition: all .3s ease;
}
.plan-card:hover { border-color: rgba(108,95,255,.3); box-shadow: var(--glow-s); transform: translateY(-3px); }

.plan-card.featured {
  background: linear-gradient(160deg, #11103a 0%, #180f2e 100%);
  border: 1px solid rgba(108,95,255,.5);
  box-shadow: var(--glow-s), inset 0 1px 0 rgba(255,255,255,.05);
  transform: scale(1.02);
}
.plan-card.featured:hover { transform: scale(1.02) translateY(-3px); box-shadow: var(--glow); }

.plan-popular {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.plan-name {
  font-family: 'Syne', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--t3);
  margin-bottom: 2px;
}
.plan-dur {
  font-size: .82rem;
  color: var(--p3);
  font-weight: 500;
  margin-bottom: 20px;
}

.plan-price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 2px;
}
.plan-curr { font-size: 1.1rem; color: var(--t2); }
.plan-amount {
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--t1);
  line-height: 1;
}
.plan-orig {
  font-size: .9rem;
  color: var(--t3);
  text-decoration: line-through;
  margin-left: 4px;
}
.plan-save {
  font-size: .8rem;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 20px;
  min-height: 20px;
}

.plan-divider { height: 1px; background: var(--border); margin: 18px 0; }

.plan-feats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 24px;
}
.plan-feats li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .88rem;
  color: var(--t2);
}
.plan-feats li .ck {
  color: var(--p1);
  font-size: .85rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.plan-feats li .ck::before { content: "✓"; }

/* ============================================================
   DEVICES / TUTORIALS GRID
   ============================================================ */

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

.device-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-l);
  padding: 28px 20px;
  text-align: center;
  transition: all .3s ease;
  display: block;
}
.device-card:hover {
  border-color: rgba(108,95,255,.4);
  box-shadow: var(--glow-s);
  transform: translateY(-4px);
}
.device-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--grad-sub);
  border: 1px solid rgba(108,95,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.device-icon svg { width: 26px; height: 26px; stroke: var(--p2); stroke-width: 1.75; fill: none; }
.device-card h3 { font-size: .95rem; margin-bottom: 6px; }
.device-card p { font-size: .78rem; color: var(--t3); margin-bottom: 14px; }
.device-card .btn { width: 100%; justify-content: center; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item.open { border-color: rgba(108,95,255,.35); }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
}
.faq-q h3 {
  font-size: .95rem;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  color: var(--t1);
  flex: 1;
}

.faq-tog {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(108,95,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--p1);
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1;
  transition: transform .3s ease, background .2s;
  font-family: 'DM Sans', sans-serif;
}
.faq-item.open .faq-tog {
  transform: rotate(45deg);
  background: var(--grad);
  color: #fff;
}

.faq-a {
  display: none;
  padding: 0 24px 20px;
  color: var(--t2);
  font-size: .9rem;
  line-height: 1.7;
}
.faq-item.open .faq-a { display: block; }

/* ============================================================
   TUTORIAL STEPS
   ============================================================ */

.tut-option-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 9px 22px;
  border: 1px solid var(--border-a);
  border-radius: 100px;
  background: transparent;
  color: var(--t2);
  font-family: 'DM Sans', sans-serif;
  font-size: .88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s;
}
.tab-btn.active, .tab-btn:hover {
  background: var(--grad);
  border-color: transparent;
  color: #fff;
}

.tab-content { display: none; }
.tab-content.active { display: block; }

.tut-steps {
  display: flex;
  flex-direction: column;
}

.tut-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.tut-step:last-child { border-bottom: none; }

.step-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--grad-sub);
  border: 1px solid rgba(108,95,255,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: .9rem;
  color: var(--p3);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.step-body { padding-top: 8px; }
.step-body h4 { font-size: .98rem; margin-bottom: 6px; }
.step-body p  { color: var(--t2); font-size: .88rem; line-height: 1.65; }

.tut-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 40px;
  align-items: start;
}

.tut-sidebar { position: sticky; top: 100px; }

.sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-l);
  padding: 22px;
}
.sidebar-card h4 {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--t3);
  margin-bottom: 14px;
}
.sidebar-card a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: var(--r-s);
  font-size: .86rem;
  color: var(--t2);
  transition: all .2s;
  margin-bottom: 2px;
}
.sidebar-card a:hover, .sidebar-card a.active {
  background: rgba(108,95,255,.1);
  color: var(--t1);
}

/* ============================================================
   BREADCRUMB
   ============================================================ */

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.breadcrumb a  { font-size: .82rem; color: var(--t3); transition: color .2s; }
.breadcrumb a:hover { color: var(--t1); }
.breadcrumb-sep { color: var(--t3); font-size: .82rem; }
.breadcrumb span { font-size: .82rem; color: var(--p3); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */

.page-hero {
  padding: 140px 0 72px;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 700px 350px at 50% 0%, rgba(108,95,255,.1), transparent 70%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { margin-bottom: 14px; }
.page-hero p  { color: var(--t2); font-size: 1.05rem; max-width: 580px; line-height: 1.7; }

/* ============================================================
   CTA BOX
   ============================================================ */

.cta-box {
  background: linear-gradient(135deg, rgba(108,95,255,.1), rgba(168,85,247,.1));
  border: 1px solid rgba(108,95,255,.22);
  border-radius: var(--r-xl);
  padding: 64px;
  text-align: center;
}
.cta-box h2 { margin-bottom: 14px; }
.cta-box p  { color: var(--t2); margin-bottom: 36px; font-size: 1.05rem; max-width: 520px; margin-left: auto; margin-right: auto; }

/* ============================================================
   CONTACT
   ============================================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  margin-bottom: 14px;
  transition: border-color .2s;
}
.contact-item:hover { border-color: rgba(108,95,255,.3); }
.contact-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--grad-sub);
  border: 1px solid rgba(108,95,255,.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; stroke: var(--p3); stroke-width: 1.75; fill: none; }

/* Green status dot in hero float */
.hero-float-2 .status-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 6px rgba(34,197,94,.6);
  flex-shrink: 0;
}
.contact-item-body h4 { font-size: .9rem; margin-bottom: 4px; }
.contact-item-body p, .contact-item-body a { font-size: .88rem; color: var(--t2); transition: color .2s; }
.contact-item-body a:hover { color: var(--p3); }

/* ============================================================
   FORM
   ============================================================ */

.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: .85rem; font-weight: 500; color: var(--t2); margin-bottom: 7px; }

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  color: var(--t1);
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  transition: border-color .2s;
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: rgba(108,95,255,.5);
  box-shadow: 0 0 0 3px rgba(108,95,255,.1);
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-select option { background: var(--bg-card); }

.form-check { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; }
.form-check input[type="checkbox"] { width: 17px; height: 17px; margin-top: 2px; accent-color: var(--p1); flex-shrink: 0; }
.form-check-lbl { font-size: .85rem; color: var(--t2); line-height: 1.5; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */

.about-feats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.about-feat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-l);
  padding: 32px;
  display: flex;
  gap: 20px;
  transition: all .3s;
}
.about-feat:hover { border-color: rgba(108,95,255,.3); box-shadow: var(--glow-s); }
.about-feat-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--grad-sub);
  border: 1px solid rgba(108,95,255,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-feat-icon svg { width: 22px; height: 22px; stroke: var(--p3); stroke-width: 1.75; fill: none; }
.about-feat-body h3 { font-size: 1.1rem; margin-bottom: 8px; }
.about-feat-body p  { font-size: .9rem; color: var(--t2); line-height: 1.65; }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */

.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 900;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--wa);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,.4);
  transition: all .3s ease;
  text-decoration: none;
}
.wa-float:hover { transform: scale(1.1) translateY(-2px); box-shadow: 0 8px 36px rgba(37,211,102,.5); }

.wa-pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: rgba(37,211,102,.25);
  animation: pulse 2.2s ease infinite;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: .3; }
  50%       { transform: scale(1.35); opacity: 0; }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }
.reveal-d4 { transition-delay: .4s; }

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  padding: 72px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo { font-size: 1.5rem; display: block; margin-bottom: 14px; }
.footer-brand p { color: var(--t2); font-size: .88rem; line-height: 1.65; max-width: 260px; margin-bottom: 20px; }

.footer-col h4 {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--t3);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a { font-size: .86rem; color: var(--t2); transition: color .2s; }
.footer-col ul li a:hover { color: var(--t1); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: .8rem; color: var(--t3); }
.footer-bl { display: flex; gap: 16px; }
.footer-bl a { font-size: .8rem; color: var(--t3); transition: color .2s; }
.footer-bl a:hover { color: var(--t1); }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1100px) {
  .plans-grid { grid-template-columns: repeat(2, 1fr); }
  .devices-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .tut-layout { grid-template-columns: 1fr; }
  .tut-sidebar { display: none; }
}

/* ---- Tablet / large phones ---- */
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section    { padding: 56px 0; }
  .section-sm { padding: 44px 0; }

  /* Nav */
  .nav, .nav-cta .btn-outline { display: none; }
  .menu-toggle { display: flex; }
  .nav-cta .btn-primary { font-size: .82rem; padding: 10px 18px; }

  /* Hero */
  .hero { padding: 88px 0 48px; }
  .hero-content .btns { flex-direction: column; gap: 12px; }
  .hero-content .btns .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 18px 28px; }
  .hero-img-wrap { aspect-ratio: 16/9; max-height: 280px; }

  /* Section header */
  .section-header p { font-size: .9rem; }

  /* Plans */
  .plans-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .plan-card.featured { transform: none; }
  .plan-card.featured:hover { transform: translateY(-3px); }

  /* Grids */
  .devices-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .about-feats { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* CTA */
  .cta-box { padding: 36px 24px; }
  .cta-box .btns { flex-direction: column; gap: 12px; align-items: stretch; }
  .cta-box .btns .btn { justify-content: center; }
}

/* ---- Small phones ---- */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section    { padding: 44px 0; }
  .section-sm { padding: 32px 0; }

  /* Hero */
  .hero { padding: 76px 0 36px; }
  .hero-img-wrap { aspect-ratio: 21/9; max-height: 190px; }
  .hero-float-2 { display: none; }
  .hero-float-1 { bottom: 12px; left: 12px; padding: 9px 13px; }
  .hero-float strong { font-size: 1.05rem; }

  /* Hero stats — 2×2 grid instead of a row */
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .hero-stat {
    border-right: none;
    margin-right: 0;
    padding: 12px 14px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r);
  }
  .stat-val { font-size: 1.5rem; }
  .stat-lbl { font-size: .7rem; }

  .providers { flex-wrap: wrap; gap: 6px; }

  /* Features */
  .feat-grid { grid-template-columns: 1fr; }
  .feat-card { padding: 22px 18px; }

  /* Plans */
  .plans-grid { max-width: 100%; }
  .plan-card { padding: 26px 18px; }
  .plan-amount { font-size: 3rem; }

  /* Devices */
  .devices-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .device-card { padding: 20px 14px; }

  /* Social proof */
  .proof-nums { gap: 18px; flex-wrap: wrap; }
  .proof-num strong { font-size: 1.45rem; }

  /* FAQ */
  .faq-q h3 { font-size: .98rem; }

  /* Footer */
  .site-footer .logo img { height: 28px; }
  .footer-grid { gap: 28px; }
}

/* ============================================================
   LOGO IMAGE
   ============================================================ */

.logo img {
  height: 38px;
  width: auto;
  display: block;
  transition: opacity .2s;
}
.logo img:hover { opacity: .85; }
.logo { display: flex; align-items: center; background: none !important; -webkit-text-fill-color: initial; }

.site-footer .logo img { height: 32px; }

/* ============================================================
   HERO SPLIT (with photo)
   ============================================================ */

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero-img-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 0 0 1px var(--border-a), var(--glow-s);
  flex-shrink: 0;
}

.hero-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s ease;
}
.hero-img-wrap:hover img { transform: scale(1.03); }

/* Left edge fades into dark bg */
.hero-img-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 32%; bottom: 0;
  background: linear-gradient(to right, var(--bg-0) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}
/* Bottom edge */
.hero-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 28%;
  background: linear-gradient(to top, var(--bg-0) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

/* Floating info badges on hero image */
.hero-float {
  position: absolute;
  z-index: 2;
  background: rgba(10,10,24,.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-a);
  border-radius: var(--r);
  padding: 12px 18px;
  pointer-events: none;
}
.hero-float-1 { bottom: 28px; left: 28px; }
.hero-float-2 { top: 22px; right: 22px; }

.hero-float strong {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  background: var(--grad-t);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}
.hero-float small {
  font-size: .72rem;
  color: var(--t3);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: 2px;
  display: block;
}
.hero-float-2 span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--p3);
}

/* ============================================================
   SOCIAL PROOF SECTION
   ============================================================ */

.social-proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.social-img-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 0 0 1px var(--border), var(--glow-s);
}
.social-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
/* Right fade — blends into bg-1 section */
.social-img-wrap::after {
  content: '';
  position: absolute;
  top: 0; right: 0; width: 28%; bottom: 0;
  background: linear-gradient(to left, var(--bg-1) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.social-content .badge { margin-bottom: 16px; display: inline-flex; }
.social-content h2   { margin-bottom: 16px; }
.social-content > p  { color: var(--t2); line-height: 1.78; margin-bottom: 32px; font-size: 1rem; }

.proof-nums {
  display: flex;
  gap: 36px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.proof-num { display: flex; flex-direction: column; gap: 2px; }
.proof-num strong {
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--grad-t);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.proof-num small {
  font-size: .74rem;
  color: var(--t3);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* About page photo */
.about-photo-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 0 0 1px var(--border), var(--glow-s);
}
.about-photo-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.about-photo-wrap::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 35%;
  background: linear-gradient(to top, var(--bg-0) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 960px) {
  .hero-split { grid-template-columns: 1fr; gap: 36px; }
  .hero-img-wrap::before { display: none; }
  .social-proof-grid { grid-template-columns: 1fr; gap: 32px; }
  .social-img-wrap::after { display: none; }
}
