/*!
Theme Name: bluejar bolilerPlate
Theme URI: https://blujaar-wp.com
Author: TwoPoints
Author URI:s
Description: "bluejar bolilerPlate" is a simple & easy to use WordPress theme. It is based on world's most popular framework for responsive websites, Twitter Bootstrap 4. "bluejar bolilerPlate" is a perfect combination of Bootstrap 4 and WordPress. It is fast and light-weight with around 20 kb style.css. It is also search engine friendly. It has a built-in slider for featured posts on blog's home page. It supports all major & popular WordPress plugins like Jetpack, Contact Form 7, Elementor, Beaver Builder, SiteOrigin Page Builder etc. Check demo on https://blujaar-wp.com
Version: 1.0.9
License: GNU General Public License v3 or later
License URI: https://www.gnu.org/licenses/gpl.html
Text Domain: wp-bootstrap-4
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready, two-columns, left-sidebar, right-sidebar, custom-colors, footer-widgets, full-width-template, rtl-language-support, sticky-post, theme-options, blog

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

WP Bootstrap 4 is based on Underscores https://underscores.me/, (C) 2012-2017 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.
*/

:root {
      --bg: #fafafa;
      --text: #0a0a0a;
      --text-muted: #6b7280;
      --accent: #3043d9;
      --accent-hover: #2435b8;
      --accent-subtle: rgba(48,67,217,.06);
      --border: #e7e5e4;
      --card-bg: #fff;
      --max-width: 1155px;
      --radius-sm: 6px;
      --radius-md: 10px;
      --radius-lg: 16px;
      --shadow-sm: 0 1px 2px rgba(0,0,0,.04);
      --shadow-md: 0 4px 12px rgba(0,0,0,.06);
      --shadow-lg: 0 12px 28px rgba(0,0,0,.08);
      --transition: 0.2s cubic-bezier(.4,0,.2,1);
      --grad-main: linear-gradient(135deg, #7c3aed 0%, #3043d9 50%, #0ea5e9 100%);
      --grad-soft: linear-gradient(135deg, #f5f3ff 0%, #eff6ff 50%, #f0f9ff 100%);
      --grad-card: linear-gradient(145deg, rgba(255,255,255,0.85) 0%, rgba(240,245,255,0.7) 100%);
      --glass-bg:  rgba(255,255,255,0.72);
      --glass-bdr: rgba(255,255,255,0.9);
      --glass-shadow: 0 8px 32px rgba(48,67,217,0.10), 0 1.5px 4px rgba(124,58,237,0.07);
      --shadow-btn : 0 4px 20px rgba(48,67,217,0.35);
    }
    * { box-sizing: border-box; }
    body {
      margin: 0;
      font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
      font-size: 1rem;
      line-height: 1.6;
      color: var(--text);
      background: #ffffff;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }
    a { color: var(--accent); text-decoration: none; }
    a:hover { text-decoration: underline; }
    .text-darkblue {color: rgb(87 83 78);}
    .font13 {font-size: 13px !important;}
    .font14 {font-size: 14px !important;}
    .container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; box-sizing: border-box; }

    /* Header — frosted glass */
    .header { padding: 15px 0; background: rgba(255,255,255,.8); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 10; }
    .header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
    .header-brand { display: flex; align-items: center; gap: 0; text-decoration: none; color: var(--text); }
    .header-brand:hover { text-decoration: none; color: var(--text); }
    .header-brand img { height: 36px; width: auto; display: block; }
    .nav { display: flex; align-items: center; gap: 1.5rem; font-size: 14px; }
    .nav > a { color: var(--text); text-decoration: none; }
    .nav > a:hover { text-decoration: none; }
    .nav-products { position: relative; }
    .nav-products > span {
      cursor: pointer;
      color: var(--text);
      padding: 0.5rem 0;
      display: flex;
      align-items: center;
      gap: 0.25rem;
      font-size: 14px;
    }
    .nav-products > span::after {
      content: '';
      width: 14px;
      height: 14px;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 6L8 10L12 6' stroke='%231a1a1a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;
      transition: transform 0.2s ease;
    }
    .nav-products:hover > span::after { transform: rotate(180deg); }
    .nav-products > span:hover { text-decoration: underline; }
    .nav-products ul {
      position: absolute;
      top: 100%;
      left: 0;
      font-size: 14px;
      margin: 0.5rem 0 0 0;
      padding: 0.5rem 0;
      min-width: 180px;
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 6px;
      list-style: none;
      box-shadow: 0 4px 12px rgba(0,0,0,.08);
      opacity: 0;
      visibility: hidden;
      transform: translateY(-10px);
      transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    }
    .nav-products:hover ul { opacity: 1; visibility: visible; transform: translateY(0); }
    .nav-products li { padding: 0; }
    .nav-products a { display: block; padding: 0.5rem 1rem; color: var(--text); }
    .nav-products a:hover { background: var(--bg); text-decoration: none; }
/* Mobile hamburger menu */
.nav-hamburger{display:none;flex-direction:column;gap:5px;background:none;border:none;cursor:pointer;padding:6px;z-index:1001;}
.nav-hamburger span{display:block;width:22px;height:2px;background:#fff;border-radius:2px;transition:transform .2s,opacity .2s;}
.nav-hamburger.is-active span:nth-child(1){transform:translateY(7px) rotate(45deg);}
.nav-hamburger.is-active span:nth-child(2){opacity:0;}
.nav-hamburger.is-active span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}
@media(max-width:767px){
  .nav-hamburger{display:flex;}
  .nav.nav-open{display:flex!important;flex-direction:column;position:fixed;top:60px;left:0;right:0;background:#0f1729;padding:20px 24px 28px;gap:0;z-index:1000;box-shadow:0 8px 24px rgba(0,0,0,.3);}
  .nav.nav-open .nomob{display:block!important;padding:12px 0;font-size:16px;font-weight:500;color:#fff;border-bottom:1px solid rgba(255,255,255,.08);text-decoration:none;}
  .nav.nav-open .btn-primary{margin-top:16px;text-align:center;display:block;}
}

/* Industries Dropdown */
.nav-dropdown{position:relative;display:none;align-items:center;}
@media(min-width:768px){.nav-dropdown{display:flex;}}
.nav-dropdown-btn{background:none;border:none;font-size:14px;font-family:inherit;cursor:pointer;display:flex;align-items:center;gap:4px;padding:10px 1px;white-space:nowrap;line-height:1;}
.dd-chevron{transition:transform .2s;flex-shrink:0;}
.nav-dropdown:hover .dd-chevron,.nav-dropdown.is-open .dd-chevron{transform:rotate(180deg);}
.nav-dropdown-menu{display:none;position:absolute;top:calc(100% + 0px); left:50%;transform:translateX(-50%);background:#0f1729;border:1px solid rgba(255,255,255,.12);border-radius:12px;padding:12px;min-width:460px;box-shadow:0 20px 60px rgba(0,0,0,.5);z-index:1000;}
.nav-dropdown:hover .nav-dropdown-menu,.nav-dropdown.is-open .nav-dropdown-menu{display:block;}
.nav-dropdown-grid{display:grid;grid-template-columns:1fr 1fr;gap:2px 8px;}
.nav-dropdown-menu a{display:block;padding:8px 12px;color:rgba(255,255,255,.8);text-decoration:none;border-radius:6px;font-size:14px;white-space:nowrap;transition:background .15s,color .15s;}
.nav-dropdown-menu a:hover{background:rgba(255,255,255,.08);color:#fff;}
@media(max-width:767px){
  .nav.nav-open .nav-dropdown{display:block;width:100%;border-bottom:1px solid rgba(255,255,255,.08);}
  .nav-dropdown-btn{justify-content:space-between;padding:12px 0;font-size:16px;font-weight:500;color: #fff;
        width: 100px;
        margin: auto;}
  .nav-dropdown-menu{position:static;transform:none;min-width:auto;border:none;border-radius:0;padding:4px 0 8px 0;background:transparent;box-shadow:none;display:none;}
  .nav-dropdown.is-open .nav-dropdown-menu{display:block!important;}
  .nav-dropdown-grid{grid-template-columns:1fr 1fr;gap:0 8px;}
  .nav-dropdown-menu a{padding:7px 8px;font-size:14px;color:rgba(255,255,255,.7);}
}
    /* GEO page content */
    .btn {
      display: inline-block;
          padding: 13px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    }
    .btn.btn-sm {padding: 7px 15px;font-weight: 400; font-size: 13px;}
    .btn-primary { background: var(--grad-main); color: #fff !important; box-shadow: 0 4px 20px rgba(48, 67, 217, 0.35);}
    .btn-primary:hover {  text-decoration: none; transform: translateY(-2px);box-shadow: 0 8px 32px rgba(48, 67, 217, 0.45);}
    .btn-primary:active { transform: translateY(0); box-shadow: inset 0 1px 0 rgba(255,255,255,.15); }
    .btn-secondary { background: var(--card-bg); color: var(--accent); border: 1px solid var(--border); }
    .btn-secondary:hover { background: rgba(48,67,217,.03); text-decoration: none; color: var(--accent) !important; border-color: rgba(48,67,217,.2); }

    .hero {
      padding: 6rem 1.5rem 7rem;
      text-align: center;
      background: #fff;
      position: relative;
      overflow: hidden;
    }
    .hero-glow {
      position: absolute;
      top: 30%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 600px;
      height: 400px;
      background: radial-gradient(ellipse at center, rgba(48,67,217,.08) 0%, transparent 70%);
      pointer-events: none;
      z-index: 0;
    }
    .hero .container { position: relative; z-index: 1; }
    .hero h1 {
      font-size: clamp(2.25rem, 5vw, 3.5rem);
      font-weight: 700;
      margin: 0 0 1rem;
      line-height: 1.15;
      color: var(--text);
      letter-spacing: -0.03em;
    }
    .hero .subhead {
      font-size: 1.125rem;
      color: var(--text-muted);
      max-width: 48rem;
      margin: 0 auto 0.5rem;
      line-height: 1.6;
    }
    .hero .subhead-2 { font-size: 0.875rem; color: var(--text-muted); max-width: 42rem; margin: 0 auto 2rem; }
    .hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-bottom: 1rem; }
    .hero-note { font-size: 0.75rem; color: var(--text-muted); }

    section { padding: 5.5rem 0; }
    section h2 {
      font-size: 1.75rem;
      font-weight: 600;
      margin: 0 0 2.5rem;
      color: var(--text);
      text-align: center;
      letter-spacing: -0.02em;
    }
    .section-label {
      display: inline-block;
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: var(--accent);
      background: var(--accent-subtle);
      padding: 0.3rem 0.75rem;
      border-radius: 999px;
      margin: 0 auto 1rem;
    }
    .section-alt {
      background: #fff;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .scroll-mt { scroll-margin-top: 5rem; }

    .card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
    .card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 1.5rem;
      text-align: left;
      transition: box-shadow var(--transition), border-color var(--transition);
    }
    .card:hover {
      box-shadow: var(--shadow-md);
      border-color: rgba(48,67,217,.15);
    }
    .card h3 { font-size: 16px; font-weight: 600; color: var(--text); margin: 0 0 0.5rem; }
    .card p { font-size: 0.875rem; color: var(--text-muted); margin: 0; line-height: 1.5; }

    .step-num {
      width: 3rem;
      height: 3rem;
      border-radius: 50%;
      background: rgba(48,67,217,.1);
      color: var(--accent);
      font-weight: 700;
      font-size: 1.125rem;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1rem;
    }
    .step h3 { font-size: 1rem; font-weight: 600; margin: 0 0 0.5rem; }
    .step p { font-size: 0.875rem; color: var(--text-muted); margin: 0; }

    /* How it works — creative flow */
    .how-flow {
      display: grid;
      grid-template-columns: 1fr auto 1fr auto 1fr;
      align-items: start;
      gap: 0;
      max-width: 56rem;
      margin: 0 auto;
    }
@media(min-width: 1599px) {.container{max-width:1500px !important;}}
    @media (max-width: 900px) {
      .how-flow {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }
      .how-flow-connector { display: none !important; }
    }
    .how-step {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 1.75rem;
      text-align: center;
      transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
      position: relative;
    }
    .how-step:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 28px rgba(48,67,217,.12);
      border-color: rgba(48,67,217,.25);
    }
    .how-step-icon {
      width: 3rem;
      height: 3rem;
      border-radius: var(--radius-md);
      background: var(--accent-subtle);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1rem;
    }
    .how-step-icon svg {
      width: 1.5rem;
      height: 1.5rem;
      color: var(--accent);
    }
    .how-step-num {
      position: absolute;
      top: -0.5rem;
      right: 1rem;
      width: 1.5rem;
      height: 1.5rem;
      border-radius: 50%;
      background: var(--accent);
      color: #fff;
      font-size: 0.75rem;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 6px rgba(48,67,217,.3);
    }
    .how-step h3 { font-size: 1.0625rem; font-weight: 600; margin: 0 0 0.5rem; color: var(--text); }
    .how-step p { font-size: 0.875rem; color: var(--text-muted); margin: 0; line-height: 1.5; }
    .how-flow-connector {
      display: flex;
      align-items: center;
      justify-content: center;
      padding-top: 2.5rem;
    }
    .how-flow-connector svg {
      width: 2rem;
      height: 2rem;
      color: var(--border);
    }

    .report-card {
      max-width: 48rem;
      margin: 0 auto;
      overflow: hidden;
      border-radius: 12px;
      border: 1px solid var(--border);
      background: var(--card-bg);
      box-shadow: 0 10px 40px rgba(0,0,0,.08);
    }
    .report-header {
      padding: 2rem 2.5rem;
      background: linear-gradient(135deg, #0f1d5e 0%, #2435b8 50%, #3043d9 100%);
      color: #fff;
    }
    .report-header h3 { margin: 0 0 0.125rem; font-size: 1.25rem; font-weight: 600; }
    .report-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 2rem; margin-top: 1rem; }
    .report-score { font-size: 2.25rem; font-weight: 700; color: #fcd34d; }
    .report-score-label { font-size: 0.875rem; color: rgba(255,255,255,.9); }
    .report-header p { font-size: 0.875rem; color: rgba(255,255,255,.9); margin: 0.75rem 0 0; }
    .report-body {
      padding: 2rem 2.5rem;
      border-top: 1px solid var(--border);
    }
    .report-body h3 { font-size: 1.125rem; font-weight: 600; margin: 0 0 1rem; }
    .report-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 0.75rem 1rem;
      list-style: none;
      padding: 0;
      margin: 0 0 1.25rem;
    }
    .report-list li { display: flex; align-items: center; gap: 0.5rem; color: #444; }
    .report-list li::before { content: ''; width: 6px; height: 6px; min-width: 6px; border-radius: 50%; background: var(--accent); }
    .report-list .center { grid-column: 1 / -1; justify-content: center; }
    .report-body .note { font-size: 0.875rem; color: var(--text-muted); margin: 1.25rem 0 1rem; }
    .report-body .cta-wrap { text-align: center; margin-top: 1rem; }

    .audience-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 1.25rem;
    }
    .audience-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 1.5rem;
      transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
    }
    .audience-card:hover {
      border-color: rgba(48,67,217,.3);
      box-shadow: 0 4px 12px rgba(48,67,217,.08);
      transform: translateY(-2px);
    }
    .audience-card-icon {
      width: 2.5rem;
      height: 2.5rem;
      border-radius: 10px;
      background: rgba(48,67,217,.1);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1rem;
    }
    .audience-card-icon svg {
      width: 1.25rem;
      height: 1.25rem;
      color: var(--accent);
    }
    .audience-card h3 {
      font-size: 1rem;
      font-weight: 600;
      margin: 0 0 0.5rem;
      color: var(--text);
    }
    .audience-card p {
      font-size: 0.875rem;
      color: var(--text-muted);
      margin: 0;
      line-height: 1.5;
    }
    .audience-card-featured {
      grid-column: 1 / -1;
      
      border-color: rgba(48,67,217,.2);
    }
    .ctainfo {  margin: 0px;}

    /* Scoring methodology */
    .scoring-section {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 2rem;
      max-width: 42rem;
      margin: 0 auto;
    }
    .scoring-section h3 {
      font-size: 1rem;
      font-weight: 600;
      color: var(--text);
      margin: 0 0 1rem;
      text-align: center;
    }
    .scoring-pills {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 0.5rem;
      margin-bottom: 1rem;
    }
    .scoring-pills span {
      font-size: 0.8125rem;
      font-weight: 500;
      padding: 0.375rem 0.75rem;
      background: rgba(48,67,217,.08);
      color: var(--accent);
      border-radius: 999px;
    }
    .scoring-section p {
      font-size: 0.875rem;
      color: var(--text-muted);
      text-align: center;
      margin: 0;
      line-height: 1.5;
    }
    .text-center {text-align: center;}
    .section-cta-info {background-color: #fff;}

    /* Pricing / Get started */
    .pricing-teaser {
      background: linear-gradient(180deg, rgba(48,67,217,.06) 0%, rgba(48,67,217,.02) 100%);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 3rem 1.5rem;
    }
    .pricing-teaser h2 { margin-bottom: 1.5rem; }
    .pricing-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 2rem;
      max-width: 36rem;
      margin: 0 auto 1.5rem;
      box-shadow: 0 4px 20px rgba(0,0,0,.06);
    }
    .pricing-tier {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      margin-bottom: 1rem;
    }
    .pricing-tier:last-child { margin-bottom: 0; }
    .pricing-tier-badge {
      flex-shrink: 0;
      font-size: 0.75rem;
      font-weight: 600;
      padding: 0.25rem 0.5rem;
      border-radius: 6px;
      text-transform: uppercase;
      letter-spacing: 0.02em;
    }
    .pricing-tier-badge.free {
      background: rgba(48,67,217,.12);
      color: var(--accent);
    }
    .pricing-tier-badge.upgrade {
      background: rgba(48,67,217,.08);
      color: var(--text);
    }
    .pricing-tier p {
      font-size: 0.875rem;
      color: var(--text-muted);
      margin: 0;
      line-height: 1.5;
    }
    .pricing-cta { text-align: center; }
    .mb-0 {margin-bottom: 0px !important;}
    .mt-0 {margin-top: 0px !important;}
    /* Footer — same as index.html */
    .footer { border-top: 1px solid var(--border); background: var(--card-bg); padding: 1.25rem 0; }
    .footer-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; }
    .footer-links { display: flex; gap: 1.25rem; align-items: center; }
    .footer-links a { color: var(--text-muted); font-size: 0.875rem; }
    .footer-links .sep { color: var(--text-muted); font-size: 0.875rem; }
    .footer-copy { color: var(--text-muted); font-size: 0.875rem; }
    .container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; box-sizing: border-box; }
    .header-top-bar { height: 3px; background: linear-gradient(90deg, #061e59, var(--accent)); }
    .header { padding: 15px 0; background: var(--card-bg); border-bottom: 1px solid var(--border); }
    .header-inner { display: flex; align-items: center; justify-content: space-between; }
    .header-brand { display: flex; align-items: center; text-decoration: none; color: var(--text); }
    .header-brand:hover { text-decoration: none; color: var(--text); }
    .header-brand img { height: 36px; width: auto; display: block; }

    .policy-page { display: flex; flex-direction: column; min-height: 100vh; }
    .policy-frame-wrap { flex: 1; padding: 1.5rem 0; }
    .policy-frame {
      width: 100%;
      min-height: calc(100vh - 120px);
      border: 1px solid var(--border);
      border-radius: 8px;
      background: #fff;
    }
    .section-alt {
      background: #fff;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .scroll-mt { scroll-margin-top: 5rem; }
    .text-center { text-align: center; }
    .text-muted { color: var(--text-muted); margin-top: 1rem; }

    .bullet-list { list-style: none; padding: 0; margin: 0; }
    .bullet-list li {
      display: flex;
      align-items: flex-start;
      gap: 0.5rem;
      margin-bottom: 0.5rem;
      color: var(--text-muted);
    }
    .bullet-list li::before {
      content: '';
      width: 6px;
      height: 6px;
      min-width: 6px;
      margin-top: 0.6rem;
      border-radius: 50%;
      background: var(--accent);
    }

    .step-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 2.5rem;
      margin-top: 3rem;
    }
    .step {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .step-num {
      width: 3rem;
      height: 3rem;
      border-radius: 50%;
      border: 1px solid var(--border);
      background: rgba(37,99,235,.1);
      color: #1e40af;
      font-weight: 700;
      font-size: 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .step h3 { font-size: 1rem; font-weight: 600; margin: 1rem 0 0.5rem; }
    .step p { font-size: 0.9375rem; color: var(--text-muted); margin: 0; line-height: 1.5; }

    .use-case { margin-bottom: 2rem; }
    .use-case h3 { font-size: 1rem; font-weight: 600; margin: 0 0 0.5rem; }
    .use-case p { color: var(--text-muted); margin: 0; line-height: 1.6; }

    .why-list { list-style: none; padding: 0; margin: 2rem 0 0; }
    .why-list li {
      display: flex;
      align-items: flex-start;
      gap: 0.5rem;
      margin-bottom: 1rem;
      color: var(--text-muted);
    }
    .why-list li::before {
      content: '';
      width: 6px;
      height: 6px;
      min-width: 6px;
      margin-top: 0.6rem;
      border-radius: 50%;
      background: #94a3b8;
    }

    .cta-dark {
      background: #0f172a;
      padding: 4rem 1.5rem;
      text-align: center;
      border-top: 1px solid var(--border);
    }
    .cta-dark h2 { color: #fff; }
    .cta-dark p { color: #cbd5e1; margin-top: 1rem; }
    .cta-dark .hero-ctas { margin-top: 2.5rem; }
    /* Product cards */
    .product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
    }
    .product-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 1.5rem;
      box-shadow: 0 6px 20px rgba(0,0,0,.04);
    }
    .product-card h3 { margin: 0 0 0.5rem; font-size: 1.25rem; }
    .product-card .summary { color: var(--text-muted); margin-bottom: 1rem; font-size: 0.9375rem; }
    .product-card ul {
      margin: 0 0 1.25rem;
      padding-left: 1.25rem;
    }
    .product-card li { margin-bottom: 0.35rem; }

    /* Trust list */
    .trust-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1rem;
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .trust-list li {
      padding-left: 1.5rem;
      position: relative;
    }
    .trust-list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.4em;
      width: 6px;
      height: 6px;
      background: var(--accent);
      border-radius: 50%;
    }

    /* Who it's for */
    .audience-list {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem 1rem;
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .audience-list li {
      padding: 0.35rem 0.75rem;
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 6px;
      font-size: 0.9375rem;
    }

    /* Final CTA */
    .final-cta {
      text-align: center;
      padding: 3rem 0;
      border-top: 1px solid var(--border);
    }
    .final-cta .hero-ctas { margin-bottom: 0.75rem; }
    .final-cta .optional { font-size: 0.875rem; color: var(--text-muted); }


    /* Footer — same as index.html */
    .footer { border-top: 1px solid var(--border); background: var(--card-bg); padding: 1.25rem 0; }
    .footer-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; }
    .footer-links { display: flex; gap: 1.25rem; align-items: center; }
    .footer-links a { color: var(--text-muted); font-size: 0.875rem; }
    .footer-links .sep { color: var(--text-muted); font-size: 0.875rem; }
    .footer-copy { color: var(--text-muted); font-size: 0.875rem; }
    
    .sidebar-1-area {
  padding-top: 30px;
}
.single .sidebar-1-area {
  padding-top: 0px;
}
.sidebar-1-area .widget {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 24px;
}
.sidebar-1-area .widget .widget-title {font-size: 14px; font-weight: 300; margin-bottom: 10px; color: #596570;text-transform: uppercase;}
	.post-navigation {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 60px;    margin-bottom: 60px;
}
.posts-navigation .nav-links {display:flex;justify-content:center;}
.posts-navigation .nav-links a {border: 1px solid #2f43d9;}
.posts-navigation .nav-links .nav-next a {margin-left:15px;}
.posts-navigation {margin-bottom: 60px;}


.nav-card {
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px;
  text-decoration: none;
  transition: all 0.25s ease;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.nav-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.06);
  border-color: #c7d2fe;
}

.nav-label {
  font-size: 13px;
  font-weight: 600;
  color: #6366f1;
  margin-bottom: 8px;
}

.nav-title {
  font-size: 17px;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.4;
}

/* Alignment */
.prev-post {
  text-align: left;
}

.next-post {
  text-align: right;
}
.bredcumblinks {display: block;top: 120px;font-size: 12px;background: linear-gradient(135deg, #E4DEFE, #CFD9F8);}
.maintitle h1 {font-weight:bold;margin-top:0px !important;}
.top-banner .badge-light {
    color: #212529;
    background-color: #fff;
    padding: 6px;
}
/* Mobile */
@media (max-width: 768px) {
  .post-navigation { grid-template-columns: 1fr;}
  .bredcumblinks {width: 90%;top:87px;}
  .next-post { text-align: left;}
}
/* Recent posts */
.sidebar-1-area .recent-posts {
  list-style: none;
  padding: 0;
  margin: 0;
}

.recent-posts li {
  margin-bottom: 14px;
}

.recent-posts a {
  display: block;
  color: #0f172a;
  font-weight: 600;
  letter-spacing: -0.5px;
  text-decoration: none;
}

.recent-posts a:hover {
  color: #4f46e5;
}

.post-date {
  font-size: 12px;
  color: #64748b;
}

/* Categories */
.blog-categories {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-categories li {
  margin-bottom: 10px;
}

.blog-categories a {
  display: flex;
  justify-content: space-between;
  text-decoration: none;
  color: #0f172a;
  font-size: 14px;
}

.blog-categories a:hover {
  color: #4f46e5;
}

.blog-categories .count {
  background: #f1f5f9;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 12px;
  color: #475569;
}
body .badge-light a {color:#000 !important;    font-weight: 400;
    padding: 4px;}
.widget-search .searchform {width: 100%;}
body .hero {overflow: visible;}
.blog-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.blog-subtitle {
  color: #64748b;
  margin-bottom: 40px;
}

.blog-list {
    display: flex;
    flex-direction: row;
    gap: 24px;
    flex-wrap: wrap;
}
.blog-list > .blog-card {
width: 48%;
}
.blog-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 28px;
  transition: all 0.25s ease;
}
.blogitems {margin-top: 30px;}
.blogitems .blog-card {height: 100%;}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.06);
}

.blog-category {
  font-size: 13px;
  font-weight: 600;
  color: #6631F8;
  margin-bottom: 10px;
  display: inline-block;
}

.blog-card h2 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.4;
    letter-spacing: -0.4px;
}

.blog-card h2 a {
  color: #0f172a;
  text-decoration: none;
}

.blog-card h2 a:hover {
  color: #6631F8;
}

.blog-excerpt {
  font-size: 15px;
  color: #64748b;
  margin-bottom: 16px;
}

.blog-meta {
  font-size: 13px;
  color: #64748b;
  display: flex;
  gap: 12px;
}

.searchform {position: relative; margin: auto;}
.searchform label {width: 100%;position: relative;}
.btn-search {
    border: none;
    background: transparent;
    height: 40px;
    width: 50px;
    position: absolute;
    right: 0;
    min-height: inherit;
    top: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.searchform .search-field {font-size: 13px;
    border-radius: 6px;    width: 100%;
    border: none;
    padding: 7px 10px;
    height: 40px; transition: all 0.3s ease; }
.searchform .search-field:focus {outline: none; box-shadow: none;border-color: #6631F8;box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.07);}
.w-90 {
    width: 90%;
}
.top-banner {
    position: relative; text-align:center;
    padding: 50px 0px 50px;
    background: linear-gradient(135deg, #f8f9ff 0%, #eef0ff 100%);
    background-size: cover, 4px 4px, 4px 4px;
    color: #000;
    margin-bottom: 40px;
}
.searchform{ position: relative; }
/* DROPDOWN ANIMATION */
.search-dropdown {
    position: absolute;
    background: #fff;
    width: 100%;
    top: 40px;
    border: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    z-index: 999;
    border-radius: 6px;

    opacity: 0;
    transform: translateY(6px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}
.search-item a {
    display: flex;
    flex-direction: row; flex-wrap: wrap;
    gap: 4px;
    padding: 10px 12px;
}
.search-item a strong {flex: 0 0 auto; width: 100%; font-size: 14px; font-weight: 600;}
.search-subtitle {
    font-size: 11px;
    color: #777777;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 300;
}
/* When open */
.search-dropdown.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.search-dropdown ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.search-dropdown li a {
    padding: 8px 12px;
    line-height: 1.3;
    text-decoration: none;
    color: #333;
    text-align: left;
    border-bottom: 1px solid #eee;
}
.search-dropdown li a:hover {
    background: #f5f5f5;
}
.search-loader {
    position: absolute;
    right: 45px; 
    top: 50%;
    width: 16px;
    height: 16px;
    margin-top: -8px;
    border-radius: 50%;
    border: 2px solid #ccc;
    border-top-color: #555;
    animation: search-spin 0.6s linear infinite;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s ease;
}

/* contact page  */
.wpcf7-form label, .wpcf7-form-control-wrap {display: block; width: 100%;}
.wpcf7-form label {font-size: 13px;}
body input, body textarea {
    display: block; width: 100%;
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 10px 12px;
    font-size: 14px !important;
    transition: all 0.3s ease;
}
.wpcf7-form .wpcf7-form-control.wpcf7-textarea {resize: none; height: 100px;}
.wpcf7-form input[type="submit"] {color: #fff; background: var(--accent); border: none; padding: 10px 20px; border-radius: 6px; cursor: pointer;}

/* Show loader when active */
.search-loader.is-active {
    opacity: 1;
}

@keyframes search-spin {
    to { transform: rotate(360deg); }
}
.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.blog-pagination .page-numbers {
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  color: #0f172a;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.25s ease;
}

.blog-pagination .page-numbers:hover {
  background: #f1f5f9;
  border-color: #c7d2fe;
  color: #6631F8;
}

.blog-pagination .page-numbers.current {
  background: #6631F8;
  color: #ffffff;
  border-color: #6631F8;
  font-weight: 600;
  cursor: default;
}

.blog-pagination .page-numbers.dots {
  border: none;
  background: transparent;
  cursor: default;
  padding: 0 6px;
}

.blog-pagination .page-numbers.dots:hover {
  background: transparent;
}

.blog-pagination .page-numbers.next,
.blog-pagination .page-numbers.prev {
  padding: 0 18px;
  font-weight: 600;
}

.blog-pagination .page-numbers.next:hover,
.blog-pagination .page-numbers.prev:hover {
  background: #eef2ff;
  color: #6631F8;
}

@media (max-width: 600px) {
  .blog-title { font-size: 26px; }
  .blog-card h2 { font-size: 18px; }
   .blog-pagination .page-numbers {
    min-width: 36px;
    height: 36px;
    font-size: 13px;
  }

  .blog-pagination .page-numbers.next,
  .blog-pagination .page-numbers.prev {
    padding: 0 14px;
  }
}
.single h2, .single h2 b, .single h2 strong {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -1px;
}
.single h2 b, .single h2 strong {
    border-bottom: 1px solid #d0d0d0;
    padding-bottom: 3px;
}
.single h3, .single h3 strong, .single h3 b {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.4px;
}

@media(max-width:767px) { 
    .footer-widget .justify-content-end {justify-content: center !important;} 
    .footer .d-flex {justify-content: center;}
}
/* ------- */
.slide_up_down { -webkit-animation: slide_up_down 1.7s ease-in-out infinite alternate both; animation: slide_up_down 1.7s ease-in-out infinite alternate both; }
@-webkit-keyframes slide_up_down {
0% {
-webkit-transform: translateY(0);
transform: translateY(0); }
100% {
-webkit-transform: translateY(-20px);
transform: translateY(-20px); } }

@keyframes slide_up_down {
0% {
-webkit-transform: translateY(0);
transform: translateY(0); }
100% {
-webkit-transform: translateY(-20px);
transform: translateY(-20px); } }
.postdate {font-size:13px;}
/* --- Mobile hamburger menu --- */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #000 !important;
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.nav-hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-active span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width:767px) {
  .nomob {display:none !important;}
  .nav-hamburger { display: flex; }
  .nav.nav-open {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 60px;
    left: 0; right: 0;
    background: #0f1729;
    padding: 20px 24px 28px;
    gap: 4px;
    z-index: 1000;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  }
  .nav.nav-open .nomob {
    display: block !important;
    padding: 12px 0;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    text-decoration: none;
  }
  .nav.nav-open .btn-primary {
    margin-top: 16px;
    text-align: center;
    display: block;
  }
  .maintitle h1 {font-size: 20px;}
}

/* ===== GEO Optimization Classes ===== */

/* TL;DR / Key Takeaways box (speakable target) */
.geo-summary-box {
  background: var(--accent-subtle);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin: 24px 0 32px;
  font-size: 0.95rem;
  line-height: 1.7;
}
.geo-summary-box h2 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--accent);
}
.geo-summary-box ul {
  margin: 0;
  padding-left: 20px;
}
.geo-summary-box li {
  margin-bottom: 6px;
}

/* Table of Contents */
.bj-post-toc {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin: 0 0 32px;
}
.bj-post-toc h2 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--text);
}
.bj-post-toc ol {
  margin: 0;
  padding-left: 20px;
  counter-reset: toc-counter;
}
.bj-post-toc li {
  margin-bottom: 6px;
  font-size: 0.92rem;
}
.bj-post-toc a {
  color: var(--accent);
  text-decoration: none;
}
.bj-post-toc a:hover {
  text-decoration: underline;
}

/* FAQ section wrapper (speakable target) — visually separate from article body */
.bj-post-faq-section {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.bj-post-faq-section h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.bj-post-faq-section h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin: 24px 0 8px;
}
.bj-post-faq-section h3:first-of-type {
  margin-top: 0;
}
.bj-post-faq-section p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Comparison tables */
.bj-compare-table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  font-size: 0.92rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
}
.bj-compare-table thead th {
  background: var(--accent);
  color: #fff;
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 0.88rem;
}
.bj-compare-table tbody td {
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.bj-compare-table tbody tr:nth-child(even) {
  background: var(--accent-subtle);
}
.bj-compare-table tbody tr:hover {
  background: rgba(48,67,217,.08);
}

/* Blog post images — constrain to content column */
.entry-content img,
.bj-inline-illustration img,
article.articlepost .card-body img {
  max-width: 100%;
  height: auto;
}

.blog-card-image-wrapper { display: block; overflow: hidden; border-radius: 8px 8px 0 0; margin-bottom: 0; line-height: 0; }
.blog-card-image-wrapper img.blog-card-image { width: 100%; height: 260px; object-fit: cover; display: block; transition: transform 0.3s ease; }
.blog-card:hover .blog-card-image-wrapper img.blog-card-image { transform: scale(1.03); }
.blog-card { overflow: hidden; }

/* Blog post tables — apply comparison table styling to all tables in post content */
.entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  font-size: 0.92rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
}
.entry-content table thead th {
  background: var(--accent);
  color: #fff;
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 0.88rem;
}
.entry-content table tbody td {
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.entry-content table tbody tr:nth-child(even) {
  background: var(--accent-subtle);
}
.entry-content table tbody tr:hover {
  background: rgba(48,67,217,.08);
}
@media (max-width: 640px) {
  .entry-content table { font-size: 0.82rem; }
  .entry-content table thead th,
  .entry-content table tbody td { padding: 8px 10px; }
}

/* Expert quote callout */
.bj-expert-quote {
  border-left: 3px solid var(--accent);
  padding: 16px 20px;
  margin: 24px 0;
  background: var(--card-bg);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--text);
}
.bj-expert-quote cite {
  display: block;
  font-style: normal;
  font-weight: 600;
  font-size: 0.88rem;
  margin-top: 8px;
  color: var(--text-muted);
}

.bj-author-box{margin:40px 0 32px;padding:28px;background:#f8f9ff;border-radius:12px;border:1px solid #e5e7f5}
.bj-author-box-title{font-size:.7rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:#8a90b0;margin-bottom:16px}
.bj-author-card{display:flex;align-items:flex-start;gap:16px}
.bj-author-card + .bj-author-card{margin-top:20px;padding-top:20px;border-top:1px solid #e5e7f5}
.bj-author-avatar{flex-shrink:0;width:56px;height:56px;border-radius:50%;overflow:hidden;background:#3043d9;display:flex;align-items:center;justify-content:center}
.bj-author-avatar img{width:56px;height:56px;object-fit:cover;border-radius:50%}
.bj-author-initials{color:#fff;font-weight:700;font-size:1.25rem}
.bj-author-info{flex:1;min-width:0}
.bj-author-name-row{display:flex;align-items:center;flex-wrap:wrap;gap:8px;margin-bottom:6px}
.bj-author-name{font-size:1rem;font-weight:700;color:#0a0c1a}
.bj-author-badge{font-size:.78rem;color:#3043d9;background:#3043d914;padding:2px 8px;border-radius:20px;font-weight:600}
.bj-author-bio{font-size:.88rem;color:#555;line-height:1.6;margin:0 0 10px}
.bj-author-social{display:flex;gap:10px;align-items:center}
.bj-author-social a{color:#8a90b0;display:flex;align-items:center;transition:color .15s;text-decoration:none}
.bj-author-social a:hover{color:#3043d9}

.pricing-tier { display: grid; grid-template-columns: 90px 110px 1fr; align-items: baseline; gap: 0; padding: 12px 0; border-bottom: 1px solid #f0f0f4; }
.pricing-tier:last-child { border-bottom: none; }
.tier-name { font-size: 0.9rem; color: #555; }
.tier-price { font-size: 1rem; font-weight: 700; color: #0a0a0a; }
.tier-detail { font-size: 0.8rem; color: #888; text-align: right; }

/* Featured image: constrained, rounded, cover-fit */
.post-thumbnail { display: block; width: 100%; border-radius: 12px; overflow: hidden; margin-bottom: 1.75rem; line-height: 0; max-height: 420px; border: 1px solid #e2e8f0;}
.post-thumbnail img.wp-post-image { width: 100%; height: 420px; object-fit: cover; display: block; }
/* Remove extra gap between blue header and content */
.move-minus-top { margin-top: -2px; }
/* Inline figures in post content */
.entry-content figure { margin: 28px 0; text-align: center; }
.entry-content figure img { max-width: 680px; width: 100%; border-radius: 10px;border: 1px solid #e2e8f0; }
.entry-content figure figcaption { font-size: 0.85rem; color: #6b7280; margin-top: 8px; font-style: italic; }

/* FAQ section */
.bj-faq-section { background: #f8f9ff; padding: 80px 0; }
.bj-faq-section h2 { font-size: 2.2rem; font-weight: 800; color: #0a0c1a; margin-bottom: 48px; text-align: center; }
.bj-faq-list { max-width: 760px; margin: 0 auto; }
.bj-faq-btn { width: 100%; background: none; border: none; padding: 20px 0; display: flex; align-items: center; justify-content: space-between; font-size: 1rem; font-weight: 600; color: #0a0c1a; text-align: left; cursor: pointer; gap: 16px; }
.bj-faq-btn svg { width: 20px; height: 20px; flex-shrink: 0; transition: transform 0.25s ease; color: #3043d9; }
.bj-faq-item.open .bj-faq-btn svg { transform: rotate(45deg); }
.bj-faq-ans { display: none; padding: 0 0 20px; font-size: 0.95rem; color: #555; line-height: 1.7; }
.bj-faq-item.open .bj-faq-ans { display: block; }
.bj-faq {
  padding: var(--section-pad);
  background: var(--grad-soft);
  position: relative; overflow: hidden;
}
.bj-faq-inner { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.bj-faq-item {
  background: var(--glass-bg); backdrop-filter: blur(16px);padding: 0 24px;
  border: 1px solid var(--glass-bdr); box-shadow: 0 2px 12px rgba(48,67,217,0.06);
  border-radius: 14px; margin-bottom: 12px; overflow: hidden;
  transition: box-shadow 0.22s;
}
.bj-faq-item.open { box-shadow: 0 6px 24px rgba(48,67,217,0.12); }
.bj-faq-q {
  width: 100%; background: none; border: none; padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  font-size: 0.95rem; font-weight: 600; color: var(--text);
  text-align: left; cursor: pointer;
}
.bj-faq-btn svg {
  width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0;
  background: rgba(48,67,217,0.08); color: var(--c-blue);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.25s, background 0.2s;
}
.bj-faq-item.open .bj-faq-btn svg { transform: rotate(45deg); background: var(--grad-main); color: #fff; }
.bj-faq-a { display: none; padding: 0 24px 20px; font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }
.footer {
  background: #0a0c1a;
  color: #c8cde8;
  padding: 64px 0 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 960px) {
  .footer-top { grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
}
@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { max-width: 100%; }
}
.footer-brand img {
  height: 28px;
  opacity: 0.9;
  margin-bottom: 16px;
  display: block;
}
.footer-brand p {
  font-size: 0.875rem;
  color: #8a90b0;
  line-height: 1.7;
  margin: 0 0 24px;
  max-width: 280px;
}
.footer-social {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 4px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  color: #c8cde8;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}
.footer-social a:hover {
  background: #3043d9;
  color: #fff;
}
.footer-social a svg { width: 16px; height: 16px; fill: currentColor; }
.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  margin: 0 0 18px;
  opacity: 0.7;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-col ul li a {
  color: #8a90b0;
  text-decoration: none;
  font-size: 0.875rem;
  line-height: 1.4;
  transition: color 0.15s;
}
.footer-col ul li a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 0.8rem;
  color: #555b7a;
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom-links a {
  font-size: 0.8rem;
  color: #555b7a;
  text-decoration: none;
  transition: color 0.15s;
}
.footer-bottom-links a:hover { color: #8a90b0; }