/*
=====================================================
PBBITS - PradoBraz Bit Solutions
Copyright © PBBITS. Todos os direitos reservados.
Website: https://www.pbbits.com
=====================================================
*/

/* =====================================================
01. ROOT
===================================================== */

:root {
    --pb-blue: #0066ff;
    --pb-red: #ff3d3d;
    --pb-yellow: #ffc107;

    --pb-black: #0d1117;
    --pb-dark: #111827;
    --pb-white: #ffffff;
    --pb-gray: #b0b8c5;
    --pb-muted: #7d8796;

    --pb-card: rgba(255, 255, 255, 0.06);
    --pb-card-border: rgba(255, 255, 255, 0.12);

    --pb-gradient: linear-gradient(135deg, #0066ff 0%, #ff3d3d 100%);
    --pb-gradient-soft:
        radial-gradient(circle at top left, rgba(0, 102, 255, 0.25), transparent 35%),
        radial-gradient(circle at bottom right, rgba(255, 61, 61, 0.18), transparent 40%);

    --font-title: 'Montserrat', sans-serif;
    --font-text: 'Inter', sans-serif;

    --navbar-height: 76px;

    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
}

/* =====================================================
02. BASE
===================================================== */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-text);
    color: var(--pb-white);
    background: var(--pb-gradient-soft), var(--pb-black);
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 80%);
    z-index: -1;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.25s ease;
}

a:hover {
    color: var(--pb-yellow);
}

img {
    max-width: 100%;
    height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-title);
    font-weight: 800;
    color: var(--pb-white);
    letter-spacing: -0.03em;
}

p {
    color: var(--pb-gray);
    line-height: 1.7;
}

::selection {
    background: var(--pb-blue);
    color: var(--pb-white);
}

/* =====================================================
03. UTILITIES
===================================================== */

.text-gradient {
    background: var(--pb-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-padding {
    padding: 80px 0;
}

.glass-card {
    background: var(--pb-card);
    border: 1px solid var(--pb-card-border);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(18px);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    margin-bottom: 18px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(0, 102, 255, 0.12);
    border: 1px solid rgba(0, 102, 255, 0.3);
    color: var(--pb-yellow);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* =====================================================
04. BUTTONS
===================================================== */

.btn-pbbits {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 24px;
    border: 0 !important;
    border-radius: 999px;
    background: var(--pb-gradient);
    color: var(--pb-white) !important;
    font-weight: 700;
    font-size: 0.92rem;
    box-shadow: 0 12px 34px rgba(0, 102, 255, 0.35) !important;
}

.btn-pbbits:hover,
.btn-pbbits:focus,
.btn-pbbits:active {
    transform: translateY(-2px);
    border: 0 !important;
    outline: 0 !important;
    color: var(--pb-white) !important;
    box-shadow: 0 16px 44px rgba(255, 61, 61, 0.28) !important;
}

.btn-pbbits-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 999px;
    border: 1px solid var(--pb-card-border);
    color: var(--pb-white);
    background: rgba(255, 255, 255, 0.04);
    font-weight: 700;
}

.btn-pbbits-outline:hover {
    border-color: var(--pb-blue);
    color: var(--pb-white);
    background: rgba(0, 102, 255, 0.12);
}

/* =====================================================
05. NAVBAR
===================================================== */

.fb-navbar {
    min-height: 76px;
    padding: 12px 0;
    background: transparent;
    backdrop-filter: none;
    border-bottom: 1px solid transparent;
    transition:
        min-height .30s ease,
        padding .30s ease,
        background .30s ease,
        box-shadow .30s ease,
        border-color .30s ease,
        backdrop-filter .30s ease;
}

.fb-navbar.scrolled {
    min-height: 68px;
    padding: 7px 0;
    background: rgba(10, 18, 32, 0.82);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 14px 44px rgba(0, 0, 0, 0.22),
        0 0 40px rgba(0, 102, 255, 0.08);
}

.brand-logo {
    width: 135px;
    height: auto;
    display: block;
    object-fit: contain;
    transition: width .30s ease, transform .30s ease;
}

.fb-navbar.scrolled .brand-logo {
    width: 120px;
}

.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 12px;
    padding: 8px 10px;
    background: rgba(255, 255, 255, 0.05);
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    filter: invert(1);
}

.navbar-nav {
    padding: 18px 0;
}

.fb-navbar .nav-link {
    position: relative;
    color: var(--pb-gray) !important;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 10px 0 !important;
}

.fb-navbar .nav-link:hover,
.fb-navbar .nav-link.active {
    color: var(--pb-white) !important;
}

.fb-navbar .nav-link.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 4px;
    width: 28px;
    height: 3px;
    border-radius: 99px;
    background: var(--pb-yellow);
    box-shadow: 0 0 14px rgba(255, 193, 7, 0.55);
}

