  :root {
    --bg: #060810;
    --bg2: #0a0d18;
    --bg3: #0f1424;
    --card: #111826;
    --card2: #161e30;
    --border: rgba(255,255,255,0.07);
    --border2: rgba(255,255,255,0.12);
    --gold: #f0b429;
    --gold2: #ffd166;
    --gold-glow: rgba(240,180,41,0.18);
    --green: #00e676;
    --green2: #00c853;
    --green-glow: rgba(0,230,118,0.15);
    --red: #ff4757;
    --text: #e8ecf4;
    --text2: #9aa3b8;
    --text3: #5c6478;
    --accent: #4f8dff;
    --accent2: #7eb3ff;
    --r: 14px;
    --r2: 20px;
  }

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

  html { scroll-behavior: smooth; }

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

  /* ─── NOISE OVERLAY ─── */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
  }

  .container { max-width: 1180px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }

  /* ─── TYPOGRAPHY ─── */
  h1, h2, h3, h4 { font-family: 'Syne', sans-serif; line-height: 1.1; }
  h1 { font-size: clamp(2.4rem, 6vw, 4.8rem); font-weight: 800; }
  h2 { font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 700; }
  h3 { font-size: 1.25rem; font-weight: 600; }

.entry-header {
	margin-bottom: 32px;
}


.type-post {
	padding-top: 60px;
}

