/*
Theme Name: Borysta New Theme
Theme URI: https://borysta.com
Description: Custom Phlox child theme — pixel-perfect clone of ventionteams.com with Borysta branding.
Author: Borysta
Author URI: https://borysta.com
Template: phlox
Version: 1.1.0
Text Domain: borysta-new-theme
*/

/* ==========================================================================
   DESIGN TOKENS — Borysta brand palette
   ========================================================================== */
:root {
    --v-orange: #3BBD16;
    --v-orange-hover: #32A212;
    --v-black: #1B1B1B;
    --v-dark: #003777;
    --v-navy: #003777;
    --v-text: #333333;
    --v-text-light: #555555;
    --v-text-muted: #888888;
    --v-bg: #EBEBED;
    --v-bg-card: #E3E3E5;
    --v-bg-white: #FFFFFF;
    --v-bg-dark: #003777;
    --v-border: #D5D5D7;
    --v-font: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    --v-max-width: 1440px;
    --v-header-h: 55px;
    --v-transition: 0.25s ease;
}

/* ==========================================================================
   GLOBAL RESET
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
}

body.bnt-theme {
    font-family: var(--v-font) !important;
    color: var(--v-black);
    background-color: var(--v-bg) !important;
    line-height: 1.5;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    padding-top: var(--v-header-h) !important;
}

/* ==========================================================================
   TYPOGRAPHY — Vention uses Aeonik Pro weight 400 for headings
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--v-font) !important;
    color: var(--v-black);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-top: 0;
}

h1 {
    font-size: clamp(3rem, 5.5vw, 4.4rem);
    line-height: 1.15;
}

h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.8rem);
    font-weight: 500;
}

h3 {
    font-size: clamp(1.25rem, 2vw, 1.45rem);
    font-weight: 500;
}

p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--v-black);
    margin-top: 0;
}

a {
    color: var(--v-black);
    text-decoration: none;
    transition: color var(--v-transition);
}

a:hover {
    color: var(--v-orange);
}

/* ==========================================================================
   HEADER — 55px, transparent on page bg
   ========================================================================== */
.bnt-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--v-header-h);
    background: var(--v-bg);
    z-index: 9999;
    display: flex;
    align-items: center;
    transition: box-shadow var(--v-transition);
}

.bnt-header.scrolled {
    box-shadow: 0 1px 10px rgba(0,0,0,0.06);
}

/* Fix for WordPress Admin Bar overlapping the fixed header */
body.admin-bar .bnt-header {
    top: 32px;
}
@media screen and (max-width: 782px) {
    body.admin-bar .bnt-header {
        top: 46px;
    }
}

.bnt-header-inner {
    max-width: var(--v-max-width);
    width: 100%;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    height: 100%;
    gap: 0;
}

/* Logo — exact 107x24 like Vention, but allow bigger */
.bnt-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-right: 32px;
    text-decoration: none;
}

.bnt-logo img {
    height: 40px;
    width: auto;
    max-width: 160px;
    display: block;
    mix-blend-mode: multiply;
}

.bnt-logo-text {
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--v-black);
    letter-spacing: -0.03em;
    text-decoration: none;
}

/* Globe icon placeholder */
.bnt-globe-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: none;
    border: 1px solid var(--v-border);
    border-radius: 50%;
    cursor: pointer;
    margin-right: 24px;
    color: var(--v-black);
    flex-shrink: 0;
    transition: border-color var(--v-transition);
}

.bnt-globe-btn:hover {
    border-color: var(--v-black);
}

/* ==========================================================================
   NAVIGATION — weight 400, 16px like Vention
   ========================================================================== */
.bnt-nav {
    display: flex;
    align-items: center;
    gap: 0;
    height: 100%;
    flex: 1;
}

.bnt-nav-item {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.bnt-nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0 18px;
    height: 100%;
    font-size: 1rem;
    font-weight: 400;
    color: var(--v-black);
    text-decoration: none;
    transition: color var(--v-transition);
    white-space: nowrap;
    cursor: pointer;
}

.bnt-nav-link:hover {
    color: var(--v-orange);
}

.bnt-nav-link .chevron {
    width: 10px;
    height: 10px;
    transition: transform var(--v-transition);
    opacity: 0.5;
}

.bnt-nav-item:hover .bnt-nav-link .chevron,
.bnt-nav-item.active .bnt-nav-link .chevron {
    transform: rotate(180deg);
    opacity: 1;
}

/* Header right actions */
.bnt-header-actions {
    display: flex;
    align-items: center;
    gap: 0;
    margin-left: auto;
    height: 100%;
}

/* Contact button — Vention: orange bg, black text, no border-radius, same height as header */
.bnt-btn-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: var(--v-header-h);
    padding: 0 32px;
    background: var(--v-orange);
    color: var(--v-black) !important;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 0;
    text-decoration: none;
    transition: background var(--v-transition);
    white-space: nowrap;
}

.bnt-btn-contact:hover {
    background: var(--v-orange-hover);
    color: var(--v-black) !important;
}