.fb-navbar .btn-pbbits {
    min-height: 44px;
    padding: 0 24px;
    font-size: 0.9rem;
}

.fb-navbar.scrolled .btn-pbbits {
    min-height: 40px;
    padding: 0 22px;
}

.dropdown-menu {
    background: rgba(17, 24, 39, 0.98);
    border: 1px solid var(--pb-card-border);
    border-radius: 16px;
    padding: 8px;
}

.dropdown-item {
    color: var(--pb-gray);
    border-radius: 10px;
    font-weight: 600;
}

.dropdown-item:hover {
    background: rgba(0, 102, 255, 0.12);
    color: var(--pb-white);
}

/* =====================================================
06. FORMS
===================================================== */

label {
    color: var(--pb-white);
    font-weight: 600;
    margin-bottom: 8px;
}

.form-control,
.form-select {
    min-height: 50px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--pb-card-border);
    border-radius: 14px;
    color: var(--pb-white);
}

.form-control:focus,
.form-select:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--pb-blue);
    color: var(--pb-white);
    box-shadow: 0 0 0 0.25rem rgba(0, 102, 255, 0.18);
}

.form-control::placeholder {
    color: rgba(176, 184, 197, 0.65);
}

/* =====================================================
07. HOMEPAGE
===================================================== */

.hero-section {
    position: relative;
    min-height: 100vh;
    padding-top: var(--navbar-height);
    overflow: hidden;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    margin-bottom: 18px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(0, 102, 255, 0.12);
    border: 1px solid rgba(0, 102, 255, 0.3);
    color: var(--pb-yellow);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero-title {
    max-width: 780px;
    font-size: clamp(2.3rem, 8vw, 4.8rem);
    line-height: 1.02;
    margin-bottom: 22px;
}

.hero-text {
    max-width: 650px;
    font-size: 1.05rem;
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hero-panel {
    padding: 18px;
}

.hero-panel-header {
    display: flex;
    gap: 8px;
    margin-bottom: 22px;
}

.hero-panel-header span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--pb-blue);
}

.hero-panel-header span:nth-child(2) {
    background: var(--pb-yellow);
}

.hero-panel-header span:nth-child(3) {
    background: var(--pb-red);
}

.hero-dashboard {
    padding: 16px;
}

.dashboard-line {
    height: 12px;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.12);
    margin-bottom: 12px;
}

.mini-card,
.stat-card {
    min-height: 110px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--pb-card-border);
}

.mini-card i {
    display: block;
    color: var(--pb-yellow);
    font-size: 1.7rem;
    margin-bottom: 12px;
}

.mini-card strong {
    color: var(--pb-white);
}

.section-heading h2,
.experience-box h2,
.cta-box h2 {
    font-size: clamp(2rem, 5vw, 3.2rem);
}

.section-heading p {
    max-width: 720px;
    margin: 0 auto;
}

.service-card {
    height: 100%;
    padding: 28px;
}

.service-card i {
    display: inline-flex;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border-radius: 16px;
    background: var(--pb-gradient);
    color: var(--pb-white);
    font-size: 1.5rem;
}

.service-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.service-card p {
    margin: 0;
    font-size: 0.95rem;
}

.experience-box,
.cta-box {
    padding: 34px 24px;
}

.stat-card strong {
    display: block;
    color: var(--pb-white);
    font-size: 2rem;
    font-family: var(--font-title);
}

.stat-card span {
    color: var(--pb-gray);
    font-size: 0.92rem;
}