.type-post h1 {
	font-size: 36px;
	margin-bottom: 16px;
}
.type-post h2 {
	font-size: 28px;
	margin: 16px 0;
	display: block;
}
.type-post h3 {
	font-size: 24px;
	margin: 16px 0;
	display: block;
}
  .gold { color: var(--gold); }
  .green { color: var(--green); }

  /* ─── NAV ─── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 16px 0;
    background: rgba(6,8,16,0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
  }
  nav .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }
  .logo {
    font-family: 'Syne', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .logo-icon {
    width: 34px; height: 34px;
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    border-radius: 8px;
    display: grid; place-items: center;
    font-size: 18px;
  }
  .nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
  }
  .nav-links a {
    color: var(--text2);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 6px 14px;
    border-radius: 8px;
    transition: all 0.2s;
  }
  .nav-links a:hover { color: var(--text); background: var(--card); }
  .btn-nav {
    background: linear-gradient(135deg, var(--gold), #e6a000);
    color: #000 !important;
    font-weight: 600 !important;
    padding: 8px 20px !important;
    border-radius: 10px !important;
  }
  .btn-nav:hover { opacity: 0.88; transform: translateY(-1px); }
  .nav-menu-btn { display: none; background: none; border: none; color: var(--text); font-size: 22px; cursor: pointer; }
	
.site-wrapper {
	margin-top: 67px;
}


  /* ─── HERO ─── */
  .hero {
    padding: 110px 0 60px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 80% 60% at 50% -10%, rgba(240,180,41,0.12) 0%, transparent 65%),
      radial-gradient(ellipse 60% 50% at 80% 80%, rgba(79,141,255,0.08) 0%, transparent 60%),
      radial-gradient(ellipse 40% 40% at 10% 60%, rgba(0,230,118,0.05) 0%, transparent 50%);
  }
  /* card suits decoration */
  .hero-suits {
    position: absolute;
    right: -40px; top: 50%;
    transform: translateY(-50%);
    font-size: 340px;
    color: rgba(240,180,41,0.03);
    font-family: serif;
    user-select: none;
    line-height: 1;
  }
  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-badge {
    display: flex;
    width: fit-content;
    align-items: center;
    gap: 8px;
    background: rgba(240,180,41,0.1);
    border: 1px solid rgba(240,180,41,0.25);
    color: var(--gold2);
    font-size: 0.82rem;
    font-weight: 500;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 20px;
    letter-spacing: 0.01em;
    white-space: nowrap;
  }
  @keyframes badgeFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
  }
  .hero h1 { margin-bottom: 10px; }
  .hero-badge span { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; }
  @keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.4)} }

  /* Hero elements visible immediately — no reveal animation */
  .hero h1,
  .hero .hero-h1-sub,
  .hero .hero-sub,
  .hero .hero-actions,
  .hero .hero-stats {
    opacity: 1 !important;
    transform: none !important;
  }
  .hero-h1-sub {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1rem, 2.2vw, 1.45rem);
    font-weight: 500;
    color: var(--gold2);
    margin-bottom: 16px;
    opacity: 0.85;
  }
  .hero h1 em { font-style: normal; background: linear-gradient(90deg, var(--gold), var(--gold2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

  .hero-sub {
    color: var(--text2);
    font-size: 1.1rem;
    margin-bottom: 28px;
    max-width: 520px;
    font-weight: 300;
  }
  .hero-actions { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
  .hero-btn-full { width: 100%; max-width: 100%; justify-content: center; }
  .hero-actions-row { display: flex; gap: 12px; flex-wrap: wrap; width: 100%; }
  .hero-actions-row .btn-secondary { flex: 1; justify-content: center; }
  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--gold) 0%, #e6a000 100%);
    color: #000;
    font-weight: 700;
    font-family: 'Syne', sans-serif;
    font-size: 0.95rem;
    padding: 15px 30px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.25s;
    box-shadow: 0 8px 32px rgba(240,180,41,0.3);
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(240,180,41,0.45); }
  .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--card);
    color: var(--text);
    border: 1px solid var(--border2);
    font-weight: 500;
    font-size: 0.88rem;
    padding: 10px 20px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.25s;
    white-space: nowrap;
  }
  .btn-secondary:hover { background: var(--card2); border-color: rgba(255,255,255,0.2); transform: translateY(-2px); }

  .hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
  }
  .stat-item { }
  .stat-num {
    font-family: 'Syne', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
    margin-bottom: 4px;
  }
  .stat-num span { color: var(--gold); }
  .stat-label { font-size: 0.82rem; color: var(--text3); text-transform: uppercase; letter-spacing: 0.06em; }

  /* ─── PLATFORMS ─── */
  .platforms {
    padding: 50px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg2);
  }
  .platforms-label { text-align: center; color: var(--text3); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 24px; }
  .platforms-list {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px 32px;
  }
  .platform-item {
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text3);
    padding: 8px 20px;
    border: 1px solid var(--border);
    border-radius: 100px;
    transition: all 0.25s;
    cursor: default;
  }
  .platform-item:hover { color: var(--gold); border-color: rgba(240,180,41,0.3); background: rgba(240,180,41,0.05); }

  /* ─── SECTION HEADER ─── */
  .section { padding: 100px 0; position: relative; }
  .section-tag {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 14px;
  }
  .section-title { margin-bottom: 16px; }
  .section-sub { color: var(--text2); font-size: 1.05rem; max-width: 520px; font-weight: 300; }
  .section-header { margin-bottom: 60px; }
  .section-header.centered { text-align: center; }
  .section-header.centered .section-sub { margin: 0 auto; }

  /* ─── FEATURES ─── */
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--r2);
    overflow: hidden;
  }
  .feature-card {
    background: var(--bg2);
    padding: 36px 32px;
    transition: background 0.25s;
  }
  .feature-card:hover { background: var(--card); }
  .feature-icon {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, rgba(240,180,41,0.15), rgba(240,180,41,0.05));
    border: 1px solid rgba(240,180,41,0.2);
    border-radius: 12px;
    display: grid; place-items: center;
    font-size: 24px;
    margin-bottom: 20px;
  }
  .feature-card h3 { margin-bottom: 10px; font-size: 1.05rem; }
  .feature-card p { color: var(--text2); font-size: 0.9rem; line-height: 1.7; }

  /* ─── PRICING ─── */
  #pricing { background: var(--bg2); }

  .pricing-note {
    background: rgba(240,180,41,0.07);
    border: 1px solid rgba(240,180,41,0.2);
    border-radius: var(--r);
    padding: 20px 24px;
    margin-bottom: 48px;
    font-size: 0.9rem;
    color: var(--text2);
  }
  .pricing-note strong { color: var(--gold); }

  .pricing-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 48px;
  }
  .pricing-step {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r2);
    padding: 28px;
    position: relative;
  }
  .step-num {
    width: 36px; height: 36px;
    background: linear-gradient(135deg, var(--gold), #e6a000);
    border-radius: 10px;
    display: grid; place-items: center;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    color: #000;
    margin-bottom: 14px;
  }
  .pricing-step h4 { font-size: 0.95rem; margin-bottom: 8px; font-family: 'Syne', sans-serif; }
  .pricing-step p { font-size: 0.88rem; color: var(--text2); line-height: 1.7; }

  .pricing-table-wrap {
    overflow-x: auto;
    border-radius: var(--r2);
    border: 1px solid var(--border);
  }
  .pricing-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    min-width: 600px;
  }
  .pricing-table thead tr {
    background: var(--card);
    border-bottom: 2px solid var(--border2);
  }
  .pricing-table th {
    padding: 16px 20px;
    text-align: left;
    font-family: 'Syne', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text3);
  }
  .pricing-table th:first-child { width: 140px; }
  .pricing-table tbody tr {
    border-bottom: 1px solid var(--border);
    transition: background 0.2s;
  }
  .pricing-table tbody tr:last-child { border-bottom: none; }
  .pricing-table tbody tr:hover { background: var(--card); }
  .pricing-table td { padding: 14px 20px; color: var(--text2); }
  .pricing-table td:first-child { font-family: 'Syne', sans-serif; font-weight: 700; color: var(--gold); font-size: 0.95rem; }
  .td-price {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    color: var(--green) !important;
    font-size: 1rem;
  }

  .pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 48px;
  }
  .price-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r2);
    padding: 36px 32px;
    position: relative;
    transition: all 0.3s;
  }
  .price-card:hover { border-color: var(--border2); transform: translateY(-4px); }
  .price-card.featured {
    border-color: rgba(240,180,41,0.4);
    background: linear-gradient(145deg, var(--card2), rgba(240,180,41,0.04));
    box-shadow: 0 0 60px rgba(240,180,41,0.1);
  }
  .price-card.featured::before {
    content: '⭐ Most Popular';
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--gold), #e6a000);
    color: #000;
    font-size: 0.72rem;
    font-weight: 700;
    font-family: 'Syne', sans-serif;
    padding: 4px 16px;
    border-radius: 100px;
    white-space: nowrap;
    letter-spacing: 0.03em;
  }
  .price-name { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.1rem; margin-bottom: 8px; }
  .price-desc { color: var(--text3); font-size: 0.85rem; margin-bottom: 24px; }
  .price-amount {
    font-family: 'Syne', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 6px;
  }
  .price-amount sup { font-size: 1.2rem; color: var(--text2); vertical-align: super; }
  .price-period { color: var(--text3); font-size: 0.82rem; margin-bottom: 28px; }
  .price-features { list-style: none; margin-bottom: 32px; }
  .price-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text2);
    padding: 7px 0;
    border-bottom: 1px solid var(--border);
  }
  .price-features li:last-child { border-bottom: none; }
  .price-features li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
  .btn-price {
    display: block;
    text-align: center;
    padding: 13px;
    border-radius: 12px;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.25s;
  }
  .btn-price-default {
    background: var(--bg3);
    border: 1px solid var(--border2);
    color: var(--text);
  }
  .btn-price-default:hover { background: var(--card2); }
  .btn-price-featured {
    background: linear-gradient(135deg, var(--gold), #e6a000);
    color: #000;
    box-shadow: 0 6px 24px rgba(240,180,41,0.3);
  }
  .btn-price-featured:hover { transform: translateY(-1px); box-shadow: 0 8px 30px rgba(240,180,41,0.45); }

  /* ─── HOW TO INSTALL ─── */
  #install { background: var(--bg); }
  .install-tabs {
    display: flex;
    gap: 4px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 5px;
    width: fit-content;
    margin-bottom: 52px;
  }
  .tab-btn {
    padding: 10px 24px;
    border-radius: 10px;
    border: none;
    background: transparent;
    color: var(--text2);
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .tab-btn.active { background: linear-gradient(135deg, var(--gold), #e6a000); color: #000; }
  .tab-btn:not(.active):hover { background: var(--card2); color: var(--text); }
  .install-panel { display: none; }
  .install-panel.active { display: block; }

  .install-steps { display: grid; gap: 16px; }
  .install-step {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 20px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r2);
    padding: 28px 28px 28px 24px;
    transition: all 0.25s;
    align-items: start;
  }
  .install-step:hover { border-color: var(--border2); background: var(--card2); }
  .install-step-num {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, rgba(240,180,41,0.12), rgba(240,180,41,0.04));
    border: 2px solid rgba(240,180,41,0.25);
    border-radius: 12px;
    display: grid; place-items: center;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--gold);
    flex-shrink: 0;
  }
  .install-step-content h4 {
    font-family: 'Syne', sans-serif;
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: var(--text);
  }
  .install-step-content p { color: var(--text2); font-size: 0.9rem; line-height: 1.7; }
  .install-step-content ul {
    margin-top: 10px;
    padding-left: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  .install-step-content ul li {
    color: var(--text2);
    font-size: 0.88rem;
    display: flex;
    align-items: flex-start;
    gap: 8px;
  }
  .install-step-content ul li::before { content: '→'; color: var(--gold); flex-shrink: 0; }

  /* ─── BLOG ─── */
  #blog { background: var(--bg2); }
  .blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
  .blog-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r2);
    overflow: hidden;
    transition: all 0.3s;
  }
  .blog-card:hover { border-color: var(--border2); transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
  .blog-thumb {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
    position: relative;
    overflow: hidden;
  }
  .blog-thumb-1 { background: linear-gradient(135deg, rgba(240,180,41,0.15), rgba(240,180,41,0.05)); }
  .blog-thumb-2 { background: linear-gradient(135deg, rgba(79,141,255,0.15), rgba(79,141,255,0.05)); }
  .blog-thumb-3 { background: linear-gradient(135deg, rgba(0,230,118,0.15), rgba(0,230,118,0.05)); }
  .blog-card-body { padding: 28px; }
  .blog-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    flex-wrap: wrap;
  }
  .blog-tag {
    background: rgba(240,180,41,0.1);
    border: 1px solid rgba(240,180,41,0.2);
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
  .blog-date { color: var(--text3); font-size: 0.8rem; }
  .blog-card h3 { margin-bottom: 10px; font-size: 1.1rem; line-height: 1.3; }
  .blog-card p { color: var(--text2); font-size: 0.88rem; line-height: 1.7; margin-bottom: 20px; }
  .blog-card a {
    color: var(--gold);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
  }
  .blog-card a:hover { gap: 10px; }

  /* ─── TESTIMONIALS ─── */
  .testimonials { padding: 100px 0; background: var(--bg); }
  .testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
  .testimonial-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r2);
    padding: 32px;
  }
  .stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 16px; letter-spacing: 2px; }
  .testimonial-text { color: var(--text2); font-size: 0.9rem; line-height: 1.75; margin-bottom: 20px; font-style: italic; }
  .testimonial-author { display: flex; align-items: center; gap: 12px; }
  .testimonial-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), #e6a000);
    display: grid; place-items: center;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    color: #000;
    font-size: 0.9rem;
  }
  .testimonial-name { font-family: 'Syne', sans-serif; font-weight: 600; font-size: 0.9rem; }
  .testimonial-role { color: var(--text3); font-size: 0.78rem; }

  /* ─── CTA ─── */
  .cta-section {
    padding: 100px 0;
    background: var(--bg2);
    position: relative;
    overflow: hidden;
  }
  .cta-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(240,180,41,0.07) 0%, transparent 70%);
  }
  .cta-inner {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
  }
  .cta-inner h2 { margin-bottom: 18px; }
  .cta-inner p { color: var(--text2); font-size: 1.05rem; margin-bottom: 40px; max-width: 460px; margin-left: auto; margin-right: auto; font-weight: 300; }
  .cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

  /* ─── FOOTER ─── */
  footer {
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 60px 0 32px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1fr repeat(3, auto);
    gap: 40px 60px;
    margin-bottom: 48px;
  }
  .footer-brand p { color: var(--text3); font-size: 0.88rem; margin-top: 14px; max-width: 280px; line-height: 1.7; }
  .footer-col h5 { font-family: 'Syne', sans-serif; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text3); margin-bottom: 16px; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col ul a { color: var(--text2); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
  .footer-col ul a:hover { color: var(--gold); }
  .footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.8rem;
    color: var(--text3);
  }
  .footer-bottom a { color: var(--text3); text-decoration: none; }
  .footer-bottom a:hover { color: var(--gold); }

  /* ─── FAQ ─── */
  .faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 860px; margin: 0 auto; }
  .faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r2);
    overflow: hidden;
    transition: border-color 0.25s;
  }
  .faq-item.open { border-color: rgba(240,180,41,0.35); }
  .faq-q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 22px 28px;
    background: none;
    border: none;
    color: var(--text);
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-align: left;
    cursor: pointer;
    transition: color 0.2s;
  }
  .faq-q:hover { color: var(--gold); }
  .faq-arrow {
    color: var(--gold);
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: transform 0.3s;
    display: inline-block;
  }
  .faq-item.open .faq-arrow { transform: rotate(180deg); }
  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
    padding: 0 28px;
  }
  .faq-a p { color: var(--text2); font-size: 0.9rem; line-height: 1.8; padding-bottom: 22px; }
  .faq-item.open .faq-a { max-height: 400px; }

  /* ─── SEO TEXT ─── */
  .seo-section {
    padding: 80px 0;
    background: var(--bg);
    border-top: 1px solid var(--border);
  }
 
  .seo-title {
    font-size: clamp(1.3rem, 2.5vw, 1.9rem);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
  }
  .seo-content h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
    margin: 32px 0 12px;
  }
  .seo-content p {
    color: var(--text3);
    font-size: 0.9rem;
    line-height: 1.85;
    margin-bottom: 14px;
  }
  .seo-content strong { color: var(--text2); }

  /* ─── TELEGRAM FLOAT ─── */
  .tg-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px; height: 56px;
    background: linear-gradient(135deg, #229ED9, #1a82b0);
    border-radius: 50%;
    display: grid; place-items: center;
    font-size: 26px;
    text-decoration: none;
    z-index: 200;
    box-shadow: 0 8px 24px rgba(34,158,217,0.4);
    transition: transform 0.25s;
  }
  .tg-float:hover { transform: scale(1.1); }

  /* ─── SCROLL ANIMATIONS ─── */
  .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--bg2); border-bottom: 1px solid var(--border); padding: 16px; gap: 4px; }
    .nav-menu-btn { display: block; }
    nav .inner { position: relative; }
    .hero { padding: 120px 0 70px; min-height: auto; }
    .hero-suits { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .install-step { grid-template-columns: 1fr; }
    .install-step-num { width: 40px; height: 40px; font-size: 1rem; }
  }
  @media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
    .hero-stats { gap: 24px; }
  }

