/* =================================================================
   BENDLESS TECH - FRONTEND CSS
   Dark UI + Glassmorphic + Bento Grid + Futuristic Agency
   ================================================================= */

/* ── CSS Variables ─────────────────────────────────────────────── */
:root {
    --bt-bg-primary: #0a0a1a;
    --bt-bg-secondary: #0f0f2d;
    --bt-bg-tertiary: #141432;
    --bt-bg-card: rgba(15, 15, 45, 0.6);
    --bt-glass: rgba(255, 255, 255, 0.03);
    --bt-glass-border: rgba(255, 255, 255, 0.08);
    --bt-glass-strong: rgba(255, 255, 255, 0.06);
    --bt-text-primary: #e8e8f0;
    --bt-text-secondary: #9898b8;
    --bt-text-muted: #6868a0;
    --bt-text-heading: #ffffff;
    --bt-gradient-1: #6c5ce7;
    --bt-gradient-2: #00cec9;
    --bt-gradient-3: #fd79a8;
    --bt-accent: #6c5ce7;
    --bt-accent-glow: rgba(108, 92, 231, 0.3);
    --bt-success: #00b894;
    --bt-border-radius: 16px;
    --bt-border-radius-sm: 10px;
    --bt-border-radius-pill: 50px;
    --bt-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --bt-font: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    --bt-container: 1200px;
}

/* ── Global Reset for Plugin ───────────────────────────────────── */
.bendless-tech-active {
    background: var(--bt-bg-primary) !important;
    color: var(--bt-text-primary);
    font-family: var(--bt-font);
    overflow-x: hidden;
}
.bendless-tech-active * { box-sizing: border-box; }
.bendless-tech-active a,
.bendless-tech-active a:link,
.bendless-tech-active a:hover,
.bendless-tech-active a:focus,
.bendless-tech-active a:active,
.bendless-tech-active a:visited {
    color: var(--bt-text-primary);
    text-decoration: none !important;
    text-underline-offset: 0 !important;
    text-decoration-line: none !important;
    border-bottom: none !important;
    transition: var(--bt-transition);
}
.bendless-tech-active a:hover { color: var(--bt-gradient-2); }

/* ── Container ─────────────────────────────────────────────────── */
.bt-container { max-width: var(--bt-container); margin: 0 auto; padding: 0 24px; }
.bt-center { text-align: center; }