.cta-box {
    max-width: 980px;
    margin: 0 auto;
}

.cta-box p {
    max-width: 650px;
    margin: 0 auto 28px;
}

/* =====================================================
HERO CAROUSEL
===================================================== */
.hero-carousel {
    position: relative;
    width: min(100%, 560px);
    margin-left: auto;
    aspect-ratio: 1.34 / 1;
    padding: 10px;
    overflow: hidden;
    border-radius: 32px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
        rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-carousel::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(0, 102, 255, .65), rgba(244, 196, 0, .35), rgba(255, 48, 89, .45));
    z-index: -1;
    opacity: .45;
    filter: blur(14px);
}

.hero-image {
    position: absolute;
    inset: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    object-position: center;
    border-radius: 24px;
    opacity: 0;
    transform: scale(0.985);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero-image.active {
    opacity: 1;
    transform: scale(1);
}

.hero-carousel-dots {
    position: absolute;
    left: 50%;
    bottom: 22px;
    z-index: 5;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(8, 11, 16, 0.45);
    backdrop-filter: blur(10px);
}

.hero-carousel-dots button {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
}

.hero-carousel-dots button.active {
    width: 24px;
    background: var(--pb-yellow);
}

/* =====================================================
08. INTERNAL PAGES
===================================================== */

.page-header {
    padding-top: 160px;
    padding-bottom: 80px;
}

.page-header h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
}

.page-header p {
    max-width: 750px;
}

/* =====================================================
09. FOOTER
===================================================== */

.pbbits-footer {
    position: relative;
    padding: 70px 0 24px;
    background:
        radial-gradient(circle at top left, rgba(0, 102, 255, 0.18), transparent 35%),
        #080b10;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    width: 150px;
    height: auto;
}

.footer-text {
    max-width: 420px;
    margin-bottom: 18px;
}

.footer-slogan {
    color: var(--pb-white);
    font-weight: 800;
    line-height: 1.4;
}

.pbbits-footer h6 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--pb-white);
    margin-bottom: 18px;
}

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

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
    color: var(--pb-gray);
    font-size: 0.95rem;
}

.footer-links a,
.footer-contact a {
    color: var(--pb-gray);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--pb-yellow);
}

.footer-contact i {
    color: var(--pb-blue);
    margin-right: 8px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--pb-card-border);
    color: var(--pb-white);
}

.footer-social a:hover {
    background: var(--pb-gradient);
    color: var(--pb-white);
    transform: translateY(-2px);
}

.footer-line {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 38px 0 20px;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.88rem;
    color: var(--pb-muted);
}

.footer-cta {
    max-width: 760px;
    margin: 0 auto 40px;
}

.footer-cta h4 {
    color: var(--pb-white);
    font-weight: 800;
    margin-bottom: 12px;
}

.footer-cta p {
    color: var(--pb-gray);
    margin-bottom: 24px;
}

.footer-newsletter-text {
    color: var(--pb-gray);
    margin-bottom: 18px;
}

.footer-newsletter-form {
    display: grid;
    gap: 12px;
}

.footer-newsletter-form .form-control {
    min-height: 48px;
}

.footer-newsletter-consent {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: var(--pb-gray);
    font-size: .86rem;
    line-height: 1.5;
}

.footer-newsletter-consent input {
    margin-top: 4px;
    accent-color: var(--pb-blue);
}

/* =====================================================
12. SERVICE CARDS
===================================================== */

.service-card {

    position: relative;

    overflow: hidden;

    height: 100%;

    padding: 34px;

    border-radius: 26px;

    color: inherit;

    transition:
        transform .35s ease,
        background .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;

}

.service-card::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: linear-gradient(90deg,
            var(--pb-blue),
            var(--pb-yellow),
            #ff4d5a);

    transform: scaleX(0);

    transform-origin: left;

    transition: transform .35s ease;

}

.service-card::after {

    content: "";

    position: absolute;

    top: -100%;

    left: -100%;

    width: 220%;

    height: 220%;

    background: linear-gradient(115deg,
            transparent 40%,
            rgba(255, 255, 255, .05) 50%,
            transparent 60%);

    opacity: 0;

    transition:
        opacity .35s ease,
        transform .7s ease;

}