.bnt-search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--v-header-h);
    height: var(--v-header-h);
    background: none;
    border: none;
    border-left: 1px solid var(--v-border);
    cursor: pointer;
    color: var(--v-black);
    transition: color var(--v-transition);
}

.bnt-search-btn:hover {
    color: var(--v-orange);
}

/* ==========================================================================
   MEGA MENU — Vention style full-width dropdown
   ========================================================================== */
.bnt-mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--v-bg);
    border-top: 2px solid var(--v-orange);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--v-transition), visibility var(--v-transition), transform var(--v-transition);
    z-index: 9998;
    min-width: 600px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    transform: translateY(8px);
}

.bnt-nav-item:hover .bnt-mega-menu,
.bnt-nav-item.active .bnt-mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.bnt-mega-inner {
    display: flex;
    gap: 0;
}

.bnt-mega-col {
    padding: 36px;
    flex: 1;
}

.bnt-mega-col + .bnt-mega-col {
    border-left: 1px solid var(--v-border);
}

.bnt-mega-col-title {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--v-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.bnt-mega-link {
    display: block;
    font-size: 1rem;
    font-weight: 400;
    color: var(--v-black);
    padding: 7px 0;
    text-decoration: none;
    transition: color var(--v-transition);
}

.bnt-mega-link:hover {
    color: var(--v-orange);
}

/* Promo card in mega menu */
.bnt-mega-promo {
    position: relative;
    min-width: 280px;
    padding: 36px;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
}

.bnt-mega-promo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.15));
}

.bnt-mega-promo-title {
    position: relative;
    font-size: 1.125rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 6px;
}

.bnt-mega-promo-text {
    position: relative;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 16px;
}

.bnt-mega-promo-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--v-orange);
    color: var(--v-black) !important;
    padding: 10px 20px;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 0;
    text-decoration: none;
    transition: background var(--v-transition);
    width: fit-content;
}

.bnt-mega-promo-cta:hover {
    background: var(--v-orange-hover);
    color: var(--v-black) !important;
}

/* Mega banner at bottom */
.bnt-mega-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 36px;
    border-top: 1px solid var(--v-border);
    font-size: 0.9375rem;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    transition: opacity var(--v-transition);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.bnt-mega-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.bnt-mega-banner span,
.bnt-mega-banner .arrow {
    position: relative;
    color: #fff;
}

.bnt-mega-banner:hover {
    color: #fff;
}

.bnt-mega-banner:hover::before {
    background: rgba(0,0,0,0.65);
}

/* ==========================================================================
   BUTTONS — Vention: orange, sharp corners, black text
   ========================================================================== */
.bnt-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 32px;
    background: var(--v-orange);
    color: var(--v-black) !important;
    font-size: 1rem;
    font-weight: 500;
    font-family: var(--v-font);
    border: none;
    border-radius: 0;
    cursor: pointer;
    text-decoration: none;
    transition: background var(--v-transition), transform var(--v-transition);
}

.bnt-btn-primary:hover {
    background: var(--v-orange-hover);
    color: var(--v-black) !important;
    transform: translateY(-1px);
}

.bnt-btn-primary .arrow {
    transition: transform var(--v-transition);
}

.bnt-btn-primary:hover .arrow {
    transform: translate(2px, -2px);
}

/* ==========================================================================
   SECTIONS — Vention-style padding and backgrounds
   ========================================================================== */
.bnt-section {
    padding: 70px 40px;
    background: var(--v-bg);
}

.bnt-section-inner {
    max-width: var(--v-max-width);
    margin: 0 auto;
}

.bnt-section-white {
    background: #fff;
}

.bnt-section-dark {
    background: var(--v-bg-dark);
}

.bnt-section-dark h2,
.bnt-section-dark h3,
.bnt-section-dark h4,
.bnt-section-dark p {
    color: #fff;
}

/* Dark deep section — alternating dark background (same as AI section) */
.bnt-section-dark-deep {
    background: #0a0f1e;
}

.bnt-section-dark-deep h2,
.bnt-section-dark-deep h3,
.bnt-section-dark-deep h4 {
    color: #fff;
}

.bnt-section-dark-deep p,
.bnt-section-dark-deep .bnt-stat-label {
    color: rgba(255, 255, 255, 0.75);
}

/* Dark tabs variant */
.bnt-section-dark-deep .bnt-expertise-header-text p {
    color: rgba(255, 255, 255, 0.75);
}