/* 404 & Search */
.error-404 .page-title { font-size: 32px; margin-bottom: 20px; }
.search-form { display: flex; gap: 10px; margin-top: 15px; }
.search-field { padding: 8px; border: 1px solid #ccc; border-radius: 4px; flex-grow: 1; }
.search-submit { padding: 8px 16px; background: #222; color: #fff; border: none; border-radius: 4px; cursor: pointer; }

/* THEME CHECK RECOMMENDED CLASSES */
.sticky { display: block; }
.bypostauthor { display: block; }
.alignleft { float: left; margin-right: 1.5em; margin-bottom: 1.5em; }
.alignright { float: right; margin-left: 1.5em; margin-bottom: 1.5em; }
.aligncenter { clear: both; display: block; margin-left: auto; margin-right: auto; }
.wp-caption { margin-bottom: 1.5em; max-width: 100%; }
.wp-caption-text, .gallery-caption { font-size: 14px; opacity: 0.8; }

#comments {
	display: none;
}

/* ========== ОСНОВНЫЕ СТИЛИ ДЛЯ МЕНЮ ЯЗЫКОВ ========== */
#primary-menu {
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0;
    margin-left: auto; /* Прижимаем к правому краю */
}

#primary-menu > .pll-parent-menu-item {
    position: relative;
    list-style: none;
}