.service-card:hover::after {

    opacity: 1;

    transform: translate(15%, 15%);

}

.service-card i {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    width: 54px;

    height: 54px;

    border-radius: 18px;

    background: linear-gradient(135deg,
            var(--pb-blue),
            #ff4d5a);

    color: #fff;

    font-size: 1.7rem;

    margin-bottom: 24px;

    transition:
        transform .35s ease,
        box-shadow .35s ease;

}

.service-card h3 {

    transition: color .35s ease;

}

.service-card:hover {

    transform: translateY(-10px);

    background: rgba(30, 36, 46, .95);

    border-color: rgba(0, 102, 255, .35);

    color: inherit;

    text-decoration: none;

    box-shadow:

        0 22px 60px rgba(0, 0, 0, .30),

        0 0 35px rgba(0, 102, 255, .18);

}

.service-card:hover::before {

    transform: scaleX(1);

}

.service-card:hover i {

    transform: scale(1.08);

    box-shadow:

        0 0 24px rgba(0, 102, 255, .45);

}

.service-card:hover h3 {

    color: var(--pb-white);

}

.service-link {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: 28px;

    font-weight: 700;

    font-size: .92rem;

    color: var(--pb-white);

    opacity: 0;

    transform: translateY(12px);

    transition:
        opacity .30s ease,
        transform .30s ease,
        color .30s ease;

}

.service-link i {

    margin: 0;

    width: auto;

    height: auto;

    background: transparent;

    font-size: .95rem;

    color: var(--pb-yellow);

    transform: translateX(0);

    transition: transform .30s ease;

}

.service-card:hover .service-link {

    opacity: 1;

    transform: translateY(0);

}

.service-card:hover .service-link i {

    transform: translateX(6px);

}

/* =====================================================
ABOUT PAGE
===================================================== */

.about-header {
    background:
        radial-gradient(circle at top left, rgba(0, 102, 255, 0.22), transparent 35%),
        radial-gradient(circle at bottom right, rgba(255, 61, 61, 0.14), transparent 40%);
}

.about-content h2 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    margin-bottom: 22px;
}

.about-card {
    padding: 34px 24px;
}

.about-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    background: var(--pb-gradient);
    color: var(--pb-white);
    font-size: 1.8rem;
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 14px;
}

.about-mini-stat {
    padding: 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--pb-card-border);
    height: 100%;
}

.about-mini-stat strong {
    display: block;
    font-family: var(--font-title);
    color: var(--pb-white);
    font-size: 1.8rem;
    line-height: 1;
    margin-bottom: 8px;
}

.about-mini-stat span {
    color: var(--pb-gray);
    font-size: 0.92rem;
}

.about-values-section {
    background:
        radial-gradient(circle at center, rgba(0, 102, 255, 0.08), transparent 45%);
}

.value-card {
    height: 100%;
    padding: 28px;
}

.value-card i {
    display: inline-flex;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border-radius: 16px;
    background: rgba(0, 102, 255, 0.14);
    color: var(--pb-yellow);
    font-size: 1.45rem;
}

.value-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.value-card p {
    margin: 0;
    font-size: 0.95rem;
}

/* =====================================================
CONSULTING PAGE
===================================================== */

.consulting-header {
    background:
        radial-gradient(circle at top left, rgba(0, 102, 255, 0.22), transparent 35%),
        radial-gradient(circle at bottom right, rgba(255, 193, 7, 0.10), transparent 40%);
}

.consulting-card {
    height: 100%;
    padding: 28px;
}

.consulting-card i {
    display: inline-flex;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border-radius: 16px;
    background: rgba(0, 102, 255, 0.14);
    color: var(--pb-yellow);
    font-size: 1.45rem;
}

.consulting-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.consulting-card p {
    margin: 0;
    font-size: 0.95rem;
}

.consulting-process {
    padding: 34px 24px;
}

.process-step {
    height: 100%;
    padding: 24px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid var(--pb-card-border);
}

.process-step strong {
    display: inline-flex;
    margin-bottom: 18px;
    font-family: var(--font-title);
    font-size: 1.8rem;
    color: var(--pb-yellow);
}