.bnt-section-dark-deep .bnt-tabs {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.bnt-section-dark-deep .bnt-tabs-nav {
    border-right-color: rgba(255, 255, 255, 0.1);
}

.bnt-section-dark-deep .bnt-tab-btn {
    color: rgba(255, 255, 255, 0.45);
    border-left-color: transparent;
}

.bnt-section-dark-deep .bnt-tab-btn:hover {
    color: rgba(255, 255, 255, 0.8);
}

.bnt-section-dark-deep .bnt-tab-btn.active {
    color: #fff;
    border-left-color: var(--v-orange);
}

.bnt-section-dark-deep .bnt-tab-subsection {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.bnt-section-dark-deep .bnt-tab-subsection-title {
    color: #fff;
}

.bnt-section-dark-deep .bnt-tab-link {
    color: rgba(255, 255, 255, 0.7);
}

.bnt-section-dark-deep .bnt-tab-link:hover {
    color: var(--v-orange);
}

.bnt-section-dark-deep .bnt-floating-badge {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
    color: #fff;
}

/* Dark stat cards */
.bnt-section-dark-deep .bnt-stat-card {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
}

.bnt-section-dark-deep .bnt-stat-number {
    color: #fff;
}

/* Dark feature/promise/engage cards */
.bnt-section-dark-deep .bnt-card,
.bnt-section-dark-deep .bnt-promise-card,
.bnt-section-dark-deep .bnt-engage-card {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
    border-left-color: var(--v-orange);
}

.bnt-section-dark-deep .bnt-card:hover,
.bnt-section-dark-deep .bnt-promise-card:hover,
.bnt-section-dark-deep .bnt-engage-card:hover {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.bnt-section-dark-deep .bnt-card-title,
.bnt-section-dark-deep .bnt-promise-title,
.bnt-section-dark-deep .bnt-engage-title {
    color: #fff;
}

.bnt-section-dark-deep .bnt-card-description,
.bnt-section-dark-deep .bnt-promise-text,
.bnt-section-dark-deep .bnt-engage-text {
    color: rgba(255, 255, 255, 0.65);
}

.bnt-section-dark-deep .bnt-card-num,
.bnt-section-dark-deep .bnt-promise-num,
.bnt-section-dark-deep .bnt-engage-num {
    color: rgba(59, 189, 22, 0.35);
}

.bnt-section-dark-deep .bnt-card-icon-wrap,
.bnt-section-dark-deep .bnt-promise-icon-wrap,
.bnt-section-dark-deep .bnt-engage-icon {
    background: rgba(59, 189, 22, 0.15);
}

/* Dark testimonials */
.bnt-section-dark-deep .bnt-testimonial {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
}

.bnt-section-dark-deep .bnt-testimonial-quote {
    color: rgba(255, 255, 255, 0.8);
}

.bnt-section-dark-deep .bnt-testimonial-author {
    color: #fff;
}

.bnt-section-dark-deep .bnt-testimonial-role {
    color: rgba(255, 255, 255, 0.5);
}

/* Dark FAQ */
.bnt-section-dark-deep .bnt-faq-item {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.bnt-section-dark-deep .bnt-faq-question {
    color: #fff;
}

.bnt-section-dark-deep .bnt-faq-question:hover {
    color: var(--v-orange);
}

.bnt-section-dark-deep .bnt-faq-icon {
    color: var(--v-orange);
}

.bnt-section-dark-deep .bnt-faq-answer-inner {
    color: rgba(255, 255, 255, 0.7);
}

/* Dark delivery pipeline */
.bnt-section-dark-deep .bnt-delivery-header-text p {
    color: rgba(255, 255, 255, 0.75);
}

.bnt-section-dark-deep .bnt-pipeline-step span {
    color: rgba(255, 255, 255, 0.6);
}

.bnt-section-dark-deep .bnt-pipeline-icon {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--v-orange);
}

.bnt-section-dark-deep .bnt-pipeline-connector {
    background: rgba(255, 255, 255, 0.15);
}

/* ==========================================================================
   HERO — Vention: left-aligned, big heading weight 400
   ========================================================================== */
.bnt-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: var(--v-bg);
    padding: 80px 40px 100px;
    position: relative;
    overflow: hidden;
}

/* Video Background Styles */
.bnt-hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    z-index: 0;
    object-fit: cover;
}

.bnt-hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(10, 12, 18, 0.72) 0%,
        rgba(10, 12, 18, 0.50) 50%,
        rgba(10, 12, 18, 0.65) 100%
    );
    z-index: 1;
}

.bnt-hero-inner {
    max-width: var(--v-max-width);
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
}

.bnt-hero h1 {
    max-width: 900px;
    margin-bottom: 28px;
    font-weight: 500;
    letter-spacing: -0.03em;
    color: #fff;
    text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.6),
        0 4px 12px rgba(0, 0, 0, 0.45),
        0 0 30px rgba(0, 0, 0, 0.25);
}

.bnt-hero-subtitle {
    font-size: 1.1875rem;
    font-weight: 450;
    line-height: 1.7;
    color: #fff;
    max-width: 640px;
    margin-bottom: 48px;
    text-shadow:
        0 1px 3px rgba(0, 0, 0, 0.6),
        0 4px 14px rgba(0, 0, 0, 0.4);
}

/* Page hero — dark background for internal pages (About, Contact, Products) */
.bnt-hero-page {
    background: #0a0f1e;
}

.bnt-hero-page h1 {
    text-shadow: none;
}