/* Кнопка переключателя (RU, EN и т.д.) */
#primary-menu > .pll-parent-menu-item > a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Стрелка вниз */
#primary-menu > .pll-parent-menu-item > a:after {
    content: "▼";
    font-size: 10px;
    transition: transform 0.3s ease;
}

/* При наведении */
#primary-menu > .pll-parent-menu-item:hover > a {
    background: rgba(255, 215, 0, 0.2);
}

/* Выпадающий список (десктоп - при наведении) */
#primary-menu .sub-menu {
    position: absolute;
    top: 100%;
    right: 0; /* Выравниваем по правому краю */
    min-width: 100px;
    background: #1a1a1a;
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 8px 0;
    margin: 5px 0 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.2);
    z-index: 1000;
}

/* Показываем подменю при наведении (десктоп) */
#primary-menu > .pll-parent-menu-item:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Стили для пунктов выпадающего списка */
#primary-menu .sub-menu li {
    margin: 0;
    padding: 0;
}

#primary-menu .sub-menu li a {
    display: block;
    padding: 8px 20px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

#primary-menu .sub-menu li a:hover {
    background: rgba(255, 215, 0, 0.15);
    color: var(--gold, #ffd700);
}

/* Активный язык (текущий) */
#primary-menu .sub-menu .current-lang a {
    color: var(--gold, #ffd700);
    background: rgba(255, 215, 0, 0.1);
    position: relative;
}