.process-step h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.process-step p {
    margin: 0;
    font-size: 0.95rem;
}

/* =====================================================
DIGITAL PAGE
===================================================== */

.digital-header {
    background:
        radial-gradient(circle at top left, rgba(0, 102, 255, 0.22), transparent 35%),
        radial-gradient(circle at bottom right, rgba(255, 61, 61, 0.14), transparent 40%);
}

.digital-card {
    height: 100%;
    padding: 28px;
}

.digital-card i {
    display: inline-flex;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border-radius: 16px;
    background: rgba(0, 102, 255, 0.14);
    color: var(--pb-yellow);
    font-size: 1.45rem;
}

.digital-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.digital-card p {
    margin: 0;
    font-size: 0.95rem;
}

.digital-feature {
    padding: 34px 24px;
}

.digital-feature h2 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    margin-bottom: 18px;
}

.digital-stack {
    display: grid;
    gap: 14px;
}

.stack-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid var(--pb-card-border);
}

.stack-item span {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    background: var(--pb-gradient);
    color: var(--pb-white);
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 0.9rem;
}

.stack-item strong {
    color: var(--pb-white);
    font-size: 1rem;
}

/* =====================================================
CONTACT PAGE
===================================================== */

.contact-header {
    background:
        radial-gradient(circle at top left, rgba(0, 102, 255, 0.22), transparent 35%),
        radial-gradient(circle at bottom right, rgba(255, 193, 7, 0.10), transparent 40%);
}

.contact-info,
.contact-form-box {
    height: 100%;
    padding: 34px 24px;
}

.contact-info h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 18px;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 28px 0 0;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    color: var(--pb-gray);
}

.contact-list i {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    background: rgba(0, 102, 255, 0.14);
    color: var(--pb-yellow);
    font-size: 1.2rem;
}

.contact-form-box textarea {
    resize: vertical;
    min-height: 150px;
}

.form-response {
    display: none;
    margin-top: 8px;
    padding: 14px 16px;
    border-radius: 14px;
    font-weight: 600;
}

.form-response.success {
    display: block;
    color: #d1fae5;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.28);
}

.form-response.error {
    display: block;
    color: #fee2e2;
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.28);
}

.contact-section {
    padding-top: 70px;
}

.contact-form-box {
    position: relative;
    z-index: 2;
}

.form-select {
    color: var(--pb-white);
}

.form-select option {
    background: #111827;
    color: #ffffff;
}

.iti {
    width: 100%;
}

.iti__country-list {
    background: #111827;
    border: 1px solid var(--pb-card-border);
    color: #ffffff;
}

.iti__country:hover,
.iti__country.iti__highlight {
    background: rgba(0, 102, 255, 0.22);
}


/* =====================================================
LOADING OVERLAY
===================================================== */

.loading-overlay {

    position: fixed;

    inset: 0;

    background: rgba(8, 12, 20, .82);

    backdrop-filter: blur(8px);

    z-index: 99999;

    display: flex;

    align-items: center;

    justify-content: center;

    opacity: 0;

    visibility: hidden;

    transition: .25s;

}

.loading-overlay.show {

    opacity: 1;

    visibility: visible;

}

.loading-box {

    text-align: center;

}

.loading-box h5 {

    color: #fff;

    margin-top: 24px;

    font-weight: 700;

}

.loading-box p {

    color: rgba(255, 255, 255, .70);

    margin-top: 8px;

}

.loading-spinner {

    width: 72px;

    height: 72px;

    border-radius: 50%;

    border: 4px solid rgba(255, 255, 255, .12);

    border-top: 4px solid #0d6efd;

    border-right: 4px solid #f4c400;

    animation: pbbitsSpin 1s linear infinite;

}

@keyframes pbbitsSpin {

    to {

        transform: rotate(360deg);

    }

}

/* =====================================================
HOME PREMIUM SECTIONS
===================================================== */

.work-section {
    background:
        radial-gradient(circle at top left, rgba(0, 102, 255, 0.10), transparent 35%),
        radial-gradient(circle at bottom right, rgba(255, 193, 7, 0.08), transparent 40%);
}