.bnt-hero-page .bnt-hero-subtitle {
    text-shadow: none;
    color: rgba(255, 255, 255, 0.75);
}

/* ==========================================================================
   STATS GRID — 4 columns, bordered cells
   ========================================================================== */
.bnt-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.bnt-stat-card {
    padding: 36px 28px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid var(--v-border);
    transition: all 0.35s ease;
}

.bnt-stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.bnt-stat-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 500;
    color: var(--v-black);
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 10px;
}

.bnt-stat-label {
    font-size: 0.9375rem;
    color: var(--v-text-light);
    font-weight: 400;
}

/* ==========================================================================
   EXPERTISE HEADER — "More life" visual area
   ========================================================================== */
.bnt-expertise-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
}

.bnt-expertise-header-text {
    flex: 1;
    min-width: 0;
}

.bnt-expertise-header-text h2 {
    margin-bottom: 16px;
}

.bnt-expertise-header-text p {
    max-width: 600px;
    font-size: 1.0625rem;
    line-height: 1.7;
}

.bnt-highlight {
    color: var(--v-orange);
    font-weight: 600;
}

/* Visual column — animated orbs + floating badges */
.bnt-expertise-header-visual {
    position: relative;
    width: 240px;
    height: 160px;
    flex-shrink: 0;
}

/* Glowing gradient orbs */
.bnt-orb {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 189, 22, 0.35) 0%, rgba(0, 55, 119, 0.15) 70%, transparent 100%);
    filter: blur(30px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: orbFloat 6s ease-in-out infinite;
}

.bnt-orb-2 {
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(0, 55, 119, 0.3) 0%, rgba(59, 189, 22, 0.1) 70%, transparent 100%);
    filter: blur(25px);
    animation: orbFloat2 8s ease-in-out infinite;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    33% { transform: translate(-40%, -55%) scale(1.1); }
    66% { transform: translate(-60%, -45%) scale(0.95); }
}

@keyframes orbFloat2 {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-35%, -40%) scale(1.15); }
}

/* Floating tech badges */
.bnt-floating-badge {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--v-border);
    border-radius: 24px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--v-black);
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    z-index: 2;
}

.bnt-badge-1 {
    top: 15%;
    left: 10%;
    animation: badgeFloat 5s ease-in-out infinite;
}

.bnt-badge-2 {
    top: 8%;
    right: 5%;
    animation: badgeFloat 6s ease-in-out 1s infinite;
}

.bnt-badge-3 {
    bottom: 15%;
    left: 5%;
    animation: badgeFloat 5.5s ease-in-out 0.5s infinite;
}

.bnt-badge-4 {
    bottom: 10%;
    right: 10%;
    animation: badgeFloat 7s ease-in-out 1.5s infinite;
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Responsive: stack on mobile */
@media (max-width: 768px) {
    .bnt-expertise-header {
        flex-direction: column;
        gap: 40px;
    }
    .bnt-expertise-header-visual {
        width: 100%;
        height: 200px;
    }
}

/* ==========================================================================
   EXPERTISE TABS — Vention: left nav with orange left-border indicator
   ========================================================================== */
.bnt-tabs-section {
    background: var(--v-bg);
    padding-top: 32px;
}

.bnt-tabs {
    display: flex;
    gap: 0;
    background: var(--v-bg-card);
    border: 1px solid var(--v-border);
}

.bnt-tabs-nav {
    width: 50%;
    border-right: 1px solid var(--v-border);
    padding: 40px 0;
}

.bnt-tab-btn {
    display: block;
    width: 100%;
    padding: 16px 40px;
    font-size: 1.375rem;
    font-weight: 400;
    color: var(--v-text-muted);
    background: none;
    border: none;
    border-left: 3px solid transparent;
    text-align: left;
    cursor: pointer;
    transition: all var(--v-transition);
    font-family: var(--v-font);
}

.bnt-tab-btn:hover {
    color: var(--v-black);
}

.bnt-tab-btn.active {
    color: var(--v-black);
    border-left-color: var(--v-orange);
    font-weight: 500;
}

.bnt-tabs-content {
    flex: 1;
    padding: 0;
}

.bnt-tab-panel {
    display: none;
    height: 100%;
}

.bnt-tab-panel.active {
    display: flex;
    flex-direction: column;
}

/* Two sub-sections inside each panel, like Vention */
.bnt-tab-subsection {
    padding: 36px 40px;
    border-bottom: 1px solid var(--v-border);
    flex: 1;
}

.bnt-tab-subsection:last-child {
    border-bottom: none;
}

.bnt-tab-subsection-title {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--v-black);
    margin-bottom: 20px;
}

.bnt-tab-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 40px;
}

.bnt-tab-link {
    font-size: 1rem;
    font-weight: 400;
    color: var(--v-black);
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 1px;
    padding: 6px 0;
    transition: color var(--v-transition);
}

.bnt-tab-link:hover {
    color: var(--v-orange);
}

/* ==========================================================================
   DELIVERY HEADER — Pipeline visual
   ========================================================================== */