#primary-menu .sub-menu .current-lang a:before {
    content: "✓";
    position: absolute;
    left: 8px;
    color: var(--gold, #ffd700);
}

/* ========== МОБИЛЬНАЯ ВЕРСИЯ ========== */
@media (max-width: 768px) {
    #primary-menu {
        width: 100%;
        margin-left: 0;
        margin-top: 10px;
    }
    
    #primary-menu > .pll-parent-menu-item {
        width: 100%;
    }
    
    #primary-menu > .pll-parent-menu-item > a {
        justify-content: space-between;
        background: rgba(255, 255, 255, 0.05);
    }
    
    /* Скрываем подменю по умолчанию на мобилке */
    #primary-menu .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.03);
        margin-top: 5px;
        margin-bottom: 10px;
        padding: 5px 0;
        border-left: 2px solid rgba(255, 215, 0, 0.3);
        display: none; /* Скрыто по умолчанию */
    }
    
    /* Показываем подменю когда есть класс .open */
    #primary-menu > .pll-parent-menu-item.open .sub-menu {
        display: block;
    }
    
    /* Стили для пунктов в мобильной версии */
    #primary-menu .sub-menu li a {
        padding: 10px 20px 10px 30px;
        white-space: normal;
    }
    
    /* Убираем эффект при наведении на мобилке */
    #primary-menu .sub-menu li a:hover {
        padding-left: 30px;
    }
    
    /* Анимация стрелки при открытии */
    #primary-menu > .pll-parent-menu-item.open > a:after {
        transform: rotate(180deg);
    }
}

/* ========== АДАПТАЦИЯ ДЛЯ ПЛАНШЕТОВ ========== */
@media (min-width: 769px) and (max-width: 1024px) {
    #primary-menu .sub-menu {
        right: 0;
    }
}

.skip-link {
display: none;
}