.work-steps {
    display: grid;
    gap: 20px;
}

.work-step {
    position: relative;
    height: 100%;
    padding: 30px;
    overflow: hidden;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.work-step:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 102, 255, .35);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .32);
}

.work-step span {
    display: block;
    font-family: var(--font-title);
    font-size: 2.4rem;
    font-weight: 800;
    color: rgba(255, 255, 255, .12);
    margin-bottom: 18px;
}

.work-step i {
    display: inline-flex;
    width: 54px;
    height: 54px;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    margin-bottom: 22px;
    background: var(--pb-gradient);
    color: var(--pb-white);
    font-size: 1.5rem;
}

.work-step h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.work-step p {
    margin: 0;
    font-size: .95rem;
}

.tech-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.tech-badges span {
    padding: 14px 20px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--pb-card-border);
    color: var(--pb-white);
    font-weight: 700;
    transition: transform .3s ease, background .3s ease, box-shadow .3s ease;
}

.tech-badges span:hover {
    transform: translateY(-5px) scale(1.03);
    background: rgba(0, 102, 255, .16);
    box-shadow: 0 18px 40px rgba(0, 102, 255, .16);
}

.why-box {
    padding: 34px 24px;
}

.why-box h2 {
    font-size: clamp(2rem, 5vw, 3.1rem);
    margin-bottom: 18px;
}

.why-list {
    display: grid;
    gap: 14px;
}

.why-list div {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .055);
    border: 1px solid var(--pb-card-border);
    color: var(--pb-white);
    font-weight: 700;
}

.why-list i {
    color: var(--pb-yellow);
    font-size: 1.3rem;
}

/* =====================================================
CASES PAGE
===================================================== */

.cases-header {
    background:
        radial-gradient(circle at top left, rgba(0, 102, 255, 0.18), transparent 35%),
        radial-gradient(circle at bottom right, rgba(244, 196, 0, 0.10), transparent 40%);
}

.cases-section {
    padding-top: 70px;
}

.case-card {
    height: 100%;
    padding: 32px 26px;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.case-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 102, 255, .35);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .32);
}

.case-tag {
    display: inline-flex;
    padding: 8px 14px;
    border-radius: 999px;
    margin-bottom: 20px;
    color: var(--pb-yellow);
    background: rgba(0, 102, 255, .14);
    border: 1px solid rgba(0, 102, 255, .35);
    font-size: .78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.case-card h3 {
    font-size: 1.5rem;
    margin-bottom: 14px;
}

.case-card p {
    color: var(--pb-gray);
}

.case-card ul {
    padding: 0;
    margin: 24px 0;
    list-style: none;
}

.case-card ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: var(--pb-white);
    font-weight: 600;
}

.case-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--pb-yellow);
    font-weight: 800;
}

.case-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
}

.case-tech span {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--pb-card-border);
    color: var(--pb-gray);
    font-size: .82rem;
    font-weight: 700;
}

/* =====================================================
CASES INDICATORS
===================================================== */

.cases-indicators-section {
    padding: 0 0 40px;
    margin-top: -35px;
    position: relative;
    z-index: 2;
}

.cases-indicators {
    padding: 26px;
}

.cases-indicators i {
    display: block;
    color: var(--pb-yellow);
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.cases-indicators strong {
    color: var(--pb-white);
    font-weight: 800;
}

/* =====================================================
LEGAL PAGES
===================================================== */

.legal-header {
    background:
        radial-gradient(circle at top left, rgba(0, 102, 255, 0.18), transparent 35%),
        radial-gradient(circle at bottom right, rgba(244, 196, 0, 0.10), transparent 40%);
}

.legal-section {
    padding-top: 70px;
}

.legal-box {
    max-width: 980px;
    margin: 0 auto;
    padding: 34px 24px;
}

.legal-box h2 {
    color: var(--pb-white);
    font-size: 1.35rem;
    margin-top: 34px;
    margin-bottom: 14px;
}

.legal-box h2:first-child {
    margin-top: 0;
}

.legal-box p {
    color: var(--pb-gray);
    line-height: 1.8;
}

.legal-updated {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--pb-card-border);
    font-size: .9rem;
}