/* ── Gradient Text ─────────────────────────────────────────────── */
.bt-gradient-text,
.bt-hero-title .bt-gradient-text,
h1 .bt-gradient-text,
h2 .bt-gradient-text {
    background: linear-gradient(135deg, var(--bt-gradient-1), var(--bt-gradient-2), var(--bt-gradient-3)) !important;
    -webkit-background-clip: text !important; -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    display: inline !important;
    color: transparent !important;
}
/* Subtle gradient shimmer animation for highlighted words */
.bt-gradient-shimmer,
.bt-hero-title .bt-gradient-shimmer,
h1 .bt-gradient-shimmer {
    background: linear-gradient(90deg, var(--bt-gradient-1), var(--bt-gradient-2), var(--bt-gradient-3), #00d2ff, var(--bt-gradient-1), var(--bt-gradient-2)) !important;
    background-size: 300% 100% !important;
    -webkit-background-clip: text !important; -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    color: transparent !important;
    display: inline !important;
    animation: bt-gradientShimmer 4s linear infinite !important;
    filter: brightness(1.2) !important;
}
@keyframes bt-gradientShimmer {
    0% { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}
@keyframes bt-trustBgPulse {
    0%, 100% { opacity: 0.2; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.35; transform: translate(-50%, -50%) scale(1.05); }
}

/* ── Glass Panels ──────────────────────────────────────────────── */
.bt-glass-panel {
    background: var(--bt-glass);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--bt-glass-border);
    border-radius: var(--bt-border-radius);
}

/* =================================================================
   HEADER - Floating Glassmorphic Pill
   ================================================================= */
.bt-glass-header {
    position: fixed; top: 16px; left: 50%; transform: translateX(-50%);
    width: calc(100% - 48px); max-width: var(--bt-container);
    background: rgba(10, 10, 26, 0.65);
    backdrop-filter: blur(28px); -webkit-backdrop-filter: blur(28px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    z-index: 9999; padding: 0 28px;
    transition: var(--bt-transition);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.bt-glass-header.bt-scrolled {
    background: rgba(10, 10, 26, 0.88);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.06);
}
.bt-header-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
/* Logo — ensure gradient text is always visible */
.bt-logo {
    font-size: 1.3rem; font-weight: 700; letter-spacing: -0.5px;
    text-decoration: none !important; color: var(--bt-text-primary) !important;
    display: inline-flex !important; align-items: center; gap: 0; white-space: nowrap;
    -webkit-text-fill-color: initial !important;
}
.bt-logo .bt-gradient-text {
    background: linear-gradient(135deg, var(--bt-gradient-1), var(--bt-gradient-2), var(--bt-gradient-3)) !important;
    -webkit-background-clip: text !important; -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    font-weight: 700;
}

/* Desktop Nav */
.bt-nav-desktop { display: flex; gap: 24px; align-items: center; }
.bt-nav-desktop a {
    font-size: 0.9rem; font-weight: 500; color: var(--bt-text-secondary);
    text-decoration: none !important; border-bottom: none !important;
    position: relative; transition: color 0.3s ease;
}
.bt-nav-desktop a:hover { color: #fff; text-decoration: none !important; }

/* CTA Button — gradient on desktop + mobile */
.bt-nav-cta {
    background: linear-gradient(135deg, var(--bt-gradient-1), var(--bt-gradient-2)) !important;
    padding: 8px 20px !important; border-radius: 999px !important;
    color: #fff !important; font-weight: 600 !important;
    text-decoration: none !important; border: none !important;
    display: inline-block !important; text-align: center;
    -webkit-text-fill-color: #fff !important;
    box-shadow: 0 2px 12px rgba(108, 92, 231, 0.3);
    transition: opacity 0.3s ease, box-shadow 0.3s ease !important;
}
.bt-nav-cta:hover {
    color: #fff !important; text-decoration: none !important; opacity: 0.9;
    box-shadow: 0 4px 20px rgba(108, 92, 231, 0.5);
    -webkit-text-fill-color: #fff !important;
}

/* Hamburger — gradient hover */
.bt-hamburger {
    display: none; background: none; border: none; cursor: pointer;
    padding: 8px; border-radius: 8px; transition: background 0.3s ease;
}
.bt-hamburger span {
    display: block; width: 24px; height: 2px;
    background: var(--bt-text-primary);
    margin: 5px 0; transition: all 0.3s ease; border-radius: 2px;
}
.bt-hamburger:hover { background: rgba(108, 92, 231, 0.15); }
.bt-hamburger:hover span {
    background: linear-gradient(135deg, var(--bt-gradient-1), var(--bt-gradient-2));
}

/* Mobile Nav — glassmorphic with gradient animated links */
.bt-nav-mobile {
    display: none; flex-direction: column; padding: 20px 24px; margin-top: 8px; gap: 4px;
    border-radius: 20px;
    background: rgba(10, 10, 26, 0.92);
    backdrop-filter: blur(28px); -webkit-backdrop-filter: blur(28px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.bt-nav-mobile a {
    font-size: 1rem; padding: 12px 16px; border-radius: 12px;
    color: var(--bt-text-secondary) !important;
    text-decoration: none !important; border-bottom: none !important;
    transition: all 0.3s ease !important;
    -webkit-text-fill-color: initial !important;
}
.bt-nav-mobile a:hover {
    text-decoration: none !important;
    background: linear-gradient(135deg, rgba(108,92,231,0.1), rgba(0,206,201,0.1)) !important;
    color: #fff !important;
}
/* Gradient text animation on mobile links */
.bt-nav-mobile a:not(.bt-nav-cta):hover {
    background: linear-gradient(135deg, var(--bt-gradient-1), var(--bt-gradient-2), var(--bt-gradient-3));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
/* Mobile CTA - full gradient button */
.bt-nav-mobile .bt-nav-cta {
    margin-top: 8px; text-align: center; padding: 14px 20px !important;
    border-radius: 999px !important;
}
.bt-nav-mobile.bt-open { display: flex; }

@media (max-width: 768px) {
    .bt-nav-desktop { display: none; }
    .bt-hamburger { display: block; }
    .bt-glass-header {
        width: calc(100% - 24px);
        border-radius: 999px;
        padding: 0 20px;
    }
    .bt-glass-header.bt-mobile-open {
        border-radius: 24px;
    }
    .bt-logo { font-size: 1.15rem; }
    .bt-logo .bt-gradient-text {
        background: linear-gradient(135deg, var(--bt-gradient-1), var(--bt-gradient-2), var(--bt-gradient-3)) !important;
        -webkit-background-clip: text !important; -webkit-text-fill-color: transparent !important;
        background-clip: text !important;
    }
}

/* =================================================================
   SECTIONS
   ================================================================= */
.bt-section { padding: 70px 0; position: relative; }
.bt-section-header { text-align: center; margin-bottom: 48px; }
.bt-section-header h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; margin: 16px 0; letter-spacing: -1px; color: var(--bt-text-heading); text-shadow: 0 0 20px rgba(108, 92, 231, 0.25); }
.bt-section-header p { color: var(--bt-text-secondary); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* Badge */
.bt-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--bt-glass-strong); border: 1px solid var(--bt-glass-border);
    padding: 6px 16px; border-radius: var(--bt-border-radius-pill);
    font-size: 0.85rem; color: var(--bt-gradient-2);
}

/* =================================================================
   BENTO GRID
   ================================================================= */
.bt-bento-grid { display: grid; gap: 20px; }
.bt-bento-3col { grid-template-columns: repeat(3, 1fr); }
.bt-bento-4col { grid-template-columns: repeat(4, 1fr); }
.bt-bento-2col { grid-template-columns: repeat(2, 1fr); }
.bt-bento-mixed { grid-template-columns: repeat(2, 1fr); }
.bt-bento-wide { grid-column: span 2; }

/* Mobile-first: Single column under 640px */
@media (max-width: 640px) {
    .bt-bento-3col, .bt-bento-4col, .bt-bento-2col, .bt-bento-mixed { grid-template-columns: 1fr; }
    .bt-bento-wide { grid-column: span 1; }
    .bt-form-grid { grid-template-columns: 1fr; }
    .bt-form-full { grid-column: span 1; }
}
/* Two-column grid on tablets (641px - 768px) */
@media (min-width: 641px) and (max-width: 768px) {
    .bt-bento-3col, .bt-bento-4col, .bt-bento-mixed { grid-template-columns: repeat(2, 1fr); }
    .bt-bento-wide { grid-column: span 2; }
}
/* Fallback for general mobile adjustments */

/* ── Bento Card ────────────────────────────────────────────────── */
.bt-bento-card {
    background: var(--bt-bg-card);
    border: 1px solid var(--bt-glass-border);
    border-radius: var(--bt-border-radius);
    padding: 32px; position: relative; overflow: hidden;
    transition: var(--bt-transition);
    transform-style: preserve-3d; perspective: 1000px;
}
.bt-bento-card:hover { border-color: rgba(108, 92, 231, 0.3); transform: translateY(-5px); box-shadow: 0 16px 48px rgba(108, 92, 231, 0.15), 0 4px 12px rgba(0, 206, 201, 0.08); }
.bt-bento-card h3 { font-size: 1.3rem; font-weight: 700; margin: 16px 0 8px; color: var(--bt-text-heading); text-shadow: 0 0 12px rgba(108, 92, 231, 0.2); }
.bt-bento-card p { color: var(--bt-text-secondary); line-height: 1.7; }
.bt-bento-card .iconify { font-size: 2rem; color: var(--bt-gradient-2); transition: transform 0.3s ease-out, color 0.3s ease-out; }
.bt-bento-card:hover .iconify { transform: scale(1.1); color: var(--bt-gradient-1); }
.bt-bento-card:hover .bt-card-icon { background: linear-gradient(135deg, rgba(108,92,231,0.15), rgba(0,206,201,0.12)); }
.bt-card-icon { width: 56px; height: 56px; background: var(--bt-glass-strong); border-radius: 14px; display: flex; align-items: center; justify-content: center; transition: background 0.3s ease-out; }
.bt-card-timeline { display: flex; align-items: center; gap: 8px; color: var(--bt-gradient-1); font-weight: 600; margin-top: 16px; font-size: 0.9rem; }
.bt-card-link { display: inline-flex; align-items: center; gap: 6px; color: var(--bt-gradient-2); font-weight: 600; margin-top: 16px; text-decoration: none !important; }

/* ── Feature Card Enhanced Hover ──────────────────────────────── */
.bt-feature-card { transition: transform 0.3s ease-out, box-shadow 0.3s ease-out, border-color 0.3s ease-out, background 0.3s ease-out; }
.bt-feature-card:hover { background: linear-gradient(135deg, rgba(108,92,231,0.06), var(--bt-bg-card) 60%, rgba(0,206,201,0.04)); }

/* ── Service Circle Graphic with Noodle Connectors ────────────── */
.bt-svc-circle-wrap { display: flex; align-items: center; justify-content: center; gap: 0; position: relative; margin: 0 auto 1rem; width: 280px; }
.bt-svc-circle { width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(135deg, var(--bt-gradient-1), var(--bt-gradient-2)); display: flex; align-items: center; justify-content: center; position: relative; z-index: 2; box-shadow: 0 0 30px rgba(108,92,231,0.4); animation: bt-circleGlow 3s ease-in-out infinite; }
.bt-svc-circle .iconify { font-size: 2.2rem; color: #fff; }
.bt-svc-noodle { position: absolute; top: 50%; height: 3px; width: 90px; z-index: 1; border-radius: 2px; overflow: hidden; }
.bt-svc-noodle::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, var(--bt-gradient-1), var(--bt-gradient-2), transparent); animation: bt-noodleBeam 2s linear infinite; background-size: 200% 100%; }
.bt-svc-noodle-left { right: 50%; margin-right: 40px; transform: translateY(-50%); }
.bt-svc-noodle-right { left: 50%; margin-left: 40px; transform: translateY(-50%); }
@keyframes bt-circleGlow { 0%,100% { box-shadow: 0 0 30px rgba(108,92,231,0.4); } 50% { box-shadow: 0 0 50px rgba(108,92,231,0.6), 0 0 80px rgba(0,206,201,0.2); } }
@keyframes bt-noodleBeam { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }

/* ── Process Steps ────────────────────────────────────────────── */
.bt-process-steps { display: flex; flex-direction: column; gap: 0; position: relative; padding-left: 40px; }
.bt-process-step { display: flex; align-items: flex-start; gap: 24px; padding: 24px 0; position: relative; }
.bt-process-circle { width: 48px; height: 48px; min-width: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--bt-gradient-1), var(--bt-gradient-2)); display: flex; align-items: center; justify-content: center; position: relative; z-index: 2; box-shadow: 0 0 20px rgba(108,92,231,0.3); }
.bt-process-num { color: #fff; font-weight: 800; font-size: 1.1rem; }
.bt-process-content { flex: 1; }
.bt-process-content .bt-card-icon { margin-bottom: 10px; }
.bt-process-content h3 { margin: 0 0 6px; }
.bt-process-content p { margin: 0; }
.bt-process-noodle-connect { position: absolute; left: 23px; top: 72px; width: 3px; height: calc(100% - 48px); background: linear-gradient(180deg, var(--bt-gradient-1), var(--bt-gradient-2), transparent); border-radius: 2px; z-index: 1; overflow: hidden; }
.bt-process-noodle-connect::after { content: ""; position: absolute; top: -100%; left: 0; width: 100%; height: 50%; background: linear-gradient(180deg, transparent, rgba(255,255,255,0.5), transparent); animation: bt-noodleTravel 2.5s linear infinite; }
@keyframes bt-noodleTravel { 0% { top: -50%; } 100% { top: 150%; } }
.bt-process-step:last-child .bt-process-noodle-connect { display: none; }

/* ── Pill Button Border Beam on Hover ─────────────────────────── */
.bt-btn-beam { position: relative; overflow: visible; }
.bt-btn-beam::after { content: ""; position: absolute; top: -1px; left: -1px; right: -1px; bottom: -1px; border-radius: inherit; background: conic-gradient(from var(--bt-beam-angle, 0deg), transparent 60%, var(--bt-gradient-1), var(--bt-gradient-2), transparent 100%); z-index: -1; opacity: 0; transition: opacity 0.3s ease-out; }
.bt-btn-beam:hover::after { opacity: 0.8; }

/* ── Border Beam ───────────────────────────────────────────────── */
.bt-border-beam {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    border-radius: inherit; pointer-events: none;
}
.bt-border-beam::before {
    content: ""; position: absolute; top: -2px; left: -2px; right: -2px; bottom: -2px;
    background: conic-gradient(from var(--bt-beam-angle, 0deg), transparent 60%, var(--bt-gradient-1), var(--bt-gradient-2), transparent 100%);
    border-radius: inherit; z-index: -1; opacity: 0;
    transition: opacity 0.3s;
}
.bt-bento-card:hover .bt-border-beam::before { opacity: 0.45; filter: brightness(0.7) saturate(0.8); }

/* =================================================================
   HERO
   ================================================================= */
.bt-hero { min-height: 100vh; min-height: 100svh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 100px 24px 40px; position: relative; overflow: hidden; }
.bt-hero-inner { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 0; padding-top: 2vh; }
.bt-hero-content { position: relative; z-index: 2; max-width: 800px; width: 100%; display: flex; flex-direction: column; align-items: center; }
.bt-hero-tag {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.85rem; font-weight: 600; color: var(--bt-gradient-2);
    background: rgba(108, 92, 231, 0.08); border: 1px solid rgba(108, 92, 231, 0.15);
    padding: 8px 20px; border-radius: var(--bt-border-radius-pill); margin-bottom: 16px;
    animation: bt-fadeIn 1s ease forwards 0.3s; opacity: 0;
}
.bt-hero-title { font-size: clamp(2.2rem, 5.5vw, 4rem); font-weight: 900; line-height: 1.1; letter-spacing: -2px; margin-bottom: 16px; color: var(--bt-text-heading); text-shadow: 0 0 30px rgba(108, 92, 231, 0.3); }
.bt-hero-subtitle { font-size: 1.1rem; color: var(--bt-text-secondary); margin-bottom: 14px; line-height: 1.6; }

/* -- Hero Pricing Strip — Marquee -- */
.bt-hero-pricing-strip {
    overflow: hidden; position: relative;
    margin-bottom: 18px; padding: 10px 0;
    animation: bt-fadeIn 0.8s ease forwards 0.5s; opacity: 0;
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.bt-hero-pricing-beam {
    position: absolute; top: 50%; left: 0; width: 100%; height: 2px;
    background: linear-gradient(90deg, transparent, var(--bt-gradient-1), var(--bt-gradient-2), var(--bt-gradient-3), transparent);
    background-size: 200% 100%; animation: bt-beamSweep 3s linear infinite;
    opacity: 0.5; z-index: 0;
}
@keyframes bt-beamSweep { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
.bt-marquee-track {
    display: flex; gap: 14px; width: max-content;
    animation: bt-marqueeScroll 18s linear infinite;
}
.bt-marquee-track:hover { animation-play-state: paused; }
@keyframes bt-marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.bt-hero-price-pill {
    position: relative; z-index: 1;
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 16px; border-radius: 999px;
    background: linear-gradient(135deg, rgba(108,92,231,0.22), rgba(0,206,201,0.18), rgba(108,92,231,0.22));
    background-size: 200% 200%;
    animation: bt-pillPulse 3.5s ease-in-out infinite;
    border: 1px solid rgba(108, 92, 231, 0.35);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    transition: var(--bt-transition);
    text-decoration: none !important;
    color: var(--bt-text-primary) !important;
    font-size: 0.85rem;
}
@keyframes bt-pillPulse {
    0%, 100% { background-position: 0% 50%; border-color: rgba(108,92,231,0.35); box-shadow: 0 0 8px rgba(108,92,231,0.15); }
    50%      { background-position: 100% 50%; border-color: rgba(0,206,201,0.45); box-shadow: 0 0 14px rgba(0,206,201,0.2); }
}
.bt-hero-price-pill:hover {
    border-color: var(--bt-gradient-1);
    box-shadow: 0 0 16px rgba(108, 92, 231, 0.3);
    transform: translateY(-2px);
}
.bt-hero-price-pill .iconify { color: var(--bt-gradient-2); flex-shrink: 0; }
.bt-hpp-name { font-weight: 600; color: var(--bt-text-heading); white-space: nowrap; }
.bt-hpp-price {
    font-weight: 700; white-space: nowrap;
    background: linear-gradient(135deg, var(--bt-gradient-1), var(--bt-gradient-2), var(--bt-gradient-3));
    background-size: 200% 200%; animation: bt-gradientShimmer 3s ease infinite;
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
}

/* -- 5-Star Rating with Gradient Glow -- */
.bt-hero-stars { margin-bottom: 20px; display: flex; flex-direction: column; align-items: center; gap: 6px; animation: bt-fadeIn 1s ease forwards 0.6s; opacity: 0; }
.bt-stars-row { display: flex; gap: 4px; }
.bt-star {
    color: #FBBF24;
    filter: drop-shadow(0 0 4px rgba(251, 191, 36, 0.4));
    animation: bt-starGradient 3s ease infinite;
}
.bt-star:nth-child(2) { animation-delay: 0.15s; }
.bt-star:nth-child(3) { animation-delay: 0.3s; }
.bt-star:nth-child(4) { animation-delay: 0.45s; }
.bt-star:nth-child(5) { animation-delay: 0.6s; }
@keyframes bt-starGradient {
    0%, 100% { color: #FBBF24; filter: drop-shadow(0 0 4px rgba(251, 191, 36, 0.4)); }
    33% { color: #c084fc; filter: drop-shadow(0 0 6px rgba(108, 92, 231, 0.5)); }
    66% { color: #22d3ee; filter: drop-shadow(0 0 6px rgba(34, 211, 238, 0.5)); }
}
.bt-stars-text { font-size: 0.85rem; color: var(--bt-text-secondary); font-weight: 500; }

.bt-hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* -- Trust Verified Circle — positioned as BACKGROUND behind content -- */
.bt-trust-circle-bg {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 320px; height: 320px; z-index: 1; opacity: 0.25; pointer-events: none;
    animation: bt-trustBgPulse 4s ease-in-out infinite;
}
.bt-trust-circle { position: relative; width: 100%; height: 100%; }
.bt-trust-ring {
    position: absolute; inset: 0; border-radius: 50%;
    border: 2px solid transparent; border-top-color: var(--bt-gradient-1); border-right-color: var(--bt-gradient-2);
    animation: bt-trustSpin 3s linear infinite;
    box-shadow: 0 0 20px rgba(108, 92, 231, 0.15);
}
.bt-trust-ring-2 {
    inset: 12px; border-top-color: var(--bt-gradient-2); border-right-color: var(--bt-gradient-3);
    animation: bt-trustSpin 4s linear infinite reverse;
}
.bt-trust-ring-3 {
    inset: 24px; border-top-color: var(--bt-gradient-3); border-right-color: var(--bt-gradient-1);
    animation: bt-trustSpin 2.5s linear infinite;
}
/* Traveling particles on trust circle */
.bt-trust-particle {
    position: absolute; width: 6px; height: 6px; border-radius: 50%;
    background: var(--bt-gradient-2);
    box-shadow: 0 0 10px var(--bt-gradient-2), 0 0 20px rgba(108, 92, 231, 0.4);
}
.bt-tp-1 { top: 0; left: 50%; transform: translateX(-50%); animation: bt-particleOrbit 3s linear infinite; }
.bt-tp-2 { bottom: 0; left: 50%; transform: translateX(-50%); animation: bt-particleOrbit 3s linear infinite 0.75s; }
.bt-tp-3 { top: 50%; left: 0; transform: translateY(-50%); animation: bt-particleOrbit 3s linear infinite 1.5s; }
.bt-tp-4 { top: 50%; right: 0; transform: translateY(-50%); animation: bt-particleOrbit 3s linear infinite 2.25s; }
/* Verified tick center */
.bt-trust-tick {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    color: var(--bt-gradient-2); filter: drop-shadow(0 0 12px var(--bt-gradient-1));
    animation: bt-tickPulse 2s ease-in-out infinite;
}

/* -- Hero Beam Noodles -- */
.bt-hero-noodle {
    position: absolute; width: 2px; z-index: 1; pointer-events: none;
    background: linear-gradient(180deg, transparent, var(--bt-gradient-1), var(--bt-gradient-2), transparent);
    opacity: 0.35; border-radius: 2px;
}
.bt-hero-noodle-1 { height: 200px; top: 8%; left: 10%; animation: bt-noodleFloat 4s ease-in-out infinite; }
.bt-hero-noodle-2 { height: 160px; top: 15%; right: 12%; animation: bt-noodleFloat 3.5s ease-in-out infinite 0.8s; }
.bt-hero-noodle-3 { height: 180px; bottom: 10%; left: 20%; animation: bt-noodleFloat 3s ease-in-out infinite 1.4s; }
.bt-hero-noodle-4 { height: 140px; bottom: 18%; right: 8%; animation: bt-noodleFloat 4.2s ease-in-out infinite 0.5s; background: linear-gradient(180deg, transparent, var(--bt-gradient-3), var(--bt-gradient-1), transparent); }
.bt-hero-noodle-h {
    position: absolute; height: 2px; z-index: 1; pointer-events: none;
    background: linear-gradient(90deg, transparent, var(--bt-gradient-2), var(--bt-gradient-1), transparent);
    opacity: 0.3; border-radius: 2px;
}
.bt-hero-noodle-h1 { width: 180px; top: 30%; left: 3%; animation: bt-noodleFloat 3.8s ease-in-out infinite 0.2s; }
.bt-hero-noodle-h2 { width: 150px; bottom: 25%; right: 5%; animation: bt-noodleFloat 3.2s ease-in-out infinite 1s; }

/* Beam Grid Background */
.bt-beam-grid {
    position: absolute; inset: 0; opacity: 0.03;
    background-image:
        linear-gradient(var(--bt-gradient-1) 1px, transparent 1px),
        linear-gradient(90deg, var(--bt-gradient-1) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

@media (max-width: 768px) {
    .bt-trust-circle-bg { width: 180px; height: 180px; opacity: 0.12; }
    .bt-hero-noodle, .bt-hero-noodle-h { display: none !important; }
    .bt-hero {
        display: flex !important; flex-direction: column !important;
        align-items: center !important; justify-content: center !important;
        padding: 40px 16px 16px !important; min-height: 100svh;
        text-align: center !important;
    }
    .bt-hero-inner {
        display: flex !important; flex-direction: column !important;
        align-items: center !important; justify-content: center !important;
        width: 100% !important; max-width: 100% !important;
        padding-top: 0 !important; gap: 0 !important;
    }
    .bt-hero-content {
        display: flex !important; flex-direction: column !important;
        align-items: center !important; justify-content: center !important;
        width: 100% !important; text-align: center !important;
    }
    .bt-hero-title {
        display: block !important; width: 100% !important;
        margin-bottom: 8px !important;
        font-size: clamp(1.6rem, 7vw, 2.4rem) !important;
        letter-spacing: -1px !important; line-height: 1.15 !important;
        text-align: center !important;
    }
    .bt-hero-subtitle {
        display: block !important; width: 100% !important;
        margin-bottom: 8px !important;
        font-size: 0.9rem !important; line-height: 1.4 !important;
        text-align: center !important;
    }
    .bt-hero-stars {
        display: flex !important; flex-direction: column !important;
        align-items: center !important; width: 100% !important;
        margin-bottom: 8px !important; gap: 3px !important;
    }
    .bt-hero-stars .bt-stars-row { display: flex !important; flex-direction: row !important; justify-content: center !important; }
    .bt-hero-stars .bt-star-icons .iconify { font-size: 16px; }
    .bt-hero-stars .bt-stars-text { font-size: 0.75rem !important; display: block !important; text-align: center !important; }
    .bt-hero-tag {
        display: inline-flex !important; margin: 0 auto 8px auto !important;
        font-size: 0.72rem !important; padding: 4px 12px !important;
    }
    .bt-hero-pricing-strip { margin-bottom: 8px !important; padding: 4px 0 !important; width: 100% !important; }
    .bt-marquee-track { gap: 8px; animation-duration: 10s; }
    .bt-hero-price-pill { padding: 4px 10px !important; font-size: 0.72rem !important; gap: 4px; }
    .bt-hero-price-pill .iconify { font-size: 13px; }
    .bt-hero-ctas {
        display: flex !important; flex-direction: column !important;
        align-items: center !important; width: 100% !important; gap: 8px !important;
    }
    .bt-hero-ctas .bt-btn { width: 100% !important; max-width: 260px; justify-content: center; padding: 10px 20px !important; font-size: 0.85rem !important; display: flex !important; }
}

/* =================================================================
   BUTTONS
   ================================================================= */
.bt-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px; border-radius: var(--bt-border-radius-pill);
    font-weight: 600; font-size: 0.95rem; transition: var(--bt-transition);
    cursor: pointer; border: none;
    text-decoration: none !important;
    border-bottom: none !important;
}
.bt-btn:hover,
.bt-btn:focus,
.bt-btn:active,
.bt-btn:visited {
    text-decoration: none !important;
    border-bottom: none !important;
}
.bt-btn-primary {
    background: linear-gradient(135deg, var(--bt-gradient-1), var(--bt-gradient-2));
    color: #fff !important; box-shadow: 0 4px 20px var(--bt-accent-glow);
    text-decoration: none !important;
}
.bt-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px var(--bt-accent-glow); color: #fff !important; text-decoration: none !important; }
.bt-btn-secondary {
    background: var(--bt-glass-strong); border: 1px solid var(--bt-glass-border);
    color: var(--bt-text-primary); text-decoration: none !important;
}
.bt-btn-secondary:hover { background: var(--bt-glass); border-color: var(--bt-gradient-1); text-decoration: none !important; }

/* ── Remove underlines from all interactive elements ───────────── */
.bt-card-link,
.bt-card-link:hover,
.bt-footer-col a,
.bt-footer-col a:hover,
.bt-portfolio-result a,
.bt-badge,
.bt-badge a,
.bt-nav-cta,
.bendless-tech-active .bt-btn,
.bendless-tech-active .bt-card-link,
.bendless-tech-active .bt-nav-desktop a,
.bendless-tech-active .bt-nav-mobile a,
.bendless-tech-active .bt-footer-col a,
.bendless-tech-active .bt-logo {
    text-decoration: none !important;
    border-bottom: none !important;
}

/* =================================================================
   STATS / SOCIAL PROOF
   ================================================================= */
.bt-stat-card { text-align: center; padding: 40px 24px; }
.bt-counter { font-size: 3rem; font-weight: 900; display: inline; background: linear-gradient(135deg, var(--bt-gradient-1), var(--bt-gradient-2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.bt-stat-suffix { font-size: 2rem; font-weight: 700; color: var(--bt-gradient-2); }
.bt-stat-card p { margin-top: 8px; }

/* =================================================================
   TIMELINE
   ================================================================= */
.bt-timeline-track { position: relative; max-width: 700px; margin: 0 auto; }
.bt-timeline-beam { position: absolute; left: 24px; top: 0; bottom: 0; width: 2px; background: linear-gradient(180deg, var(--bt-gradient-1), var(--bt-gradient-2), var(--bt-gradient-3)); }
.bt-timeline-step { position: relative; padding-left: 64px; margin-bottom: 40px; }
.bt-timeline-node { position: absolute; left: 16px; top: 32px; width: 18px; height: 18px; background: var(--bt-gradient-1); border-radius: 50%; border: 3px solid var(--bt-bg-primary); z-index: 2; }
.bt-node-pulse { position: absolute; inset: -6px; border-radius: 50%; border: 2px solid var(--bt-gradient-2); animation: bt-pulse 2s ease infinite; }
.bt-timeline-time { display: inline-block; font-size: 0.8rem; font-weight: 700; color: var(--bt-gradient-2); background: var(--bt-glass-strong); padding: 4px 12px; border-radius: var(--bt-border-radius-pill); margin-bottom: 8px; }

/* =================================================================
   PRICING
   ================================================================= */
.bt-pricing-card { text-align: center; }
.bt-pricing-card ul { list-style: none; padding: 0; margin: 20px 0; text-align: left; }
.bt-pricing-card li { display: flex; align-items: center; gap: 8px; padding: 8px 0; color: var(--bt-text-secondary); border-bottom: 1px solid var(--bt-glass-border); }
.bt-pricing-card li .iconify { color: var(--bt-success); font-size: 1.2rem; }
.bt-price { font-size: 1.8rem; font-weight: 800; margin: 16px 0; background: linear-gradient(135deg, var(--bt-gradient-1), var(--bt-gradient-2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.bt-pricing-featured { border-color: var(--bt-gradient-1); box-shadow: 0 0 40px var(--bt-accent-glow); transform: scale(1.05); }
.bt-pricing-badge { position: absolute; top: -1px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--bt-gradient-1), var(--bt-gradient-2)); color: #fff; padding: 4px 20px; border-radius: 0 0 12px 12px; font-size: 0.8rem; font-weight: 700; }

/* =================================================================
   PORTFOLIO - Homepage Carousel
   ================================================================= */
.bt-portfolio-journey { position: relative; }
.bt-portfolio-carousel-wrap { position: relative; overflow: hidden; }
.bt-portfolio-carousel-track {
    display: flex !important; flex-wrap: nowrap !important; transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}
.bt-portfolio-slide { min-width: 100% !important; width: 100% !important; max-width: 100% !important; flex-shrink: 0 !important; padding: 0 10px; box-sizing: border-box; }
.bt-portfolio-slide .bt-bento-card { margin: 0; width: 100%; max-width: 100%; }
.bt-portfolio-carousel-nav { display: flex; justify-content: center; gap: 12px; margin-top: 24px; }
.bt-portfolio-nav-btn {
    width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--bt-glass-border);
    background: var(--bt-glass-strong); color: var(--bt-text-primary); cursor: pointer;
    display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
    transition: var(--bt-transition);
}
.bt-portfolio-nav-btn:hover { border-color: var(--bt-gradient-1); background: var(--bt-accent-glow); }
.bt-portfolio-dots { display: flex; gap: 8px; align-items: center; }
.bt-portfolio-dot {
    width: 10px; height: 10px; border-radius: 50%; background: var(--bt-glass-strong);
    border: 1px solid var(--bt-glass-border); cursor: pointer; transition: var(--bt-transition);
}
.bt-portfolio-dot.bt-active { background: var(--bt-gradient-1); border-color: var(--bt-gradient-1); width: 24px; border-radius: 5px; }
.bt-portfolio-node { position: relative; margin-bottom: 40px; }
.bt-beam-connector {
    position: absolute; left: 50%; top: 0; bottom: -40px; width: 2px;
    background: linear-gradient(180deg, transparent, var(--bt-gradient-1), var(--bt-gradient-2), transparent);
    opacity: 0.3; z-index: 0;
}
.bt-portfolio-img-carousel { min-height: 200px; background: var(--bt-bg-secondary); border-radius: var(--bt-border-radius-sm); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; overflow: hidden; position: relative; }
.bt-carousel-placeholder { display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--bt-text-muted); }
.bt-carousel-placeholder .iconify { font-size: 3rem; }
.bt-portfolio-client { display: flex; align-items: center; gap: 6px; color: var(--bt-text-muted); font-size: 0.9rem; }
.bt-portfolio-cat { display: inline-block; background: var(--bt-glass-strong); padding: 4px 12px; border-radius: var(--bt-border-radius-pill); font-size: 0.8rem; color: var(--bt-gradient-2); margin: 8px 0; }
.bt-portfolio-result { display: flex; align-items: center; gap: 8px; color: var(--bt-success); font-weight: 600; margin-top: 12px; }

/* =================================================================
   CASE STUDIES PAGE - Journey with beam node connections
   ================================================================= */
.bt-case-studies { position: relative; }
.bt-case-journey-beam {
    position: absolute; left: 50%; top: 0; bottom: 0; width: 2px;
    background: linear-gradient(180deg, var(--bt-gradient-1), var(--bt-gradient-2), var(--bt-gradient-3), var(--bt-gradient-1));
    opacity: 0.3; z-index: 0; overflow: hidden;
}
.bt-case-journey-beam::after {
    content: ""; position: absolute; width: 6px; height: 30px; left: -2px;
    background: linear-gradient(180deg, transparent, var(--bt-gradient-2), transparent);
    border-radius: 3px; animation: bt-beamTravel 4s linear infinite;
}
.bt-case-node {
    position: relative; z-index: 1; margin-bottom: 80px;
}
.bt-case-node:nth-child(odd) .bt-case-card { margin-right: 55%; }
.bt-case-node:nth-child(even) .bt-case-card { margin-left: 55%; }
.bt-case-node-dot {
    position: absolute; left: 50%; top: 30px; transform: translateX(-50%);
    width: 20px; height: 20px; background: var(--bt-gradient-1); border-radius: 50%;
    border: 3px solid var(--bt-bg-primary); z-index: 3;
    animation: bt-nodeGlow 3s ease-in-out infinite;
}
.bt-case-connector {
    position: absolute; top: 38px; height: 2px; z-index: 2;
    background: linear-gradient(90deg, transparent, var(--bt-gradient-1), var(--bt-gradient-2), transparent);
    opacity: 0.5;
}
.bt-case-node:nth-child(odd) .bt-case-connector { left: auto; right: 50%; width: calc(45% - 30px); }
.bt-case-node:nth-child(even) .bt-case-connector { left: 50%; width: calc(45% - 30px); }
.bt-case-card {
    background: var(--bt-bg-card); border: 1px solid var(--bt-glass-border);
    border-radius: var(--bt-border-radius); padding: 28px; position: relative;
    overflow: hidden; transition: var(--bt-transition);
}
.bt-case-card:hover { border-color: rgba(108, 92, 231, 0.3); box-shadow: 0 12px 40px rgba(108, 92, 231, 0.1); }
.bt-case-card h3 { font-size: 1.3rem; font-weight: 700; color: var(--bt-text-heading); margin-bottom: 8px; text-shadow: 0 0 12px rgba(108, 92, 231, 0.2); }
.bt-case-owner { display: flex; align-items: center; gap: 8px; color: var(--bt-gradient-2); font-weight: 600; font-size: 0.9rem; margin: 8px 0; }
.bt-case-owner .iconify { font-size: 1.1rem; }
.bt-case-excerpt { color: var(--bt-text-secondary); line-height: 1.7; margin-bottom: 12px; }
.bt-case-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.bt-case-tag { background: var(--bt-glass-strong); padding: 4px 12px; border-radius: var(--bt-border-radius-pill); font-size: 0.8rem; color: var(--bt-gradient-2); }

@media (max-width: 768px) {
    .bt-case-node:nth-child(odd) .bt-case-card,
    .bt-case-node:nth-child(even) .bt-case-card { margin: 0 0 0 40px; }
    .bt-case-journey-beam { left: 15px; }
    .bt-case-node-dot { left: 15px; transform: translateX(-50%); }
    .bt-case-connector { display: none; }
    .bt-portfolio-slide { min-width: 100% !important; width: 100% !important; }
}

/* =================================================================
   SINGLE CASE STUDY PAGE - Scroll-reveal journey
   ================================================================= */
.bt-case-detail { position: relative; }
.bt-case-hero-img { min-height: 300px; background: var(--bt-bg-secondary); border-radius: var(--bt-border-radius); margin-bottom: 40px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.bt-journey-section {
    margin-bottom: 60px; padding: 40px 40px 40px 48px; position: relative;
    border-left: 3px solid var(--bt-gradient-1);
    background: linear-gradient(90deg, rgba(108, 92, 231, 0.04), transparent 50%);
}
.bt-journey-section::before {
    content: ""; position: absolute; left: -9px; top: 40px;
    width: 16px; height: 16px; border-radius: 50%;
    background: var(--bt-gradient-1); border: 3px solid var(--bt-bg-primary);
    box-shadow: 0 0 12px var(--bt-gradient-1), 0 0 24px rgba(108, 92, 231, 0.4);
    animation: bt-nodeGlow 3s ease-in-out infinite;
}
/* Beam traveling particle along the journey line */
.bt-journey-section::after {
    content: ""; position: absolute; left: -5px; top: 0;
    width: 8px; height: 24px;
    background: linear-gradient(180deg, transparent, var(--bt-gradient-2), var(--bt-gradient-1), transparent);
    border-radius: 4px; opacity: 0.8;
    animation: bt-beamTravel 3.5s linear infinite;
}
.bt-journey-prompt {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.85rem; color: var(--bt-gradient-2); font-weight: 600;
    background: var(--bt-glass-strong); padding: 6px 16px;
    border-radius: var(--bt-border-radius-pill); margin-bottom: 16px;
}
.bt-journey-section h2 { font-size: 1.6rem; font-weight: 800; color: var(--bt-text-heading); margin-bottom: 16px; text-shadow: 0 0 16px rgba(108, 92, 231, 0.25); }
.bt-journey-section p { color: var(--bt-text-secondary); line-height: 1.8; }
.bt-journey-quote {
    background: var(--bt-glass-strong); border-left: 3px solid var(--bt-gradient-1);
    padding: 20px 24px; border-radius: 0 var(--bt-border-radius-sm) var(--bt-border-radius-sm) 0;
    margin: 20px 0; font-style: italic; color: var(--bt-text-primary);
}

/* =================================================================
   CHAT / CONTACT
   ================================================================= */
.bt-chat-panel { max-width: 600px; margin: 0 auto; padding: 24px; }
.bt-chat-messages { min-height: 150px; max-height: 400px; overflow-y: auto; padding: 16px; }
.bt-chat-welcome { text-align: center; color: var(--bt-text-muted); padding: 20px; }
.bt-chat-welcome .iconify { font-size: 2.5rem; color: var(--bt-gradient-2); display: block; margin-bottom: 12px; }
.bt-chat-inputs { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.bt-chat-inputs input:first-child { grid-column: span 2; }
.bt-chat-send-row { display: flex; gap: 12px; }
.bt-chat-send-row textarea { flex: 1; }
.bt-chat-form input, .bt-chat-form textarea, .bt-chat-form select {
    background: var(--bt-bg-secondary); border: 1px solid var(--bt-glass-border);
    color: var(--bt-text-primary); padding: 12px 16px; border-radius: var(--bt-border-radius-sm);
    font-family: var(--bt-font); font-size: 0.95rem; width: 100%; resize: none;
}
.bt-chat-form input:focus, .bt-chat-form textarea:focus { outline: none; border-color: var(--bt-gradient-1); }
.bt-chat-send { padding: 12px 20px; min-width: auto; }
.bt-chat-typing { display: flex; gap: 4px; padding: 8px 16px; }
.bt-chat-typing span { width: 8px; height: 8px; background: var(--bt-text-muted); border-radius: 50%; animation: bt-typing 1.4s ease-in-out infinite; }
.bt-chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.bt-chat-typing span:nth-child(3) { animation-delay: 0.4s; }
.bt-chat-bubble { max-width: 80%; padding: 12px 16px; border-radius: 16px; margin-bottom: 8px; font-size: 0.95rem; }
.bt-chat-bubble-user { background: var(--bt-gradient-1); color: #fff; margin-left: auto; border-bottom-right-radius: 4px; }
.bt-chat-bubble-admin { background: var(--bt-glass-strong); color: var(--bt-text-primary); border-bottom-left-radius: 4px; }

@media (max-width: 768px) {
    .bt-chat-inputs { grid-template-columns: 1fr; }
    .bt-chat-inputs input:first-child { grid-column: span 1; }
}

/* =================================================================
   CUSTOM CREATE FORM
   ================================================================= */
.bt-cc-form-panel { max-width: 800px; margin: 0 auto; padding: 40px; }
.bt-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.bt-form-group { margin-bottom: 20px; }
.bt-form-group label { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; font-weight: 600; font-size: 0.9rem; color: var(--bt-text-secondary); }
.bt-form-group label .iconify { color: var(--bt-gradient-2); }
.bt-form-full { grid-column: span 2; }
.bt-cc-form input, .bt-cc-form textarea, .bt-cc-form select {
    background: var(--bt-bg-secondary); border: 1px solid var(--bt-glass-border);
    color: var(--bt-text-primary); padding: 14px 18px; border-radius: var(--bt-border-radius-sm);
    font-family: var(--bt-font); font-size: 0.95rem; width: 100%;
}
.bt-cc-form input:focus, .bt-cc-form textarea:focus, .bt-cc-form select:focus { outline: none; border-color: var(--bt-gradient-1); }
.bt-cc-form select { appearance: none; cursor: pointer; }
.bt-form-submit { text-align: center; margin-top: 24px; }
.bt-form-response { text-align: center; margin-top: 16px; padding: 12px; border-radius: var(--bt-border-radius-sm); }
.bt-form-response.bt-success { background: rgba(0, 184, 148, 0.1); color: var(--bt-success); border: 1px solid rgba(0, 184, 148, 0.2); }
.bt-form-response.bt-error { background: rgba(255, 100, 100, 0.1); color: #ff6464; border: 1px solid rgba(255, 100, 100, 0.2); }

@media (max-width: 768px) {
    .bt-form-grid { grid-template-columns: 1fr; }
    .bt-form-full { grid-column: span 1; }
    .bt-cc-form-panel { padding: 24px; }
}

/* =================================================================
   ABOUT PAGE — Beam-animated sections
   ================================================================= */
.bt-about-page .bt-section { position: relative; overflow: hidden; }
.bt-about-stat-icon { margin-bottom: 12px; }
.bt-about-story-panel h2 { color: var(--bt-text-heading); }
.bt-about-story-panel p { margin-bottom: 1rem; }
@media (max-width: 768px) {
    .bt-about-page .bt-bento-4col { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .bt-about-page .bt-bento-4col { grid-template-columns: 1fr; }
}

/* =================================================================
   FOOTER — Proper Layout Desktop + Mobile
   ================================================================= */
.bt-footer { padding: 60px 0 30px; }
.bt-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    align-items: start;
}
.bt-footer-col {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
}
.bt-footer-brand .bt-logo { font-size: 1.4rem; margin-bottom: 12px; display: inline-block; }
.bt-footer-brand p { color: var(--bt-text-muted); font-size: 0.9rem; line-height: 1.7; margin: 0 0 16px 0; }
.bt-footer-social { display: flex; gap: 12px; }
.bt-footer-social a { color: var(--bt-text-muted) !important; font-size: 1.2rem; transition: color 0.3s ease !important; }
.bt-footer-social a:hover { color: var(--bt-gradient-2) !important; }
.bt-footer-col h4 {
    font-size: 1rem; font-weight: 700; margin: 0 0 16px 0;
    color: var(--bt-text-heading); text-shadow: 0 0 10px rgba(108,92,231,0.2);
}
.bt-footer-links {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.bt-footer-links li {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
.bt-footer-links li a,
.bt-footer-col a {
    display: block;
    color: var(--bt-text-muted) !important;
    font-size: 0.9rem;
    padding: 6px 0;
    text-decoration: none !important;
    border-bottom: none !important;
    transition: color 0.3s ease, padding-left 0.3s ease !important;
}
.bt-footer-links li a:hover,
.bt-footer-col a:hover { color: var(--bt-gradient-2) !important; padding-left: 6px; text-decoration: none !important; }
.bt-footer-bottom {
    border-top: 1px solid var(--bt-glass-border);
    padding-top: 24px; text-align: center; margin-top: 16px;
}
.bt-footer-bottom p { color: var(--bt-text-muted); font-size: 0.85rem; margin: 0; }

@media (max-width: 768px) {
    .bt-footer { padding: 40px 0 20px; }
    .bt-footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .bt-footer-col { align-items: flex-start; }
}
@media (max-width: 480px) {
    .bt-footer-grid { grid-template-columns: 1fr; gap: 28px; text-align: left; }
    .bt-footer-col { align-items: flex-start; }
    .bt-footer-brand { text-align: left; }
}

/* =================================================================
   HIDE PAGE TITLES — Full-width Elementor-style display
   ================================================================= */
.bendless-tech-active .entry-title,
.bendless-tech-active .page-title,
.bendless-tech-active .wp-block-post-title,
.bendless-tech-active h1.entry-title,
.bendless-tech-active header.entry-header,
.bendless-tech-active .page-header,
.bendless-tech-active .hentry .entry-title,
.bendless-tech-active article .entry-title {
    display: none !important;
}
/* Remove default content padding/margins for full-width look */
.bendless-tech-active .entry-content,
.bendless-tech-active .page-content,
.bendless-tech-active .site-content .content-area,
.bendless-tech-active .wp-block-post-content {
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
}
.bendless-tech-active .site-content,
.bendless-tech-active .content-area,
.bendless-tech-active #primary,
.bendless-tech-active #content,
.bendless-tech-active main#main {
    padding: 0 !important;
    max-width: 100% !important;
}
/* Remove sidebar space */
.bendless-tech-active .has-sidebar .content-area,
.bendless-tech-active .has-sidebar #primary { width: 100% !important; float: none !important; }

/* =================================================================
   PAGE STYLES
   ================================================================= */
.bt-page-hero { padding-top: 140px; text-align: center; }
.bt-page-hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; letter-spacing: -1px; margin: 16px 0; color: var(--bt-text-heading); text-shadow: 0 0 24px rgba(108, 92, 231, 0.3); }
.bt-page-hero .bt-hero-subtitle { color: var(--bt-text-secondary); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

.bt-policy-content { padding: 40px; max-width: 800px; margin: 0 auto; }
.bt-policy-content h2 { font-size: 1.5rem; margin: 32px 0 16px; display: flex; align-items: center; gap: 12px; color: var(--bt-text-heading); text-shadow: 0 0 12px rgba(108, 92, 231, 0.2); }
.bt-policy-content h2 .iconify { color: var(--bt-gradient-2); }
.bt-policy-content p { color: var(--bt-text-secondary); line-height: 1.8; margin-bottom: 12px; }
.bt-divider { border: none; border-top: 1px solid var(--bt-glass-border); margin: 32px 0; }

/* Brief Builder */
.bt-brief-panel { padding: 48px; text-align: center; max-width: 700px; margin: 0 auto; }
.bt-brief-panel h2 { background: linear-gradient(135deg, var(--bt-gradient-1), var(--bt-gradient-2), var(--bt-gradient-3)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; background-size: 200% 200%; animation: bt-gradientShimmer 3s linear infinite; }
.bt-brief-icon { font-size: 3rem; color: var(--bt-gradient-2); margin-bottom: 16px; display: block; }

/* CTA Panel */
.bt-cta-panel { padding: 60px; text-align: center; position: relative; overflow: hidden; }
.bt-cta-panel h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 800; margin-bottom: 16px; color: var(--bt-text-heading); text-shadow: 0 0 20px rgba(108, 92, 231, 0.25); }
.bt-cta-panel p { color: var(--bt-text-secondary); max-width: 600px; margin: 0 auto 32px; }

/* Service page */
.bt-service-problems ul, .bt-service-solutions ul { list-style: none; padding: 0; }
.bt-service-problems li, .bt-service-solutions li { padding: 10px 0; border-bottom: 1px solid var(--bt-glass-border); color: var(--bt-text-secondary); }

/* Constellation Canvas */
.bt-constellation-bg { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }
.bt-section, .bt-glass-header, .bt-footer { position: relative; z-index: 1; }

/* Scrollbar */
.bendless-tech-active ::-webkit-scrollbar { width: 6px; }
.bendless-tech-active ::-webkit-scrollbar-track { background: var(--bt-bg-primary); }
.bendless-tech-active ::-webkit-scrollbar-thumb { background: var(--bt-gradient-1); border-radius: 3px; }

/* ── BRUTAL Universal underline removal — overrides ALL themes ──── */
.bendless-tech-active a,
.bendless-tech-active a:link,
.bendless-tech-active a:visited,
.bendless-tech-active a:hover,
.bendless-tech-active a:focus,
.bendless-tech-active a:active,
.bendless-tech-active button,
.bendless-tech-active .bt-btn,
.bendless-tech-active [class*="bt-"] a,
.bendless-tech-active [class*="bt-"] a:link,
.bendless-tech-active [class*="bt-"] a:visited,
.bendless-tech-active [class*="bt-"] a:hover,
.bendless-tech-active [class*="bt-"] a:focus,
.bendless-tech-active [class*="bt-"] a:active,
.bendless-tech-active .entry-content a,
.bendless-tech-active .entry-content a:hover,
.bendless-tech-active .page-content a,
.bendless-tech-active .page-content a:hover,
.bendless-tech-active .wp-block-post-content a,
.bendless-tech-active .wp-block-post-content a:hover,
.bendless-tech-active article a,
.bendless-tech-active article a:hover,
.bendless-tech-active main a,
.bendless-tech-active main a:hover,
.bendless-tech-active #content a,
.bendless-tech-active #content a:hover,
.bendless-tech-active .site-content a,
.bendless-tech-active .site-content a:hover {
    text-decoration: none !important;
    -webkit-text-decoration: none !important;
    border-bottom: 0 none transparent !important;
    border-bottom-width: 0 !important;
    border-bottom-style: none !important;
    text-decoration-line: none !important;
    text-decoration-style: solid !important;
    text-decoration-color: transparent !important;
    text-underline-offset: 0 !important;
    text-decoration-thickness: 0 !important;
}
/* Keep box-shadow none except on CTA buttons and FABs */
.bendless-tech-active a:not(.bt-nav-cta):not(.bt-btn-primary):not(.bt-btn-secondary):not(.bt-fab-btn) {
    box-shadow: none !important;
}

/* =================================================================
   FLOATING ACTION BUTTONS (WhatsApp + Call)
   ================================================================= */
.bt-fab {
    position: fixed;
    bottom: 28px;
    z-index: 99999;
}
.bt-fab-left { left: 18px; }
.bt-fab-right { right: 18px; }
.bt-fab-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bt-gradient-1), var(--bt-gradient-2));
    color: #fff !important;
    box-shadow: 0 4px 18px rgba(108, 92, 231, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    text-decoration: none !important;
    border: none !important;
    cursor: pointer;
}
.bt-fab-btn:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 24px rgba(108, 92, 231, 0.5);
    text-decoration: none !important;
    color: #fff !important;
}
.bt-fab-btn .iconify { color: #fff; font-size: 22px; position: relative; z-index: 2; animation: bt-iconPulse 2s ease-in-out infinite; }
@keyframes bt-iconPulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 0 transparent); }
    50%      { transform: scale(1.15); filter: drop-shadow(0 0 5px rgba(255,255,255,0.5)); }
}

/* ── Pulse ring animation ──────────────────────────────────────── */
.bt-fab-pulse {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bt-gradient-1), var(--bt-gradient-2));
    opacity: 0.55;
    z-index: 0;
    animation: bt-fabPulse 1.8s ease-out infinite;
    pointer-events: none;
}
@keyframes bt-fabPulse {
    0%   { transform: scale(1); opacity: 0.55; }
    70%  { transform: scale(1.7); opacity: 0; }
    100% { transform: scale(1.7); opacity: 0; }
}

/* ── Tooltips ──────────────────────────────────────────────────── */
.bt-fab-tooltip {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--bt-glass-medium);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--bt-text-primary);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 6px;
    white-space: nowrap;
    pointer-events: none;
    opacity: 1;
    border: 1px solid var(--bt-glass-border);
}
.bt-fab-tooltip-right { left: calc(100% + 10px); transform: translateY(-50%); }
.bt-fab-tooltip-left  { right: calc(100% + 10px); transform: translateY(-50%); }

/* Mobile: move up a bit if footer is in view */
@media (max-width: 768px) {
    .bt-fab { bottom: 22px; }
    .bt-fab-btn { width: 40px; height: 40px; }
    .bt-fab-btn .iconify { font-size: 20px; }
    .bt-svc-circle-wrap { width: 200px; }
    .bt-svc-circle { width: 60px; height: 60px; }
    .bt-svc-circle .iconify { font-size: 1.6rem; }
    .bt-svc-noodle { width: 55px; }
    .bt-process-steps { padding-left: 20px; }
    .bt-process-step { gap: 16px; }
    .bt-process-circle { width: 40px; height: 40px; min-width: 40px; }
    .bt-process-num { font-size: 0.95rem; }
    .bt-process-noodle-connect { left: 19px; }
}
