/* ═══════ BOOTFLOW DARK THEME ═══════ */

/* ═══════ RESET & VARIABLES ═══════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg-body: #141b2d;
  --bg-card: #1f2940;
  --bg-card-hover: #263350;
  --bg-card-inner: #2a3758;
  --border-card: #334466;
  --accent: #4d7cfe;
  --accent-bright: #6b93ff;
  --accent-glow: rgba(77, 124, 254, 0.15);
  --green: #3fb950;
  --green-dark: #238636;
  --orange: #ff9f43;
  --red: #f85149;
  --purple: #bc8cff;
  --yellow: #f0c541;
  --teal: #2dd4bf;
  --text-primary: #e6edf3;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --shadow-card: 0 8px 32px rgba(0,0,0,0.25);
  --shadow-glow: 0 0 40px rgba(77, 124, 254, 0.12);
  --gradient-hero: linear-gradient(135deg, #141b2d 0%, #1f2940 50%, #141b2d 100%);
  --gradient-accent: linear-gradient(135deg, #4d7cfe, #6b93ff);
  --gradient-green: linear-gradient(135deg, #3fb950, #238636);
}
body {
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif;
  color: var(--text-primary);
  background: var(--bg-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
/* Neutralise Kadence flex-column on .container */
.container { display: block; max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ═══════ NAV ═══════ */
.bf-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(20,27,45,0.92); backdrop-filter: blur(16px); border-bottom: 1px solid var(--border-card); }
.nav-inner { max-width: 1140px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo { font-size: 22px; font-weight: 800; color: #fff; text-decoration: none; letter-spacing: -0.5px; }
.logo span { color: var(--green); }
.nav-links { display: flex; gap: 28px; align-items: center; }
.hamburger { display: none; }
.nav-links a { color: var(--text-secondary); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: #fff; }
.nav-dropdown { position: relative; }
.nav-dropdown-toggle::after { content: '▾'; margin-left: 6px; font-size: 11px; color: var(--text-muted); }
.nav-dropdown-menu { display: none; position: absolute; top: 100%; left: 50%; min-width: 280px; padding: 8px; background: rgba(20,27,45,0.98); border: 1px solid var(--border-card); border-radius: 8px; box-shadow: var(--shadow-card); z-index: 110; transform: translate(-50%, 0); }
.nav-dropdown-menu::before { content: ''; position: absolute; top: -7px; left: 50%; width: 12px; height: 12px; background: rgba(20,27,45,0.98); border-left: 1px solid var(--border-card); border-top: 1px solid var(--border-card); transform: translateX(-50%) rotate(45deg); }
.nav-dropdown-menu a { display: block; padding: 10px 12px; border-radius: 5px; color: var(--text-secondary); line-height: 1.4; }
.nav-dropdown-menu a:hover { background: var(--bg-card); color: #fff; }
.nav-dropdown:hover .nav-dropdown-menu, .nav-dropdown:focus-within .nav-dropdown-menu { display: block; transform: translate(-50%, 0); }
.nav-cta { background: linear-gradient(135deg, #3fb950, #238636) !important; color: #fff !important; padding: 8px 20px; border-radius: 8px; font-weight: 600 !important; }
.nav-demo { background: rgba(34,197,94,0.12); color: #22c55e; padding: 8px 16px; border-radius: 8px; font-weight: 600; border: 1px solid rgba(34,197,94,0.3); font-size: 13px; }
.nav-demo:hover { background: rgba(34,197,94,0.2); border-color: #22c55e; }

/* ═══════ BUTTONS ═══════ */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; border-radius: 10px; font-weight: 600; font-size: 15px; text-decoration: none; transition: all 0.25s; border: none; cursor: pointer; }
.btn-primary { background: linear-gradient(135deg, #3fb950, #238636); color: #fff; box-shadow: 0 4px 20px rgba(63,185,80,0.3); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(63,185,80,0.4); }
.btn-outline { background: transparent; color: var(--accent-bright); border: 2px solid var(--accent); }
.btn-outline:hover { background: var(--accent-glow); transform: translateY(-2px); }
.btn-demo { background: rgba(34,197,94,0.12); color: #22c55e; border: 2px solid rgba(34,197,94,0.4); }
.btn-demo:hover { background: rgba(34,197,94,0.2); border-color: #22c55e; transform: translateY(-2px); }
.btn-accent { background: linear-gradient(135deg, #4d7cfe, #6b93ff); color: #fff; box-shadow: 0 4px 20px rgba(77,124,254,0.3); }
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(77,124,254,0.4); }
.btn-large { padding: 18px 48px; font-size: 18px; border-radius: 12px; }
.btn-submit { display: inline-flex; align-items: center; gap: 8px; padding: 14px 36px; border-radius: 10px; font-weight: 600; font-size: 15px; border: none; cursor: pointer; background: linear-gradient(135deg, #3fb950, #238636); color: #fff; box-shadow: 0 4px 20px rgba(63,185,80,0.3); transition: all 0.25s; }
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(63,185,80,0.4); }

/* ═══════ SECTIONS ═══════ */
section { padding: 100px 0; }
.section-tag { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--accent-bright); margin-bottom: 16px; }
.section-title { font-size: 40px; font-weight: 800; letter-spacing: -1px; line-height: 1.15; margin-bottom: 20px; }
.section-subtitle { font-size: 18px; color: var(--text-secondary); max-width: 640px; line-height: 1.7; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .section-subtitle { margin: 0 auto; }
.section-alt { background: var(--bg-card); border-top: 1px solid var(--border-card); border-bottom: 1px solid var(--border-card); }

/* ═══════ HERO (shared base) ═══════ */
.hero { padding: 140px 0 100px; position: relative; overflow: hidden; }
.hero::before { content: ; position: absolute; top: -50%; right: -20%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(77,124,254,0.08) 0%, transparent 70%); border-radius: 50%; }
.hero .container { position: relative; z-index: 1; display: flex; flex-direction: row; gap: 60px; align-items: center; }
.hero-text { flex: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--accent-glow); border: 1px solid rgba(77,124,254,0.3); padding: 6px 16px; border-radius: 20px; font-size: 13px; color: var(--accent-bright); font-weight: 600; margin-bottom: 24px; }
.hero h1 { font-size: 48px; font-weight: 900; line-height: 1.1; letter-spacing: -2px; margin-bottom: 24px; }
.hero h1 .highlight { background: linear-gradient(135deg, var(--accent-bright), var(--teal)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero p { font-size: 18px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 36px; max-width: 560px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* ═══════ PAGE HERO ═══════ */
.page-hero { padding: 140px 0 40px; text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ; position: absolute; top: -50%; right: -20%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(77,124,254,0.06) 0%, transparent 70%); border-radius: 50%; }
.page-hero h1 { font-size: 48px; font-weight: 900; letter-spacing: -1.5px; margin-bottom: 12px; position: relative; z-index: 1; }
.page-hero h1 .highlight { background: linear-gradient(135deg, var(--accent-bright), var(--teal)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.page-hero .meta { font-size: 14px; color: var(--text-muted); position: relative; z-index: 1; }
.page-hero p { font-size: 18px; color: var(--text-secondary); max-width: 560px; margin: 0 auto; position: relative; z-index: 1; }

/* ═══════ PAGE CONTENT (WP pages) ═══════ */
.bf-page-content { max-width: 1140px; margin: 0 auto; padding: 100px 24px 80px; }
.bf-page-content h1 { font-size: 42px; font-weight: 900; letter-spacing: -1.5px; margin-bottom: 32px; line-height: 1.15; }
.bf-page-content h2 { font-size: 26px; font-weight: 700; margin-top: 48px; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid var(--border-card); }
.bf-page-content h3 { font-size: 20px; margin-top: 32px; margin-bottom: 12px; }
.bf-page-content p { font-size: 16px; color: var(--text-secondary); line-height: 1.8; }
.bf-page-content a { color: var(--accent-bright); text-decoration: none; }
.bf-page-content a:hover { text-decoration: underline; }
.bf-page-content ul, .bf-page-content ol { margin: 0 0 24px; padding-left: 1.5em; }
.bf-page-content ul { list-style: disc; }
.bf-page-content ol { list-style: decimal; }
.bf-page-content li { padding: 4px 0; }
.bf-page-content ul ul, .bf-page-content ol ul { list-style: circle; margin-bottom: 0; }
.bf-page-content ol ol { list-style: lower-alpha; margin-bottom: 0; }
.bf-page-content img { max-width: 100%; height: auto; border-radius: 12px; border: 1px solid var(--border-card); margin: 24px 0; }
.bf-page-content blockquote { border-left: 3px solid var(--accent); background: var(--bg-card); padding: 20px 24px; border-radius: 0 12px 12px 0; font-style: italic; }
.bf-page-content code { background: var(--bg-card-inner); padding: 2px 8px; border-radius: 4px; font-size: 14px; }
.bf-page-content pre { padding: 20px; overflow-x: auto; }
.bf-page-content pre code { background: none; padding: 0; }
.bf-page-content table { width: 100%; border-collapse: collapse; }
.bf-page-content table th, .bf-page-content table td { padding: 12px 16px; }
.bf-page-content table th { text-align: left; }

/* ═══════ LEGAL CONTENT ═══════ */
.legal-content { max-width: 800px; margin: 0 auto; padding: 60px 24px 100px; }
.legal-content h2 { font-size: 22px; font-weight: 700; margin-top: 48px; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid var(--border-card); }
.legal-content p { font-size: 15px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 16px; }
.legal-content ul { list-style: none; margin-bottom: 16px; }
.legal-content ul li { padding: 6px 0; font-size: 15px; color: var(--text-secondary); display: flex; align-items: flex-start; gap: 10px; }
.legal-content ul li::before { content: •; color: var(--accent-bright); font-weight: 700; flex-shrink: 0; }
.legal-content a { color: var(--accent-bright); text-decoration: none; }
.legal-content a:hover { text-decoration: underline; }

/* ═══════ CTA ═══════ */
.final-cta { text-align: center; padding: 120px 0; background: radial-gradient(ellipse at center, rgba(77,124,254,0.08) 0%, transparent 70%); }
.final-cta h2 { font-size: 44px; font-weight: 900; letter-spacing: -1.5px; margin-bottom: 20px; }
.final-cta p { font-size: 18px; color: var(--text-secondary); margin-bottom: 40px; }

/* ═══════ FAQ ═══════ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border-card); border-radius: 12px; margin-bottom: 12px; overflow: hidden; }
.faq-item:hover { border-color: var(--accent); }
.faq-question { padding: 20px 24px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 600; font-size: 15px; background: var(--bg-card); }
.faq-question::after { content: +; font-size: 20px; color: var(--accent-bright); }
.faq-item.open .faq-question::after { content: 2212; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; padding: 0 24px; }
.faq-item.open .faq-answer { max-height: 300px; padding: 0 24px 20px; }
.faq-answer p { font-size: 14px; color: var(--text-secondary); line-height: 1.8; }

/* ═══════ FOOTER ═══════ */
.bf-footer { padding: 48px 0; border-top: 1px solid var(--border-card); background: var(--bg-body); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.footer-copy { font-size: 13px; color: var(--text-muted); }
.footer-copy a { color: var(--text-secondary); text-decoration: none; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 13px; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent-bright); }

/* ═══════ PAGE: HOME ═══════ */
body.home .hero h1 { font-size: 52px; }
body.home .hero::after { content: ; position: absolute; bottom: -30%; left: -10%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(63,185,80,0.06) 0%, transparent 70%); border-radius: 50%; }
body.home .hero-visual { flex: 1; max-width: 480px; position: relative; }
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.card { background: var(--bg-card); border: 1px solid var(--border-card); border-radius: 16px; padding: 36px 28px; transition: all 0.3s; position: relative; overflow: hidden; }
.card::before { content: ; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(135deg, #4d7cfe, #6b93ff); opacity: 0; transition: opacity 0.3s; }
.card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: var(--shadow-glow); }
.card:hover::before { opacity: 1; }
.card-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 20px; }
.card-icon.blue { background: var(--accent-glow); }
.card-icon.green { background: rgba(63,185,80,0.12); }
.card-icon.purple { background: rgba(188,140,255,0.12); }
.card-icon.orange { background: rgba(240,136,62,0.12); }
.card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.card p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }
.card .card-link { display: inline-flex; align-items: center; gap: 6px; color: var(--accent-bright); font-weight: 600; font-size: 14px; text-decoration: none; margin-top: 20px; transition: gap 0.2s; }
.card .card-link:hover { gap: 10px; }
.plugin-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.plugin-card { background: var(--bg-card); border: 1px solid var(--border-card); border-radius: 20px; padding: 40px 36px; transition: all 0.3s; position: relative; overflow: hidden; }
.plugin-card::before { content: ; position: absolute; top: 0; left: 0; right: 0; height: 4px; opacity: 0; transition: opacity 0.3s; }
.plugin-card:nth-child(1)::before { background: linear-gradient(90deg, var(--accent), var(--teal)); }
.plugin-card:nth-child(2)::before { background: linear-gradient(90deg, var(--green), var(--yellow)); }
.plugin-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-glow); border-color: var(--accent); }
.plugin-card:hover::before { opacity: 1; }
.plugin-badge { display: inline-block; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--accent-bright); background: var(--accent-glow); padding: 4px 12px; border-radius: 6px; margin-bottom: 16px; }
.plugin-card h3 { font-size: 24px; font-weight: 800; margin-bottom: 16px; letter-spacing: -0.5px; }
.plugin-card > p { font-size: 15px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 24px; }
.plugin-features { list-style: none; margin-bottom: 28px; }
.plugin-features li { display: flex; align-items: center; gap: 10px; padding: 6px 0; font-size: 14px; color: var(--text-secondary); }
.plugin-features li::before { content: 2713; color: var(--green); font-weight: 700; font-size: 14px; flex-shrink: 0; }
.about-block { display: flex; gap: 64px; align-items: center; }
.about-text { flex: 1; }
.about-text p { font-size: 16px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 24px; }
.about-visual { flex: 0 0 360px; }
.about-card { background: var(--bg-card); border: 1px solid var(--border-card); border-radius: 20px; padding: 36px; text-align: center; }
.about-avatar { width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--teal)); display: flex; align-items: center; justify-content: center; font-size: 32px; font-weight: 900; color: #fff; margin: 0 auto 16px; }
.about-name { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.about-role { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }
.about-tags { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.about-tags span { font-size: 11px; font-weight: 600; padding: 4px 12px; border-radius: 6px; background: var(--bg-card-inner); border: 1px solid var(--border-card); color: var(--text-secondary); }
.about-skills { list-style: none; text-align: left; margin-top: 20px; }
.about-skills li { display: flex; align-items: center; gap: 8px; padding: 5px 0; font-size: 13px; color: var(--text-secondary); }
.about-skills li::before { content: 25B8; color: var(--accent-bright); }

/* ═══════ PAGE: AI CHATBOT ═══════ */
body.page-template-page-ai-chatbot-for-woocommerce .hero-visual { flex: 1; max-width: 440px; }
.stats-bar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-card { background: var(--bg-card); border: 1px solid var(--border-card); border-radius: 16px; padding: 28px; text-align: center; }
.stat-value { font-size: 32px; font-weight: 900; margin-bottom: 4px; }
.stat-label { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.stat-desc { font-size: 12px; color: var(--text-secondary); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card { background: var(--bg-card); border: 1px solid var(--border-card); border-radius: 16px; padding: 32px 24px; transition: all 0.3s; }
.feature-card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: var(--shadow-glow); }
.feature-icon { font-size: 32px; margin-bottom: 16px; }
.feature-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.feature-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.7; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.steps-grid::before { content: ; position: absolute; top: 48px; left: 12.5%; right: 12.5%; height: 2px; background: var(--border-card); z-index: 0; }
.step-card { position: relative; z-index: 1; text-align: center; }
.step-num { width: 56px; height: 56px; border-radius: 50%; background: var(--bg-card); border: 2px solid var(--accent); display: flex; align-items: center; justify-content: center; font-size: 22px; margin: 0 auto 20px; }
.step-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.step-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }
.feature-table { width: 100%; border-collapse: collapse; background: var(--bg-body); border-radius: 16px; overflow: hidden; border: 1px solid var(--border-card); max-width: 800px; margin: 0 auto; }
.feature-table thead th { padding: 16px 24px; font-size: 14px; font-weight: 700; text-align: left; border-bottom: 2px solid var(--border-card); background: var(--bg-card); }
.feature-table thead th:last-child { text-align: center; width: 80px; }
.feature-table .section-row td { background: var(--bg-card-inner); font-weight: 700; color: var(--accent-bright); font-size: 12px; text-transform: uppercase; letter-spacing: 1px; padding: 10px 24px; border-bottom: 1px solid var(--border-card); }
.feature-table tbody td { padding: 12px 24px; border-bottom: 1px solid var(--border-card); font-size: 14px; color: var(--text-secondary); }
.feature-table tbody td:last-child { text-align: center; }
.feature-table tbody tr:hover { background: rgba(77,124,254,0.04); }
.usecase-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.usecase-card { background: var(--bg-card); border: 1px solid var(--border-card); border-radius: 16px; padding: 32px; transition: all 0.3s; }
.usecase-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.usecase-badge { display: inline-block; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--accent-bright); background: var(--accent-glow); padding: 4px 10px; border-radius: 6px; margin-bottom: 12px; }
.usecase-card h4 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.usecase-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; font-style: italic; }
.pricing-box { max-width: 700px; margin: 0 auto; background: var(--bg-card); border: 2px solid var(--accent); border-radius: 20px; padding: 48px; text-align: center; }
.pricing-box h3 { font-size: 24px; font-weight: 800; margin-bottom: 8px; }
.pricing-box .pricing-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; }
.pricing-features { list-style: none; text-align: left; margin-bottom: 32px; columns: 2; column-gap: 24px; }
.pricing-features li { padding: 6px 0; font-size: 14px; color: var(--text-secondary); display: flex; align-items: center; gap: 8px; break-inside: avoid; }
.pricing-features li::before { content: 2713; color: var(--green); font-weight: 700; flex-shrink: 0; }
.pricing-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.pricing-note { font-size: 12px; color: var(--text-muted); margin-top: 16px; }

/* ═══════ PAGE: XML/CSV IMPORTER ═══════ */
body.page-template-page-woocommerce-xml-csv-importer .hero { background: linear-gradient(135deg, #141b2d 0%, #1f2940 50%, #1a2332 100%); }
body.page-template-page-woocommerce-xml-csv-importer .hero::after { content: ; position: absolute; bottom: -30%; left: -10%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(63,185,80,0.06) 0%, transparent 70%); border-radius: 50%; }
body.page-template-page-woocommerce-xml-csv-importer .hero-text { max-width: 560px; }
.hero-dashboard { flex: 1; max-width: 520px; position: relative; }
.dash-card { background: var(--bg-card); border: 1px solid var(--border-card); border-radius: 16px; padding: 24px; box-shadow: var(--shadow-card); }
.dash-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.dash-card-title { font-size: 14px; font-weight: 600; color: var(--text-secondary); }
.dash-card-dots { display: flex; gap: 4px; }
.dash-card-dots span { width: 4px; height: 4px; background: var(--text-muted); border-radius: 50%; }
.dash-main { margin-bottom: 16px; }
.dash-row { display: flex; gap: 16px; }
.dash-mini { background: var(--bg-card-inner); border: 1px solid var(--border-card); border-radius: 12px; padding: 16px; flex: 1; }
.dash-mini-label { font-size: 11px; color: var(--text-muted); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
.dash-mini-value { font-size: 24px; font-weight: 800; color: var(--text-primary); }
.dash-mini-value .unit { font-size: 12px; color: var(--text-muted); font-weight: 500; }
.dash-stat-change { font-size: 11px; font-weight: 600; margin-top: 4px; }
.dash-stat-change.up { color: var(--green); }
.dash-floating { position: absolute; background: var(--bg-card); border: 1px solid var(--border-card); border-radius: 12px; padding: 14px 18px; box-shadow: var(--shadow-card); animation: float 6s ease-in-out infinite; }
.dash-floating.top-right { top: -20px; right: -30px; }
.dash-floating.bottom-left { bottom: -10px; left: -40px; animation-delay: 3s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card { background: var(--bg-card); border: 1px solid var(--border-card); border-radius: 16px; padding: 36px 28px; transition: all 0.3s; position: relative; overflow: hidden; }
.value-card::before { content: ; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gradient-accent); opacity: 0; transition: opacity 0.3s; }
.value-card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: var(--shadow-glow); }
.value-card:hover::before { opacity: 1; }
.value-icon { width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 20px; }
.value-icon.perf { background: rgba(63,185,80,0.12); color: var(--green); }
.value-icon.dev { background: rgba(188,140,255,0.12); color: var(--purple); }
.value-icon.logic { background: rgba(240,136,62,0.12); color: var(--orange); }
.value-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.value-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }
.feature-block { display: flex; gap: 64px; align-items: center; margin-bottom: 100px; }
.feature-block:nth-child(even) { flex-direction: row-reverse; }
.feature-block:last-child { margin-bottom: 0; }
.feature-content { flex: 1; }
.feature-visual { flex: 1; }
.pro-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(240,136,62,0.12); border: 1px solid rgba(240,136,62,0.3); color: var(--orange); padding: 4px 12px; border-radius: 6px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.feature-num { font-size: 64px; font-weight: 900; color: rgba(77,124,254,0.1); line-height: 1; margin-bottom: -10px; letter-spacing: -3px; }
.feature-content h3 { font-size: 32px; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 16px; line-height: 1.2; }
.feature-content > p { font-size: 16px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 24px; }
.feature-list { list-style: none; }
.feature-list li { display: flex; align-items: flex-start; gap: 12px; padding: 10px 0; font-size: 15px; color: var(--text-secondary); }
.feature-list li .icon { flex-shrink: 0; width: 24px; height: 24px; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 13px; margin-top: 2px; }
.feature-list li .icon.green { background: rgba(63,185,80,0.15); color: var(--green); }
.feature-list li .icon.blue { background: var(--accent-glow); color: var(--accent-bright); }
.feature-list li .icon.orange { background: rgba(240,136,62,0.15); color: var(--orange); }
.feature-list li strong { color: var(--text-primary); }
.feat-visual-card { background: var(--bg-card); border: 1px solid var(--border-card); border-radius: 16px; padding: 28px; box-shadow: var(--shadow-card); }
.feat-chart-area { height: 200px; position: relative; margin-bottom: 16px; }
.feat-chart-area canvas { max-height: 200px; }
.feat-stats-row { display: flex; gap: 12px; }
.feat-stat { flex: 1; background: var(--bg-card-inner); border-radius: 10px; padding: 14px; text-align: center; }
.feat-stat-val { font-size: 22px; font-weight: 800; }
.feat-stat-label { font-size: 11px; color: var(--text-muted); margin-top: 2px; text-transform: uppercase; letter-spacing: 0.5px; }
.comparison-section { background: var(--bg-card); border-top: 1px solid var(--border-card); border-bottom: 1px solid var(--border-card); }
.comparison-table { width: 100%; border-collapse: collapse; background: var(--bg-body); border-radius: 16px; overflow: hidden; border: 1px solid var(--border-card); }
.comparison-table thead th { padding: 20px 24px; font-size: 15px; font-weight: 700; text-align: center; border-bottom: 2px solid var(--border-card); }
.comparison-table thead th:first-child { text-align: left; }
.comparison-table thead th:nth-child(2) { background: rgba(77,124,254,0.05); color: var(--text-secondary); }
.comparison-table thead th:nth-child(3) { background: rgba(77,124,254,0.1); color: var(--accent-bright); position: relative; }
.comparison-table thead th:nth-child(3)::before { content: 2605 RECOMMENDED; position: absolute; top: -1px; left: 50%; transform: translateX(-50%); background: var(--gradient-accent); color: #fff; font-size: 10px; font-weight: 700; padding: 3px 12px; border-radius: 0 0 8px 8px; letter-spacing: 1px; }
.comparison-table tbody td { padding: 16px 24px; border-bottom: 1px solid var(--border-card); font-size: 14px; }
.comparison-table tbody td:first-child { font-weight: 600; color: var(--text-primary); }
.comparison-table tbody td:nth-child(2), .comparison-table tbody td:nth-child(3) { text-align: center; }
.comparison-table tbody td:nth-child(3) { background: rgba(77,124,254,0.03); }
.comparison-table tbody tr:hover { background: rgba(77,124,254,0.04); }
.check { color: var(--green); font-size: 18px; font-weight: 700; }
.cross { color: var(--red); font-size: 18px; font-weight: 700; }
.tech-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tech-card { background: var(--bg-card); border: 1px solid var(--border-card); border-radius: 16px; padding: 32px 24px; text-align: center; transition: all 0.3s; }
.tech-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.tech-icon { font-size: 36px; margin-bottom: 16px; }
.tech-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.tech-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.7; }

/* ═══════ PAGE: CONTACT ═══════ */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; padding: 60px 0 100px; }
.contact-form-card { background: var(--bg-card); border: 1px solid var(--border-card); border-radius: 20px; padding: 40px; box-shadow: var(--shadow-card); }
.contact-form-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.contact-form-card > p { font-size: 14px; color: var(--text-secondary); margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text-secondary); margin-bottom: 6px; }
.form-group input, .form-group textarea { width: 100%; padding: 12px 16px; background: var(--bg-card-inner); border: 1px solid var(--border-card); border-radius: 10px; color: var(--text-primary); font-family: inherit; font-size: 14px; transition: border-color 0.2s; outline: none; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--accent); }
.form-group textarea { min-height: 140px; resize: vertical; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.info-card { background: var(--bg-card); border: 1px solid var(--border-card); border-radius: 16px; padding: 28px; transition: all 0.3s; }
.info-card:hover { border-color: var(--accent); }
.info-icon { font-size: 28px; margin-bottom: 12px; }
.info-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.info-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }
.info-card a { color: var(--accent-bright); text-decoration: none; }
.info-card a:hover { text-decoration: underline; }

/* ═══════ OVERRIDE KADENCE DEFAULTS ═══════ */
.site { background: var(--bg-body) !important; }
.site-header, .site-footer, #wrapper { display: none !important; }

/* ═══════ RESPONSIVE ═══════ */
@media (max-width: 900px) {
  .hero .container { flex-direction: column; text-align: center; }
  .hero-text { max-width: 100% !important; }
  .hero-buttons { justify-content: center; }
  body.home .hero h1 { font-size: 36px; }
  .hero h1 { font-size: 36px; }
  body.home .hero-visual { max-width: 100%; }
  .hero-dashboard { max-width: 100%; }
  .section-title { font-size: 30px; }
  .page-hero h1 { font-size: 36px; }
  .final-cta h2 { font-size: 32px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .bf-page-content h1 { font-size: 32px; }
  .hamburger { display: flex; flex-direction: column; gap: 5px; cursor: pointer; z-index: 101; background: none; border: none; padding: 8px; }
  .hamburger span { width: 24px; height: 2px; background: #e6edf3; border-radius: 2px; transition: 0.3s; }
  .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
  .nav-links { position: fixed; top: 64px; left: 0; right: 0; background: rgba(13,17,23,0.98); backdrop-filter: blur(16px); flex-direction: column; align-items: center; padding: 24px 0; gap: 0; border-bottom: 1px solid var(--border-card); transform: translateY(-120%); transition: transform 0.3s ease; z-index: 99; }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 14px 24px; width: 100%; text-align: center; font-size: 16px; }
  .nav-dropdown { width: 100%; text-align: center; }
  .nav-dropdown-toggle { display: block; }
  .nav-dropdown-menu { display: block; position: static; min-width: 0; padding: 0; background: transparent; border: 0; border-radius: 0; box-shadow: none; transform: none; }
  .nav-dropdown-menu::before { display: none; }
  .nav-dropdown-menu a { padding: 8px 24px 14px; color: var(--text-muted); font-size: 14px; }
  .nav-links a.nav-cta { width: auto; margin-top: 8px; }
  .plugin-grid { grid-template-columns: 1fr; }
  .about-block { flex-direction: column; }
  .about-visual { flex: auto; width: 100%; max-width: 360px; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .usecase-grid { grid-template-columns: 1fr; }
  .pricing-features { columns: 1; }
  .value-grid, .tech-grid { grid-template-columns: 1fr; }
  .feature-block, .feature-block:nth-child(even) { flex-direction: column; }
  .comparison-table { font-size: 13px; }
  .comparison-table thead th, .comparison-table tbody td { padding: 12px 14px; }
  .dash-floating { display: none; }
  .contact-layout { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hero { padding: 110px 0 60px; }
  .hero h1 { font-size: 28px; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .btn-large { padding: 16px 32px; font-size: 16px; }
  .bf-page-content h1 { font-size: 26px; }
  .bf-page-content { padding: 80px 16px 60px; }
  .stats-bar { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .feature-num { font-size: 48px; }
  .feature-content h3 { font-size: 24px; }
}

/* ═══════ SCREENSHOTS TABS ═══════ */
.screenshots-tabs { max-width: 1000px; margin: 0 auto; }
.scr-tab-nav { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 28px; }
.scr-tab-btn { background: var(--bg-card); border: 1px solid var(--border-card); color: var(--text-secondary); padding: 10px 20px; border-radius: 10px; font-size: 13px; font-weight: 600; cursor: pointer; transition: all 0.2s; font-family: inherit; }
.scr-tab-btn:hover { border-color: var(--accent); color: var(--text-primary); }
.scr-tab-btn.active { background: var(--accent-glow); border-color: var(--accent); color: var(--accent-bright); }
.scr-tab-panels { position: relative; }
.scr-panel { display: none; }
.scr-panel.active { display: block; }
.scr-panel img { width: 100%; height: auto; border-radius: 12px; border: 1px solid var(--border-card); box-shadow: var(--shadow-card); }
.scr-caption { text-align: center; font-size: 14px; color: var(--text-secondary); margin-top: 16px; line-height: 1.7; max-width: 700px; margin-left: auto; margin-right: auto; }
@media (max-width: 600px) {
  .scr-tab-btn { padding: 8px 12px; font-size: 12px; }
}

/* ═══════ BLOG POST (single.php) ═══════ */
.article-content { padding: 60px 0 80px; }
.article-content .featured-image { margin-bottom: 48px; }
.article-content .featured-image img { width: 100%; height: auto; border-radius: 16px; border: 1px solid var(--border-card); box-shadow: var(--shadow-card); }

.article-body { font-size: 17px; color: var(--text-secondary); line-height: 1.8; }
.article-body h2 { font-size: 32px; font-weight: 800; color: var(--text-primary); margin-top: 56px; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--border-card); letter-spacing: -0.5px; }
.article-body h3 { font-size: 24px; font-weight: 700; color: var(--text-primary); margin-top: 40px; margin-bottom: 16px; }
.article-body h4 { font-size: 20px; font-weight: 600; color: var(--text-primary); margin-top: 32px; margin-bottom: 12px; }
.article-body p { margin-bottom: 24px; }
.article-body strong { color: var(--text-primary); font-weight: 600; }
.article-body em { font-style: italic; color: var(--text-secondary); }
.article-body a { color: var(--accent-bright); text-decoration: none; border-bottom: 1px solid rgba(77,124,254,0.3); transition: all 0.2s; }
.article-body a:hover { color: var(--accent); border-bottom-color: var(--accent); }

.article-body ul, .article-body ol { margin-bottom: 28px; padding-left: 0; list-style: none; }
.article-body ul li, .article-body ol li { padding: 8px 0; padding-left: 28px; position: relative; line-height: 1.7; }
.article-body ul li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; font-size: 16px; }
.article-body ol { counter-reset: item; }
.article-body ol li { counter-increment: item; }
.article-body ol li::before { content: counter(item) '.'; position: absolute; left: 0; color: var(--accent-bright); font-weight: 700; }

.article-body blockquote { border-left: 4px solid var(--accent); background: var(--bg-card); padding: 24px 28px; border-radius: 0 12px 12px 0; font-style: italic; color: var(--text-primary); margin: 32px 0; }
.article-body blockquote p:last-child { margin-bottom: 0; }

.article-body code { background: var(--bg-card-inner); border: 1px solid var(--border-card); padding: 3px 8px; border-radius: 6px; font-size: 15px; font-family: 'Courier New', monospace; color: var(--accent-bright); }
.article-body pre { background: var(--bg-card); border: 1px solid var(--border-card); padding: 24px; border-radius: 12px; overflow-x: auto; margin: 32px 0; }
.article-body pre code { background: none; border: none; padding: 0; font-size: 14px; color: var(--text-secondary); }

.article-body table { width: 100%; border-collapse: collapse; margin: 32px 0; font-size: 15px; }
.article-body table thead { background: var(--bg-card); }
.article-body table th { padding: 16px 18px; text-align: left; font-weight: 700; color: var(--text-primary); border-bottom: 2px solid var(--border-card); }
.article-body table td { padding: 14px 18px; border-bottom: 1px solid var(--border-card); }
.article-body table tr:hover { background: rgba(77,124,254,0.05); }
.article-body table td:first-child { font-weight: 600; color: var(--text-primary); }

.article-body img { max-width: 100%; height: auto; border-radius: 12px; border: 1px solid var(--border-card); margin: 32px 0; box-shadow: var(--shadow-card); }

.article-body hr { border: none; border-top: 1px solid var(--border-card); margin: 48px 0; }

.article-tags { margin-top: 56px; padding-top: 32px; border-top: 1px solid var(--border-card); display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.article-tags .tags-label { font-size: 13px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.article-tags a { background: var(--bg-card); border: 1px solid var(--border-card); padding: 6px 14px; border-radius: 8px; font-size: 13px; color: var(--text-secondary); text-decoration: none; transition: all 0.2s; }
.article-tags a:hover { background: var(--accent-glow); border-color: var(--accent); color: var(--accent-bright); }

.back-to-blog { padding: 40px 0 100px; }

@media (max-width: 768px) {
  .article-body { font-size: 16px; }
  .article-body h2 { font-size: 26px; margin-top: 40px; }
  .article-body h3 { font-size: 20px; }
  .article-body table { font-size: 14px; }
  .article-body table th, .article-body table td { padding: 12px 14px; }
}

/* ═══════ BLOG LISTING (archive.php) ═══════ */
.blog-listing { padding: 60px 0 100px; }
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; margin-bottom: 60px; }

.blog-card { background: var(--bg-card); border: 1px solid var(--border-card); border-radius: 16px; overflow: hidden; transition: all 0.3s; display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-4px); border-color: var(--accent); box-shadow: var(--shadow-glow); }

.blog-thumb { display: block; overflow: hidden; }
.blog-thumb img { width: 100%; height: 240px; object-fit: cover; transition: transform 0.4s; }
.blog-card:hover .blog-thumb img { transform: scale(1.05); }

.blog-card-content { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.blog-meta { font-size: 12px; color: var(--text-muted); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.5px; }
.blog-meta a { color: var(--accent-bright); text-decoration: none; }
.blog-meta a:hover { text-decoration: underline; }

.blog-title { font-size: 22px; font-weight: 700; margin-bottom: 14px; letter-spacing: -0.3px; }
.blog-title a { color: var(--text-primary); text-decoration: none; transition: color 0.2s; }
.blog-title a:hover { color: var(--accent-bright); }

.blog-excerpt { font-size: 15px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; flex: 1; }

.blog-read-more { color: var(--accent-bright); font-weight: 600; font-size: 14px; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: gap 0.2s; }
.blog-read-more:hover { gap: 10px; }

.blog-pagination { text-align: center; }
.blog-pagination .nav-links { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.blog-pagination .page-numbers { background: var(--bg-card); border: 1px solid var(--border-card); color: var(--text-secondary); padding: 10px 16px; border-radius: 8px; text-decoration: none; font-weight: 600; font-size: 14px; transition: all 0.2s; }
.blog-pagination .page-numbers:hover, .blog-pagination .page-numbers.current { background: var(--accent-glow); border-color: var(--accent); color: var(--accent-bright); }
.blog-pagination .prev, .blog-pagination .next { padding: 10px 20px; }

.no-posts { text-align: center; padding: 80px 0; }
.no-posts p { font-size: 18px; color: var(--text-secondary); margin-bottom: 32px; }

@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; gap: 24px; }
  .blog-thumb img { height: 200px; }
  .blog-title { font-size: 20px; }
}

/* ═══════ CONTACT FORM MESSAGES ═══════ */
#form-message { font-size: 15px; font-weight: 600; }
#form-message.success { background: rgba(63, 185, 80, 0.15); border: 1px solid var(--green); color: var(--green); }
#form-message.error { background: rgba(248, 81, 73, 0.15); border: 1px solid #f85149; color: #f85149; }