/* =====================================================
COOKIE CONSENT
===================================================== */

.cookie-locked {
    overflow: hidden;
}

.cookie-overlay {
    position: fixed;
    inset: 0;
    background: rgba(8, 12, 20, .78);
    backdrop-filter: blur(8px);
    z-index: 99990;
    opacity: 0;
    visibility: hidden;
    transition: .25s ease;
}

.cookie-overlay.show {
    opacity: 1;
    visibility: visible;
}

.cookie-panel {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 24px;
    z-index: 99999;
    display: flex;
    justify-content: center;
    padding: 0 16px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: .25s ease;
}

.cookie-panel.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cookie-box {
    width: min(760px, 100%);
    padding: 28px;
}

.cookie-box h4 {
    color: var(--pb-white);
    margin-bottom: 12px;
}

.cookie-box p {
    color: var(--pb-gray);
    margin-bottom: 20px;
}

.cookie-settings {
    display: none;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 20px 0;
}

.cookie-settings.show {
    display: grid;
}

.cookie-settings label {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .06);
    color: var(--pb-white);
    font-weight: 600;
}

.cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.cookie-save {
    display: none;
}

.cookie-settings.show~.cookie-actions .cookie-save {
    display: inline-flex;
}

.cookie-link {
    display: inline-block;
    margin-top: 18px;
    color: var(--pb-yellow);
    font-weight: 700;
    text-decoration: none;
}

/* HERO TECH BACKGROUND */

.hero-tech {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.hero-tech::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    background:
        linear-gradient(90deg, transparent 0%, rgba(0, 102, 255, .10) 48%, rgba(0, 212, 255, .20) 50%, rgba(0, 102, 255, .10) 52%, transparent 100%);
    width: 28%;
    transform: skewX(-18deg);
    left: -35%;
    opacity: .45;
    filter: blur(18px);
    animation: heroScan 18s ease-in-out infinite;
}

@keyframes heroScan {
    0% {
        left: -35%;
        opacity: 0;
    }

    18% {
        opacity: .35;
    }

    50% {
        left: 110%;
        opacity: .25;
    }

    100% {
        left: 110%;
        opacity: 0;
    }
}

.hero-tech .container {
    position: relative;
    z-index: 5;
}

.hero-grid {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image:
        linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0, 0, 0, .25), transparent);
    opacity: .55;
}

.hero-glow {
    position: absolute;
    z-index: 2;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .35;
    pointer-events: none;
}

.hero-glow-blue {
    top: 12%;
    left: -160px;
    background: rgba(0, 102, 255, .55);
    animation: heroGlowMove 10s ease-in-out infinite alternate;
}

.hero-glow-yellow {
    right: -180px;
    bottom: 12%;
    background: rgba(244, 196, 0, .32);
    animation: heroGlowMove 12s ease-in-out infinite alternate-reverse;
}

.hero-rays {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
}

.hero-rays::before,
.hero-rays::after {
    content: "";
    position: absolute;
    width: 1200px;
    height: 1200px;
    border-radius: 50%;
    border: 1px solid rgba(0, 153, 255, .14);
    box-shadow:
        0 0 60px rgba(0, 102, 255, .18),
        inset 0 0 60px rgba(0, 102, 255, .10);
    opacity: .55;
}

.hero-rays::before {
    right: -420px;
    top: -220px;
    animation: heroOrbit 34s linear infinite;
}

.hero-rays::after {
    left: -520px;
    bottom: -620px;
    border-color: rgba(244, 196, 0, .12);
    box-shadow:
        0 0 70px rgba(244, 196, 0, .12),
        inset 0 0 60px rgba(244, 196, 0, .08);
    animation: heroOrbit 46s linear infinite reverse;
}

@keyframes heroOrbit {
    from {
        transform: rotate(0deg) scale(1);
    }

    to {
        transform: rotate(360deg) scale(1.04);
    }
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    overflow: hidden;
}

.hero-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(0, 153, 255, .9);
    box-shadow: 0 0 18px rgba(0, 153, 255, .9);
    animation: particleFloat linear infinite;
}