.bnt-delivery-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
}

.bnt-delivery-header-text {
    flex: 1;
    min-width: 0;
}

.bnt-delivery-header-text h2 {
    margin-bottom: 16px;
}

.bnt-delivery-header-text p {
    max-width: 600px;
    font-size: 1.0625rem;
    line-height: 1.7;
}

/* Pipeline steps visual */
.bnt-delivery-pipeline {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.bnt-pipeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.bnt-pipeline-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--v-bg-card);
    border: 2px solid var(--v-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--v-orange);
    transition: all 0.4s ease;
    position: relative;
}

.bnt-pipeline-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid transparent;
    transition: border-color 0.4s ease;
}

.bnt-pipeline-step:hover .bnt-pipeline-icon {
    background: var(--v-orange);
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(59, 189, 22, 0.3);
}

.bnt-pipeline-step:hover .bnt-pipeline-icon::after {
    border-color: rgba(59, 189, 22, 0.25);
}

.bnt-pipeline-step span {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--v-text-light);
    transition: color 0.3s ease;
}

.bnt-pipeline-step:hover span {
    color: var(--v-orange);
}

/* Connector lines between steps */
.bnt-pipeline-connector {
    width: 40px;
    height: 2px;
    background: var(--v-border);
    margin: 0 4px;
    margin-bottom: 28px;
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.bnt-pipeline-connector-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: var(--v-orange);
    animation: pipelineFlow 3s ease-in-out infinite;
    border-radius: 2px;
}

@keyframes pipelineFlow {
    0% { transform: translateX(-100%); }
    50% { transform: translateX(0); }
    100% { transform: translateX(100%); }
}

/* Responsive */
@media (max-width: 768px) {
    .bnt-delivery-header {
        flex-direction: column;
        gap: 30px;
    }
    .bnt-delivery-pipeline {
        width: 100%;
        justify-content: center;
    }
    .bnt-pipeline-connector {
        width: 24px;
    }
}

/* ==========================================================================
   FEATURE CARDS — 2x2 grid, matching promise/engage card pattern
   ========================================================================== */
.bnt-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.bnt-card {
    padding: 32px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid var(--v-border);
    border-left: 4px solid var(--v-orange);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.bnt-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 189, 22, 0.04) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.bnt-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.bnt-card:hover::after {
    opacity: 1;
}

.bnt-card-num {
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(59, 189, 22, 0.25);
    line-height: 1;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.bnt-card-body {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.bnt-card-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(59, 189, 22, 0.12), rgba(0, 55, 119, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--v-orange);
    flex-shrink: 0;
    transition: all 0.35s ease;
}

.bnt-card:hover .bnt-card-icon-wrap {
    background: var(--v-orange);
    color: #fff;
}

.bnt-card-title {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--v-black);
    margin-bottom: 8px;
}

.bnt-card-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--v-text-light);
}

/* ==========================================================================
   ENGAGEMENT MODELS — same pattern as promise, blue accent
   ========================================================================== */
.bnt-engage-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.bnt-engage-card {
    background: #fff;
    border-radius: 12px;
    padding: 32px;
    border: 1px solid rgba(59, 189, 22, 0.15);
    border-left: 4px solid var(--v-orange);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.bnt-engage-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 189, 22, 0.04) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.bnt-engage-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.bnt-engage-card:hover::after {
    opacity: 1;
}

.bnt-engage-num {
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(59, 189, 22, 0.2);
    line-height: 1;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.bnt-engage-body {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.bnt-engage-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(59, 189, 22, 0.12), rgba(0, 55, 119, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--v-orange);
    flex-shrink: 0;
    transition: all 0.35s ease;
}

.bnt-engage-card:hover .bnt-engage-icon {
    background: var(--v-orange);
    color: #fff;
}

.bnt-engage-title {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--v-black);
    margin-bottom: 8px;
}

