/*
Theme Name: HipoZap Landing
Theme URI: https://hipozap.agenciatwoart.com
Author: Twoart
Author URI: https://agenciatwoart.com
Description: Tema landing page para HipoZap, editable por el editor de temas de WordPress.
Version: 1.0.0
Text Domain: hipozap
*/

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

  :root {
    --green: #25D366;
    --green-dark: #128C7E;
    --green-glow: rgba(37,211,102,0.18);
    --green-dim: rgba(37,211,102,0.08);
    --bg: #0A0D0B;
    --bg2: #0F140F;
    --bg3: #141A14;
    --text: #F0F4F0;
    --muted: #8A9E8A;
    --border: rgba(37,211,102,0.15);
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
  }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.2rem 4rem;
    background: rgba(10,13,11,0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
  }
  .logo {
    font-family: 'Syne', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text);
  }
  .logo span { color: var(--green); }
  /* Mascot */
  .mascot-float { animation: mascotFloat 3.5s ease-in-out infinite; }
  @keyframes mascotFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }
  /* Hero layout */
  .hero { align-items: center; }
  .hero-inner { display: flex; flex-direction: column; align-items: center; text-align: center; max-width: 760px; width: 100%; position: relative; z-index: 1; gap: 0; }
  nav ul { display: flex; gap: 2rem; list-style: none; }
  nav ul a { color: var(--muted); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
  nav ul a:hover { color: var(--green); }
  .nav-cta {
    background: var(--green); color: #0A0D0B;
    padding: 0.5rem 1.4rem; border-radius: 6px;
    font-weight: 600; font-size: 0.9rem;
    text-decoration: none; transition: opacity 0.2s;
  }
  .nav-cta:hover { opacity: 0.85; }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 60% 50% at 50% 60%, rgba(37,211,102,0.12) 0%, transparent 70%),
      radial-gradient(ellipse 80% 40% at 20% 0%, rgba(18,140,126,0.08) 0%, transparent 60%);
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--green-dim);
    border: 1px solid var(--border);
    padding: 0.4rem 1rem; border-radius: 999px;
    font-size: 0.8rem; color: var(--green);
    margin-bottom: 2rem;
    animation: fadeDown 0.6s ease both;
  }
  .hero-badge .dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--green);
    animation: pulse 2s infinite;
  }
  @keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.7)} }

  h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.5rem, 9vw, 8rem);
    line-height: 0.92;
    letter-spacing: 2px;
    animation: fadeDown 0.7s 0.1s ease both;
  }
  h1 .accent { color: var(--green); }
  h1 .line2 { display: block; color: var(--muted); font-size: 0.72em; }

  .hero-sub {
    max-width: 520px;
    color: var(--muted);
    font-size: 1.1rem;
    margin: 1.8rem auto 2.5rem;
    animation: fadeDown 0.7s 0.2s ease both;
  }

  .hero-btns {
    display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
    animation: fadeDown 0.7s 0.3s ease both;
  }
  .btn-primary {
    background: var(--green); color: #0A0D0B;
    padding: 0.9rem 2.2rem; border-radius: 8px;
    font-weight: 600; font-size: 1rem;
    text-decoration: none; transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 0 28px rgba(37,211,102,0.3);
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 40px rgba(37,211,102,0.5); }
  .btn-secondary {
    border: 1px solid var(--border); color: var(--text);
    padding: 0.9rem 2.2rem; border-radius: 8px;
    font-size: 1rem; text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
  }
  .btn-secondary:hover { border-color: var(--green); color: var(--green); }

  .hero-stats {
    display: flex; gap: 3rem; justify-content: center; flex-wrap: wrap;
    margin-top: 4rem;
    animation: fadeDown 0.7s 0.4s ease both;
  }
  .stat-item { text-align: center; }
  .stat-num {
    font-family: 'Syne', sans-serif;
    font-size: 2.2rem; font-weight: 800;
    color: var(--green);
    display: block;
  }
  .stat-label { font-size: 0.8rem; color: var(--muted); }

  /* SCROLL LINE */
  .divider {
    width: 1px; height: 80px;
    background: linear-gradient(to bottom, transparent, var(--green), transparent);
    margin: 0 auto;
    animation: fadeIn 1s 0.8s both;
  }

  @keyframes fadeDown { from { opacity:0; transform: translateY(-20px); } to { opacity:1; transform: none; } }
  @keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

  /* SECTIONS */
  section { padding: 6rem 2rem; max-width: 1100px; margin: 0 auto; }

  .section-label {
    font-size: 0.75rem; letter-spacing: 3px; text-transform: uppercase;
    color: var(--green); margin-bottom: 0.8rem;
    font-family: 'Syne', sans-serif;
  }
  .section-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800; line-height: 1.1;
    margin-bottom: 1rem;
  }
  .section-sub { color: var(--muted); max-width: 520px; }

  /* FEATURES GRID */
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1px;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    margin-top: 4rem;
    background: var(--border);
  }
  .feat-card {
    background: var(--bg2);
    padding: 2.5rem;
    transition: background 0.3s;
  }
  .feat-card:hover { background: var(--bg3); }
  .feat-icon {
    width: 48px; height: 48px; border-radius: 10px;
    background: var(--green-dim);
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
  }
  .feat-title {
    font-family: 'Syne', sans-serif;
    font-weight: 700; font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }
  .feat-desc { color: var(--muted); font-size: 0.9rem; line-height: 1.7; }

  /* HOW IT WORKS */
  .how-section { background: var(--bg2); border-radius: 24px; padding: 4rem; margin: 2rem 0; max-width: 100%; }
  .steps { display: flex; flex-direction: column; gap: 0; margin-top: 3rem; position: relative; }
  .steps::before {
    content: '';
    position: absolute; left: 20px; top: 0; bottom: 0; width: 1px;
    background: linear-gradient(to bottom, var(--green), transparent);
  }
  .step {
    display: flex; gap: 2rem; padding: 1.5rem 0;
    position: relative;
  }
  .step-num {
    min-width: 40px; height: 40px; border-radius: 50%;
    background: var(--green); color: #0A0D0B;
    font-family: 'Syne', sans-serif; font-weight: 800; font-size: 0.85rem;
    display: flex; align-items: center; justify-content: center;
    position: relative; z-index: 1;
  }
  .step-content { padding-top: 0.2rem; }
  .step-title { font-family: 'Syne', sans-serif; font-weight: 700; margin-bottom: 0.3rem; }
  .step-desc { color: var(--muted); font-size: 0.9rem; }

  /* MOCK UI */
  .ui-mock {
    background: #111811;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    margin: 4rem 0;
    position: relative;
    overflow: hidden;
  }
  .ui-mock::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(to right, var(--green-dark), var(--green), var(--green-dark));
  }
  .mock-header {
    display: flex; align-items: center; gap: 0.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
  }
  .mock-dots { display: flex; gap: 6px; }
  .mock-dots span { width: 10px; height: 10px; border-radius: 50%; }
  .mock-dots span:nth-child(1) { background: #FF5F56; }
  .mock-dots span:nth-child(2) { background: #FFBD2E; }
  .mock-dots span:nth-child(3) { background: #27C93F; }
  .mock-title { font-size: 0.8rem; color: var(--muted); font-family: 'Syne', sans-serif; letter-spacing: 1px; }

  .mock-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem;
  }
  .mock-field {
    background: var(--bg); border: 1px solid var(--border);
    border-radius: 8px; padding: 0.8rem 1rem;
    font-size: 0.8rem; color: var(--muted);
  }
  .mock-field.active { border-color: var(--green); color: var(--text); }
  .mock-field label { display: block; font-size: 0.7rem; color: var(--green); margin-bottom: 0.3rem; letter-spacing: 1px; }

  .mock-msgs { display: flex; gap: 0.5rem; margin-bottom: 1rem; }
  .mock-tab {
    padding: 0.4rem 1rem; border-radius: 6px; font-size: 0.75rem;
    border: 1px solid var(--border); color: var(--muted);
    cursor: pointer;
  }
  .mock-tab.on { background: var(--green); color: #0A0D0B; border-color: var(--green); }

  .mock-textarea {
    background: var(--bg); border: 1px solid var(--border);
    border-radius: 8px; padding: 0.8rem; width: 100%;
    color: var(--text); font-size: 0.8rem; line-height: 1.6;
    min-height: 70px; resize: none; font-family: 'Inter', sans-serif;
    margin-bottom: 0.8rem;
  }

  .mock-progress {
    background: rgba(37,211,102,0.1);
    border-radius: 8px; padding: 1rem;
    display: flex; align-items: center; gap: 1rem;
  }
  .mock-bar-wrap { flex: 1; background: var(--bg); border-radius: 4px; height: 6px; overflow: hidden; }
  .mock-bar { height: 100%; background: var(--green); border-radius: 4px; animation: barGrow 2s ease-in-out infinite alternate; }
  @keyframes barGrow { from { width: 35%; } to { width: 72%; } }
  .mock-progress-text { font-size: 0.75rem; color: var(--green); white-space: nowrap; }

  /* PRICING */
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 3.5rem;
  }
  .price-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .price-card:hover { transform: translateY(-4px); }
  .price-card.featured {
    border-color: var(--green);
    box-shadow: 0 0 40px rgba(37,211,102,0.15);
  }
  .price-badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--green); color: #0A0D0B;
    font-size: 0.7rem; font-weight: 700; letter-spacing: 1px;
    padding: 0.25rem 0.8rem; border-radius: 999px;
    font-family: 'Syne', sans-serif;
  }
  .price-plan { font-family: 'Syne', sans-serif; font-size: 0.8rem; font-weight: 600; color: var(--green); letter-spacing: 2px; margin-bottom: 0.8rem; }
  .price-amount {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem; line-height: 1; letter-spacing: 2px;
    margin-bottom: 0.3rem;
  }
  .price-period { font-size: 0.8rem; color: var(--muted); margin-bottom: 1.5rem; }
  .price-features { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 2rem; }
  .price-features li { font-size: 0.9rem; color: var(--muted); display: flex; gap: 0.6rem; align-items: flex-start; }
  .price-features li::before { content: '✓'; color: var(--green); font-weight: 700; min-width: 14px; }
  .price-btn {
    display: block; text-align: center;
    padding: 0.8rem; border-radius: 8px;
    font-weight: 600; font-size: 0.9rem;
    text-decoration: none; transition: all 0.2s;
  }
  .price-btn-outline {
    border: 1px solid var(--border); color: var(--text);
  }
  .price-btn-outline:hover { border-color: var(--green); color: var(--green); }
  .price-btn-solid { background: var(--green); color: #0A0D0B; }
  .price-btn-solid:hover { opacity: 0.85; }

  /* FAQ */
  .faq-list { margin-top: 3rem; display: flex; flex-direction: column; gap: 1px; background: var(--border); border-radius: 12px; overflow: hidden; }
  .faq-item { background: var(--bg2); }
  .faq-q {
    width: 100%; background: none; border: none; color: var(--text);
    font-family: 'Syne', sans-serif; font-weight: 600; font-size: 1rem;
    text-align: left; padding: 1.5rem 2rem;
    cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  }
  .faq-q .arrow { color: var(--green); transition: transform 0.3s; font-size: 1.2rem; }
  .faq-q.open .arrow { transform: rotate(45deg); }
  .faq-a {
    display: none; padding: 0 2rem 1.5rem; color: var(--muted); font-size: 0.95rem; line-height: 1.7;
  }
  .faq-a.show { display: block; }

  /* TESTIMONIALS */
  .testimonials { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
  .testi-card {
    background: var(--bg2); border: 1px solid var(--border);
    border-radius: 14px; padding: 2rem;
  }
  .testi-stars { color: #FFB800; font-size: 0.85rem; margin-bottom: 1rem; }
  .testi-text { color: var(--muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.2rem; font-style: italic; }
  .testi-author { display: flex; align-items: center; gap: 0.8rem; }
  .testi-avatar {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--green-dim); border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.85rem; color: var(--green);
  }
  .testi-name { font-family: 'Syne', sans-serif; font-weight: 600; font-size: 0.9rem; }
  .testi-role { font-size: 0.75rem; color: var(--muted); }

  /* CTA FINAL */
  .cta-final {
    background: linear-gradient(135deg, rgba(37,211,102,0.12), rgba(18,140,126,0.08));
    border: 1px solid var(--border);
    border-radius: 24px;
    text-align: center;
    padding: 6rem 2rem;
    margin: 4rem 0;
    position: relative;
    overflow: hidden;
  }
  .cta-final::before {
    content: '';
    position: absolute; top: -60px; left: 50%; transform: translateX(-50%);
    width: 300px; height: 300px; border-radius: 50%;
    background: radial-gradient(circle, rgba(37,211,102,0.15), transparent 70%);
    pointer-events: none;
  }
  .cta-final h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 7vw, 6rem);
    letter-spacing: 3px; line-height: 0.95;
    margin-bottom: 1.5rem;
  }
  .cta-final h2 .accent { color: var(--green); display: block; }
  .cta-final p { color: var(--muted); max-width: 480px; margin: 0 auto 2.5rem; }

  /* FOOTER */
  footer {
    border-top: 1px solid var(--border);
    padding: 3rem 4rem;
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
    color: var(--muted); font-size: 0.85rem;
  }
  footer .logo-sm { font-family: 'Syne', sans-serif; font-size: 1.4rem; font-weight: 800; color: var(--text); letter-spacing: -0.5px; }
  footer ul { display: flex; gap: 1.5rem; list-style: none; }
  footer ul a { color: var(--muted); text-decoration: none; }
  footer ul a:hover { color: var(--green); }

  /* UTILS */
  .text-center { text-align: center; }
  .mb-sm { margin-bottom: 0.5rem; }

  /* ── DEMO LAYOUT ───────────────────────────────────────── */
  .demo-container { margin-top: 1.5rem; }
  .demo-layout { display: grid; grid-template-columns: 1fr 340px; gap: 1.5rem; align-items: start; }
  @media(max-width:820px){ .demo-layout{ grid-template-columns:1fr; } }

  /* Browser chrome wrapper */
  .browser-wrap { border-radius: 12px; overflow: hidden; border: 1px solid rgba(255,255,255,0.1); background:#202020; }
  .browser-chrome { display:flex; align-items:center; gap:10px; background:#2d2d2d; padding:8px 14px; border-bottom:1px solid #111; }
  .bc-dots { display:flex; gap:5px; }
  .bc-dots span { width:10px; height:10px; border-radius:50%; }
  .bc-dots span:nth-child(1){background:#FF5F56}
  .bc-dots span:nth-child(2){background:#FFBD2E}
  .bc-dots span:nth-child(3){background:#27C93F}
  .bc-url { flex:1; background:#1a1a1a; border-radius:5px; padding:4px 10px; font-size:11px; color:#888; }
  .bc-ext-area { display:flex; align-items:center; gap:6px; }
  .bc-ext-icon { font-size:18px; cursor:pointer; }

  /* WhatsApp Web BG */
  .wa-bg { display:flex; min-height:380px; background:#111b11; }
  .wa-bg-sidebar { width:200px; flex-shrink:0; background:#111b11; border-right:1px solid rgba(255,255,255,0.06); display:flex; flex-direction:column; }
  .wa-bg-header { padding:10px; display:flex; align-items:center; gap:6px; background:#202c20; }
  .wa-bg-avatar { width:32px; height:32px; border-radius:50%; background:#25D366; flex-shrink:0; }
  .wa-bg-searchbar { margin:6px 8px; background:#2a2a2a; border-radius:20px; padding:5px 10px; font-size:10px; color:#555; }
  .wa-bg-chat { display:flex; align-items:center; gap:8px; padding:8px; border-bottom:1px solid rgba(255,255,255,0.03); transition: background 0.4s; }
  .wa-bg-av { width:36px; height:36px; border-radius:50%; flex-shrink:0; }
  .wa-bg-cinfo { flex:1; min-width:0; }
  .wa-bg-cname { font-size:10px; font-weight:600; color:#c8c8c8; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
  .wa-bg-cprev { font-size:9px; color:#555; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
  .wa-bg-tick { font-size:10px; color:#25D366; flex-shrink:0; }
  .wa-bg-chat.wa-active { background:rgba(37,211,102,0.08); }
  .wa-bg-main { flex:1; background:#0d1117; display:flex; align-items:flex-end; padding:12px; position:relative; overflow:hidden; }
  .wa-bg-pattern { width:100%; }
  .wa-bg-bubble { max-width:75%; background:#005C4B; border-radius:8px 0 8px 8px; padding:7px 10px; margin-left:auto; }
  .bubble-text { font-size:10px; color:#e0e0e0; line-height:1.5; word-break:break-word; }
  .bubble-time { font-size:9px; color:#9ab; text-align:right; margin-top:3px; }

  /* ── REAL EXTENSION POPUP ───────────────────────────── */
  .real-popup {
    background: #1a1a1a; border-radius:10px; overflow:hidden;
    border: 1px solid rgba(255,255,255,0.08);
    display: flex; flex-direction:column;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  }
  .rp-header { display:flex; align-items:center; justify-content:space-between; padding:12px 14px 10px; background:#1a1a1a; border-bottom:1px solid rgba(255,255,255,0.07); }
  .rp-logo-area { display:flex; align-items:center; gap:8px; }
  .rp-wa-icon { width:36px; height:36px; border-radius:50%; background:#25D366; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
  .rp-title { font-size:13px; font-weight:700; color:#f0f0f0; line-height:1.2; }
  .rp-sub { font-size:10px; color:#666; }
  .rp-status { font-size:10px; padding:3px 8px; border-radius:12px; background:#2a2a2a; border:1px solid #444; color:#888; white-space:nowrap; }
  .rp-status.connected { color:#25D366; border-color:rgba(37,211,102,0.4); background:rgba(37,211,102,0.08); }
  .rp-tabs { display:flex; background:#111; border-bottom:1px solid rgba(255,255,255,0.07); }
  .rp-tab { flex:1; text-align:center; padding:9px 4px; font-size:11px; color:#666; cursor:pointer; border-bottom:2px solid transparent; transition:all 0.2s; }
  .rp-tab:hover { color:#aaa; }
  .rp-active-tab { color:#25D366 !important; border-bottom-color:#25D366 !important; }
  .rp-panel { padding:12px 14px; display:flex; flex-direction:column; gap:8px; }
  .uso-screen { display:flex; flex-direction:column; gap:8px; }
  .rp-warn { background:rgba(234,179,8,0.12); border:1px solid rgba(234,179,8,0.25); border-radius:6px; padding:7px 10px; font-size:10px; color:#ca8a04; }
  .rp-section-label { font-size:9px; letter-spacing:1.5px; color:#555; font-weight:700; margin-bottom:1px; }
  .rp-textarea { background:#111; border:1px solid #333; border-radius:6px; padding:7px 9px; font-size:11px; color:#c8c8c8; line-height:1.6; font-family:monospace; resize:none; width:100%; min-height:72px; }
  .rp-hint { font-size:10px; color:#555; }
  .rp-filter-card { background:#222; border:1px solid #333; border-radius:8px; padding:10px; display:flex; align-items:center; gap:10px; justify-content:space-between; }
  .rp-filter-left { display:flex; align-items:center; gap:8px; }
  .rp-filter-icon { font-size:18px; }
  .rp-filter-title { font-size:11px; font-weight:700; color:#e0e0e0; }
  .rp-filter-sub { font-size:9px; color:#666; }
  .rp-toggle { width:36px; height:20px; border-radius:10px; background:#333; position:relative; flex-shrink:0; cursor:pointer; }
  .rp-toggle.on { background:#25D366; }
  .rp-tball { width:16px; height:16px; border-radius:50%; background:#fff; position:absolute; top:2px; left:2px; transition:left 0.2s; box-shadow:0 1px 3px rgba(0,0,0,0.5); }
  .rp-toggle.on .rp-tball { left:18px; }
  .rp-scan-info { display:flex; align-items:flex-end; justify-content:space-between; gap:8px; }
  .rp-scan-btn { background:none; border:1.5px solid #25D366; color:#25D366; border-radius:6px; padding:5px 10px; font-size:11px; font-weight:700; cursor:pointer; white-space:nowrap; }
  .rp-scanbar-wrap { height:4px; background:#222; border-radius:2px; overflow:hidden; margin-bottom:3px; }
  .rp-scanbar { height:100%; width:0%; background:#25D366; border-radius:2px; transition:width 0.08s; }
  .rp-scan-msg { font-size:10px; color:#888; }
  .rp-alt-badge { font-size:9px; background:rgba(37,211,102,0.12); color:#25D366; border:1px solid rgba(37,211,102,0.25); border-radius:10px; padding:2px 7px; }
  .rp-msg-tabs { display:flex; gap:6px; }
  .rp-msg-tab { padding:5px 14px; border-radius:6px; font-size:11px; border:1px solid #444; color:#666; cursor:pointer; transition:all 0.2s; }
  .rp-msg-tab:hover { border-color:#25D366; color:#25D366; }
  .rp-msg-active { background:#25D366 !important; color:#0a0a0a !important; border-color:#25D366 !important; font-weight:700; }
  .rp-var-btn { background:#2a2a2a; border:1px solid #444; border-radius:4px; padding:2px 7px; font-size:10px; color:#888; cursor:pointer; }
  .rp-interval-input { background:#111; border:1px solid #333; border-radius:5px; padding:5px 8px; font-size:12px; color:#c8c8c8; width:60px; text-align:center; }
  .rp-progress-header { display:flex; align-items:center; gap:10px; font-size:12px; color:#888; }
  .rp-pg-ok { color:#25D366; font-weight:700; }
  .rp-pg-fail { color:#f87171; font-weight:700; }
  .rp-pg-skip { color:#f59e0b; font-weight:700; }
  .rp-prog-wrap { height:5px; background:#222; border-radius:3px; overflow:hidden; }
  .rp-prog-fill { height:100%; width:0%; background:#25D366; border-radius:3px; transition:width 0.4s; }
  .rp-log { background:#111; border:1px solid #2a2a2a; border-radius:6px; padding:8px; font-size:10px; min-height:70px; display:flex; flex-direction:column; gap:2px; overflow:hidden; }
  .rp-log-idle { color:#444; font-style:italic; }
  .rp-log-ok { color:#25D366; }
  .rp-log-skip { color:#f59e0b; }
  .rp-log-fail { color:#f87171; }
  .rp-ctrl-row { display:flex; gap:6px; }
  .rp-ctrl-green { flex:1; background:#25D366; color:#0a0a0a; border:none; border-radius:7px; padding:9px; font-size:12px; font-weight:700; cursor:pointer; }
  .rp-ctrl-pause { width:38px; background:#2a2a2a; border:1px solid #444; color:#aaa; border-radius:7px; font-size:12px; cursor:pointer; }
  .rp-ctrl-cancel { width:38px; background:#2a2a2a; border:1px solid rgba(248,113,113,0.4); color:#f87171; border-radius:7px; font-size:12px; cursor:pointer; }
  .rp-send-btn { width:100%; background:#25D366; color:#0a0a0a; border:none; border-radius:8px; padding:10px; font-size:13px; font-weight:700; cursor:pointer; margin-top:4px; }
  .rp-import-btn { flex:1; border:1px solid #444; background:none; color:#ccc; border-radius:7px; padding:8px; font-size:11px; cursor:pointer; }
  .rp-clear-btn { flex:1; border:1.5px solid rgba(239,68,68,0.5); background:none; color:#f87171; border-radius:7px; padding:8px; font-size:11px; cursor:pointer; }
  .rp-hist-card { background:#222; border:1px solid #333; border-radius:8px; padding:12px; }
  .rp-hist-date { font-size:11px; color:#888; margin-bottom:5px; }
  .rp-hist-stats { font-size:13px; color:#ccc; font-weight:600; }

  /* ── INSTALL DEMO ───────────────────────────────────── */
  .ins-browser-body { min-height:320px; background:#1a1a1a; padding:14px; display:flex; align-items:center; justify-content:center; }
  .ins-screen { width:100%; animation:fadeIn 0.35s ease; }
  .ins-download-ui { text-align:center; }
  .ins-file-card { display:flex; align-items:center; gap:10px; background:#222; border:1px solid #333; border-radius:8px; padding:10px 12px; text-align:left; }
  .ins-dl-chip { background:#25D366; color:#0a0a0a; border-radius:5px; padding:4px 9px; font-size:10px; font-weight:700; cursor:pointer; white-space:nowrap; }
  .ins-extract-row { display:flex; align-items:center; gap:6px; justify-content:center; }
  .ins-folder-active { border-color:rgba(37,211,102,0.4) !important; background:rgba(37,211,102,0.05) !important; }
  .ins-chrome-ext-page { background:#202020; border-radius:8px; padding:12px; width:100%; }
  .ins-cep-topbar { display:flex; align-items:center; justify-content:space-between; margin-bottom:10px; }
  .ins-devmode-row { display:flex; align-items:center; gap:6px; }
  .ins-devmode-toggle { width:32px; height:18px; border-radius:9px; background:#25D366; position:relative; }
  .ins-devmode-ball { width:14px; height:14px; border-radius:50%; background:#fff; position:absolute; top:2px; left:16px; box-shadow:0 1px 2px rgba(0,0,0,0.5); }
  .ins-cep-btns { display:flex; gap:8px; flex-wrap:wrap; }
  .ins-cep-btn { padding:6px 12px; border-radius:5px; font-size:11px; border:1px solid #444; color:#888; cursor:pointer; }
  .ins-cep-active { border-color:rgba(37,211,102,0.5) !important; color:#25D366 !important; background:rgba(37,211,102,0.07) !important; font-weight:700; }
  .ins-cep-hint { font-size:10px; color:#25D366; margin-top:6px; }
  .ins-folder-picker { background:#202020; border-radius:8px; padding:12px; width:100%; }
  .ins-fp-title { font-size:12px; font-weight:700; color:#e0e0e0; margin-bottom:5px; }
  .ins-fp-breadcrumb { font-size:10px; color:#25D366; margin-bottom:8px; background:#111; border-radius:4px; padding:4px 8px; }
  .ins-fp-files { display:flex; flex-direction:column; gap:3px; margin-bottom:10px; }
  .ins-fp-file { font-size:10px; color:#666; padding:2px 6px; }
  .ins-fp-actions { display:flex; gap:8px; justify-content:flex-end; }
  .ins-fp-cancel { padding:5px 12px; border:1px solid #444; background:none; color:#888; border-radius:5px; font-size:11px; cursor:pointer; }
  .ins-fp-select { padding:5px 12px; background:#25D366; border:none; color:#0a0a0a; border-radius:5px; font-size:11px; font-weight:700; cursor:pointer; }
  .ins-real-popup { border-radius:10px; overflow:hidden; border:1px solid rgba(37,211,102,0.3); width:100%; max-width:340px; }
  .ins-instruction-panel { display:flex; flex-direction:column; gap:10px; }
  .ins-step-card { display:flex; gap:12px; padding:12px; background:var(--bg2); border:1px solid var(--border); border-radius:10px; transition:all 0.3s; }
  .ins-step-card.ins-active { border-color:var(--green); background:rgba(37,211,102,0.05); }
  .ins-step-num { width:28px; height:28px; border-radius:50%; background:var(--green); color:#0a0a0a; font-family:'Syne',sans-serif; font-weight:800; font-size:11px; display:flex; align-items:center; justify-content:center; flex-shrink:0; margin-top:1px; }
  .ins-step-body {}
  .ins-step-title { font-family:'Syne',sans-serif; font-weight:700; font-size:13px; margin-bottom:3px; }
  .ins-step-text { font-size:11px; color:var(--muted); line-height:1.6; }
  .ins-step-text code { background:rgba(37,211,102,0.1); color:#25D366; padding:1px 4px; border-radius:3px; font-size:10px; }

  /* VIDEO SECTIONS (tabs CSS) */
  .step-nav { display:flex; align-items:center; justify-content:space-between; margin-top:14px; flex-wrap:wrap; gap:10px; }
  .step-pills { display:flex; gap:6px; flex-wrap:wrap; }
  .step-pill { padding:5px 12px; border-radius:999px; border:1px solid rgba(37,211,102,0.2); font-size:11px; color:#5a6e5a; cursor:pointer; transition:all 0.2s; font-family:'Syne',sans-serif; }
  .step-pill:hover { border-color:var(--green); color:var(--green); }
  .active-pill { background:var(--green); color:#0a0d0a !important; border-color:var(--green) !important; }
  .step-arrows { display:flex; align-items:center; gap:10px; }
  .arrow-btn { width:32px; height:32px; border-radius:50%; border:1px solid var(--border); background:none; color:var(--green); font-size:14px; cursor:pointer; transition:background 0.2s; }
  .arrow-btn:hover { background:var(--green-dim); }
  .step-counter { font-size:11px; color:var(--muted); font-family:'Syne',sans-serif; }
  .step-desc { margin-top:10px; font-size:0.88rem; color:var(--muted); padding:12px 16px; background:var(--bg2); border:1px solid var(--border); border-radius:8px; }
  .video-section { max-width: 100%; padding: 6rem 2rem; }
  .video-section-inner { max-width: 1100px; margin: 0 auto; }
  .video-tabs { display: flex; gap: 0; margin-bottom: 2.5rem; border: 1px solid var(--border); border-radius: 10px; overflow: hidden; width: fit-content; }
  .vtab {
    padding: 0.7rem 1.8rem; font-family: 'Syne', sans-serif;
    font-weight: 600; font-size: 0.85rem; letter-spacing: 1px;
    cursor: pointer; background: none; border: none;
    color: var(--muted); transition: all 0.2s; white-space: nowrap;
  }
  .vtab.active { background: var(--green); color: #0A0D0B; }
  .video-wrap {
    position: relative; border-radius: 16px; overflow: hidden;
    border: 1px solid var(--border);
    background: #050805;
  }
  .video-wrap iframe {
    display: block; width: 100%;
    aspect-ratio: 16/9; border: none;
  }
  .video-placeholder {
    aspect-ratio: 16/9;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 1rem;
    background: linear-gradient(135deg, #0A0D0B, #0F1A0F);
    cursor: pointer;
    transition: background 0.3s;
  }
  .video-placeholder:hover { background: linear-gradient(135deg, #0D110D, #142014); }
  .play-btn {
    width: 72px; height: 72px; border-radius: 50%;
    background: var(--green); display: flex;
    align-items: center; justify-content: center;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 0 0 0 rgba(37,211,102,0.5);
    animation: playPulse 2.5s infinite;
  }
  .play-btn svg { margin-left: 4px; }
  @keyframes playPulse {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.45); }
    70% { box-shadow: 0 0 0 20px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
  }
  .video-placeholder:hover .play-btn { transform: scale(1.1); }
  .video-label { font-family: 'Syne', sans-serif; font-weight: 600; font-size: 1rem; color: var(--muted); }
  .video-sub-label { font-size: 0.78rem; color: var(--muted); opacity: 0.6; }
  .video-caption {
    display: flex; align-items: center; gap: 1rem;
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border);
    background: var(--bg2);
  }
  .vcap-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); flex-shrink: 0; }
  .vcap-text { font-size: 0.85rem; color: var(--muted); }
  .video-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 2rem; }
  @media (max-width: 768px) { .video-grid { grid-template-columns: 1fr; } }

  /* SCROLL REVEAL */
  .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
  .reveal.visible { opacity: 1; transform: none; }

  @media (max-width: 768px) {
    nav { padding: 1rem 1.5rem; }
    nav ul { display: none; }
    section { padding: 4rem 1.5rem; }
    .how-section { padding: 2.5rem 1.5rem; }
    .mock-row { grid-template-columns: 1fr; }
    footer { padding: 2rem 1.5rem; flex-direction: column; }
  }