@keyframes heroRaysMove {
    from {
        transform: translateX(-8%) translateY(0);
    }

    to {
        transform: translateX(8%) translateY(4%);
    }
}

@keyframes heroGlowMove {
    from {
        transform: translate3d(0, 0, 0) scale(1);
    }

    to {
        transform: translate3d(80px, 40px, 0) scale(1.12);
    }
}

@keyframes particleFloat {
    from {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    85% {
        opacity: 1;
    }

    to {
        transform: translateY(-120px) translateX(60px);
        opacity: 0;
    }
}

.newsletter-result {
    max-width: 860px;
    margin: 0 auto;
    padding: 54px 28px;
}

.newsletter-result-icon {
    width: 92px;
    height: 92px;
    margin: 0 auto 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 3rem;
    animation: newsletterPulse 1.8s ease-in-out infinite;
}

.newsletter-result-icon.success {
    color: #10b981;
    background: rgba(16, 185, 129, .14);
    box-shadow: 0 0 40px rgba(16, 185, 129, .25);
}

.newsletter-result-icon.error {
    color: #f59e0b;
    background: rgba(245, 158, 11, .14);
    box-shadow: 0 0 40px rgba(245, 158, 11, .22);
}

.newsletter-result h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    margin-bottom: 18px;
}

.newsletter-result p {
    max-width: 640px;
    margin: 0 auto;
}

@keyframes newsletterPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.06);
    }
}

/* =====================================================
10. RESPONSIVE
===================================================== */

/* >= 576px */
@media (min-width: 576px) {

    .fb-navbar {

        padding-top: 14px;

        padding-bottom: 14px;

    }

    .brand-logo {
        width: 175px;
    }

    .fb-navbar.scrolled .brand-logo {
        width: 135px;
    }

    .hero-actions {
        flex-direction: row;
        align-items: center;
    }

    .section-padding {
        padding: 90px 0;
    }
}

/* >= 768px */
@media (min-width: 768px) {

    .footer-bottom {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

/* >= 992px */
@media (min-width: 992px) {

    .brand-logo {
        width: 180px;
    }

    .fb-navbar.scrolled .brand-logo {
        width: 150px;
    }

    .navbar-nav {
        padding: 0;
    }

    .fb-navbar .nav-link {
        padding: 8px 12px !important;
    }

    .fb-navbar .nav-link.active::after {
        left: 12px;
    }

    .hero-text {
        font-size: 1.18rem;
    }

    .hero-carousel {
        width: min(115%, 620px);
        transform: translateX(34px);
    }

    .experience-box,
    .cta-box {
        padding: 54px;
    }

    .section-padding {
        padding: 110px 0;
    }

    .page-header {
        padding-top: 190px;
        padding-bottom: 110px;
    }

    .about-card {
        padding: 44px;
    }

    .consulting-process {
        padding: 54px;
    }

    .digital-feature {
        padding: 54px;
    }

    .contact-info,
    .contact-form-box {
        padding: 44px;
    }

    .work-steps {
        grid-template-columns: repeat(5, 1fr);
    }

    .why-box {
        padding: 54px;
    }
}

/* >= 1200px */
@media (min-width: 1200px) {

    .container {
        max-width: 1180px;
    }
}

/* <= 991.98px */
@media (max-width: 991.98px) {

    .hero-carousel {
        width: min(100%, 520px);
        margin: 0 auto;
        transform: none;
    }

    .hero-rays {
        opacity: .25;
    }

    .hero-glow {
        width: 360px;
        height: 360px;
    }

    .hero-grid {
        background-size: 42px 42px;
    }

    .hero-rays::before,
    .hero-rays::after {
        width: 760px;
        height: 760px;
        opacity: .35;
    }

    .hero-tech::before {
        opacity: .25;
        animation-duration: 24s;
    }
}

/* <= 575.98px */
@media (max-width: 575.98px) {
    .hero-particle {
        width: 3px;
        height: 3px;
    }

    .hero-rays {
        opacity: .18;
    }

    .hero-rays::before,
    .hero-rays::after {
        opacity: .22;
    }

    .hero-tech::before {
        display: none;
    }
}