.bnt-engage-text {
    font-size: 0.9rem;
    color: var(--v-text-light);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .bnt-engage-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   PEACE-OF-MIND SECTION — Vention: list with orange checkmarks
   ========================================================================== */
/* Peace of mind section */
.bnt-section-promise {
    background: var(--v-bg);
}

.bnt-promise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.bnt-promise-card {
    background: #fff;
    border-radius: 12px;
    padding: 32px;
    border: 1px solid var(--v-border);
    border-left: 4px solid var(--v-orange);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.bnt-promise-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 189, 22, 0.04) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.bnt-promise-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.bnt-promise-card:hover::after {
    opacity: 1;
}

.bnt-promise-num {
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(59, 189, 22, 0.2);
    line-height: 1;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.bnt-promise-body {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.bnt-promise-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(59, 189, 22, 0.12), rgba(0, 55, 119, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--v-orange);
    flex-shrink: 0;
    transition: all 0.35s ease;
}

.bnt-promise-card:hover .bnt-promise-icon-wrap {
    background: var(--v-orange);
    color: #fff;
}

.bnt-promise-title {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--v-black);
    margin-bottom: 8px;
}

.bnt-promise-text {
    font-size: 0.9rem;
    color: var(--v-text-light);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .bnt-promise-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   AI-FIRST — gradient mesh with glass cards
   ========================================================================== */
.bnt-section-ai {
    background: var(--v-bg);
    position: relative;
    overflow: hidden;
    padding: 70px 40px;
}

.bnt-ai-bg-orbs {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.bnt-ai-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.bnt-ai-orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(59, 189, 22, 0.08);
    top: -10%;
    right: -5%;
    animation: aiOrbMove1 10s ease-in-out infinite;
}

.bnt-ai-orb-2 {
    width: 300px;
    height: 300px;
    background: rgba(0, 55, 119, 0.08);
    bottom: -15%;
    left: 10%;
    animation: aiOrbMove2 12s ease-in-out infinite;
}

.bnt-ai-orb-3 {
    width: 200px;
    height: 200px;
    background: rgba(59, 189, 22, 0.05);
    top: 40%;
    left: 50%;
    animation: aiOrbMove3 8s ease-in-out infinite;
}

@keyframes aiOrbMove1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-40px, 30px); }
}

@keyframes aiOrbMove2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -20px); }
}

@keyframes aiOrbMove3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-20px, 15px) scale(1.15); }
}

.bnt-ai-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.bnt-ai-card {
    background: #fff;
    border: 1px solid var(--v-border);
    border-radius: 16px;
    padding: 36px;
    transition: all 0.4s ease;
    position: relative;
}

.bnt-ai-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 17px;
    background: linear-gradient(135deg, rgba(59, 189, 22, 0.4), transparent 50%, rgba(0, 55, 119, 0.3));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.bnt-ai-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.bnt-ai-card:hover::before {
    opacity: 1;
}

.bnt-ai-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(59, 189, 22, 0.15), rgba(0, 55, 119, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--v-orange);
    margin-bottom: 24px;
    transition: all 0.4s ease;
}

.bnt-ai-card:hover .bnt-ai-card-icon {
    background: var(--v-orange);
    color: #fff;
    box-shadow: 0 0 30px rgba(59, 189, 22, 0.3);
}

.bnt-ai-card-title {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--v-black);
    margin-bottom: 12px;
}

.bnt-ai-card-text {
    font-size: 0.9375rem;
    color: var(--v-text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.bnt-ai-card-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(59, 189, 22, 0.1);
    border: 1px solid rgba(59, 189, 22, 0.2);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--v-orange);
    letter-spacing: 0.02em;
}

@media (max-width: 768px) {
    .bnt-ai-cards {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   TESTIMONIALS — 3 column
   ========================================================================== */
.bnt-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.bnt-testimonial {
    padding: 36px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid var(--v-border);
    transition: all 0.35s ease;
    position: relative;
}

.bnt-testimonial:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.bnt-testimonial-quote {
    font-size: 1rem;
    font-style: normal;
    line-height: 1.65;
    color: var(--v-black);
    margin-bottom: 24px;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid var(--v-orange);
}

.bnt-testimonial-author {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--v-black);
}

.bnt-testimonial-role {
    font-size: 0.8125rem;
    color: var(--v-text-muted);
    font-weight: 400;
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.bnt-faq-list {
    border-top: 1px solid var(--v-border);
}

.bnt-faq-item {
    border-bottom: 1px solid var(--v-border);
}

.bnt-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 24px 0;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--v-black);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--v-font);
    transition: color var(--v-transition);
}

.bnt-faq-question:hover {
    color: var(--v-orange);
}

.bnt-faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    font-size: 1.25rem;
    border-radius: 50%;
    background: rgba(59, 189, 22, 0.08);
    color: var(--v-orange);
    transition: all var(--v-transition);
}

.bnt-faq-item.active .bnt-faq-icon {
    background: var(--v-orange);
    color: #fff;
    transform: rotate(45deg);
}

.bnt-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.bnt-faq-item.active .bnt-faq-answer {
    max-height: 500px;
}

.bnt-faq-answer-inner {
    padding: 0 0 24px;
    font-size: 1rem;
    line-height: 1.65;
    color: var(--v-text-light);
}

/* ==========================================================================
   CTA BANNER
   ========================================================================== */
.bnt-cta-banner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 450px;
    overflow: hidden;
}

.bnt-cta-image {
    background-size: cover;
    background-position: center;
    min-height: 350px;
}

.bnt-cta-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 72px;
    background: var(--v-bg-dark);
    color: #fff;
}

.bnt-cta-content h2 {
    color: #fff;
    margin-bottom: 16px;
}

.bnt-cta-content p {
    color: rgba(255,255,255,0.6);
    margin-bottom: 40px;
}

/* ==========================================================================
   FOOTER — Vention style
   ========================================================================== */
.bnt-footer {
    background: var(--v-bg);
    padding: 72px 40px 32px;
    border-top: 1px solid var(--v-border);
}

.bnt-footer-inner {
    max-width: var(--v-max-width);
    margin: 0 auto;
}

.bnt-footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 48px;
    margin-bottom: 48px;
}

.bnt-footer-brand {
    padding-right: 32px;
}

.bnt-footer-brand p {
    font-size: 0.875rem;
    color: var(--v-text-light);
    margin-top: 16px;
    line-height: 1.55;
}

.bnt-footer-col-title {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--v-black);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.bnt-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bnt-footer-links li {
    margin-bottom: 8px;
}

.bnt-footer-links a {
    font-size: 0.9375rem;
    color: var(--v-text-light);
    text-decoration: none;
    transition: color var(--v-transition);
}

.bnt-footer-links a:hover {
    color: var(--v-orange);
}

.bnt-footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.bnt-footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--v-border);
    color: var(--v-black);
    transition: background var(--v-transition), color var(--v-transition);
}

.bnt-footer-social a:hover {
    background: var(--v-orange);
    color: #fff;
}

.bnt-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--v-border);
    font-size: 0.8125rem;
    color: var(--v-text-muted);
}

/* ==========================================================================
   MOBILE
   ========================================================================== */
.bnt-mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--v-black);
}

.bnt-mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
    margin: 5px 0;
    transition: transform var(--v-transition), opacity var(--v-transition);
}

@media (max-width: 1024px) {
    .bnt-nav,
    .bnt-globe-btn,
    .bnt-search-btn {
        display: none;
    }

    .bnt-mobile-toggle {
        display: block;
    }

    .bnt-header-inner {
        padding: 0 16px;
    }

    .bnt-hero {
        padding: 60px 20px;
        min-height: 50vh;
    }

    .bnt-section {
        padding: 50px 20px;
    }

    .bnt-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bnt-cards-grid {
        grid-template-columns: 1fr;
    }

    .bnt-tabs {
        flex-direction: column;
    }

    .bnt-tabs-nav {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--v-border);
        padding: 20px 0;
    }

    .bnt-tab-btn {
        padding: 12px 24px;
        font-size: 1.125rem;
    }

    .bnt-testimonials-grid {
        grid-template-columns: 1fr;
    }

    .bnt-cta-banner {
        grid-template-columns: 1fr;
    }

    .bnt-footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (max-width: 768px) {
    :root {
        --v-header-h: 50px;
    }

    .bnt-stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .bnt-cta-content {
        padding: 40px 20px;
    }

    .bnt-footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

/* ==========================================================================
   MOBILE NAV OVERLAY
   ========================================================================== */
.bnt-mobile-nav {
    display: none;
    position: fixed;
    top: var(--v-header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--v-bg);
    z-index: 9997;
    overflow-y: auto;
    padding: 20px;
}

.bnt-mobile-nav.open {
    display: block;
}

.bnt-mobile-nav-item {
    border-bottom: 1px solid var(--v-border);
}

.bnt-mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--v-black);
    text-decoration: none;
}

.bnt-mobile-submenu {
    display: none;
    padding-left: 16px;
    padding-bottom: 16px;
}

.bnt-mobile-nav-item.open .bnt-mobile-submenu {
    display: block;
}

.bnt-mobile-submenu a {
    display: block;
    padding: 8px 0;
    font-size: 1rem;
    color: var(--v-text-light);
}

/* ==========================================================================
   PHLOX OVERRIDES
   ========================================================================== */
.aux-site-header,
.site-header-section,
.aux-sticky-header,
#site-header {
    display: none !important;
}

.aux-site-footer,
.site-footer-section,
#sitefooter,
footer.aux-site-footer {
    display: none !important;
}

.aux-full-width-container,
.page .aux-wrapper,
.aux-wrapper {
    padding-top: 0 !important;
}

.aux-title-bar,
.page-title-section {
    display: none !important;
}

/* Override Elementor defaults */
.elementor-section {
    max-width: 100%;
}

/* ==========================================================================
   UTILITIES
   ========================================================================== */
.v-mb-16 { margin-bottom: 16px; }
.v-mb-24 { margin-bottom: 24px; }
.v-mb-40 { margin-bottom: 40px; }
.v-mb-60 { margin-bottom: 60px; }
.v-mb-80 { margin-bottom: 80px; }
.v-text-muted { color: var(--v-text-light); }

/* ==========================================================================
   PRODUCTS PAGE — Vention Portfolio Style
   ========================================================================== */

/* Split Hero */
.bnt-products-hero {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    min-height: 350px;
    background: #0a0f1e;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bnt-products-hero-left {
    display: flex;
    align-items: flex-end;
    padding: 60px 40px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.bnt-products-hero-left h1 {
    font-size: 4.5rem;
    font-weight: 400;
    line-height: 1;
    margin: 0;
    color: #fff;
}

.bnt-products-hero-right {
    display: flex;
    align-items: flex-end;
    padding: 60px 40px;
}

.bnt-products-hero-right p {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    max-width: 480px;
    margin: 0;
}

/* Filter Bar */
.bnt-products-filter-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    border-bottom: 1px solid var(--v-border);
    min-height: 56px;
}

.bnt-filter-left {
    display: flex;
    gap: 0;
}

.bnt-filter-tag {
    padding: 16px 24px;
    font-size: 0.9375rem;
    font-family: var(--v-font);
    font-weight: 400;
    background: none;
    border: none;
    border-right: 1px solid var(--v-border);
    color: var(--v-text-muted);
    cursor: pointer;
    transition: color var(--v-transition);
    white-space: nowrap;
}

.bnt-filter-tag:first-child {
    padding-left: 0;
}

.bnt-filter-tag:hover {
    color: var(--v-black);
}

.bnt-filter-tag.active {
    color: var(--v-black);
    font-weight: 500;
}

/* Product Items */
.bnt-products-list {
    max-width: 100%;
}

.bnt-product-item {
    border-bottom: 1px solid var(--v-border);
    transition: opacity 0.3s ease;
}

.bnt-product-item-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 32px 40px 24px;
}

.bnt-product-item-name {
    font-size: 3.5rem;
    font-weight: 400;
    margin: 0;
    line-height: 1.1;
}

.bnt-product-item-cat {
    font-size: 0.9375rem;
    color: var(--v-text-muted);
    font-weight: 400;
}

.bnt-product-item-body {
    min-height: 420px;
}

.bnt-product-item-image {
    overflow: hidden;
    background: #E8E8EA;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 420px;
}

.bnt-product-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s ease;
}

.bnt-product-item:hover .bnt-product-item-image img {
    transform: scale(1.02);
}

.bnt-product-item-detail {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px 56px;
}

.bnt-product-item-detail h3 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 16px;
    color: var(--v-black);
}

.bnt-product-item-detail p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--v-text-light);
    margin-bottom: 32px;
}

.bnt-product-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--v-black);
    text-decoration: none;
    border-bottom: 1px solid var(--v-black);
    padding-bottom: 4px;
    transition: color var(--v-transition), border-color var(--v-transition);
    align-self: flex-start;
}

.bnt-product-link:hover {
    color: var(--v-orange);
    border-color: var(--v-orange);
}

/* Mobile */
@media (max-width: 768px) {
    .bnt-products-hero {
        grid-template-columns: 1fr !important;
    }

    .bnt-products-hero-left {
        border-right: none;
        border-bottom: 1px solid var(--v-border);
        padding: 40px 20px;
    }

    .bnt-products-hero-left h1 {
        font-size: 2.5rem;
    }

    .bnt-products-hero-right {
        padding: 30px 20px;
    }

    .bnt-products-filter-bar {
        padding: 0 20px;
        overflow-x: auto;
    }

    .bnt-product-item-header {
        padding: 24px 20px 16px;
        flex-direction: column;
        gap: 4px;
    }

    .bnt-product-item-name {
        font-size: 2rem;
    }

    .bnt-product-item-body {
        grid-template-columns: 1fr !important;
    }

    .bnt-product-item-detail {
        padding: 32px 20px;
    }
}
.bnt-form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--v-black);
    margin-bottom: 8px;
}

.bnt-form-input {
    width: 100%;
    padding: 14px 16px;
    font-size: 1rem;
    font-family: var(--v-font);
    background: var(--v-bg-card);
    border: 1px solid var(--v-border);
    color: var(--v-black);
    transition: border-color var(--v-transition), box-shadow var(--v-transition);
    outline: none;
}

.bnt-form-input:focus {
    border-color: var(--v-black);
    box-shadow: 0 0 0 1px var(--v-black);
}

.bnt-form-input::placeholder {
    color: var(--v-text-muted);
}

textarea.bnt-form-input {
    resize: vertical;
    min-height: 120px;
}

/* Dark form variants */
.bnt-section-dark-deep .bnt-form-label {
    color: rgba(255, 255, 255, 0.8);
}

.bnt-section-dark-deep .bnt-form-input {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.bnt-section-dark-deep .bnt-form-input:focus {
    border-color: var(--v-orange);
    box-shadow: 0 0 0 1px var(--v-orange);
}

.bnt-section-dark-deep .bnt-form-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

/* Mobile overrides for all pages */
@media (max-width: 768px) {
    .bnt-products-grid {
        grid-template-columns: 1fr;
    }

    .bnt-product-card {
        border-right: none;
    }

    .bnt-product-card:nth-last-child(-n+2) {
        border-bottom: 1px solid var(--v-border);
    }

    .bnt-product-card:last-child {
        border-bottom: none;
    }

    /* 2-column grids → stack on mobile */
    .bnt-section-inner > div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    /* Product card images */
    .bnt-product-card img {
        height: 180px !important;
    }

    /* Filter bar scroll */
    .bnt-products-filter-bar .bnt-filter-left {
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    /* Hero page smaller on mobile */
    .bnt-hero-page {
        min-height: 35vh !important;
    }

    .bnt-hero-page h1 {
        font-size: 2.5rem;
    }
}
