/* ============================================================
   BATCH 2 - ARCHETYPE 1: CYBER HUD TECH (Ref 1)
   Studio: FIREBUG MODULAR (Torino)
   Prefix: fbp
   ============================================================ */
:root {
    --fbp-bg: #030712;
    --fbp-surface: #0A1222;
    --fbp-surface-light: #111E36;
    --fbp-border: #1E2E4A;
    --fbp-border-cyan: rgba(0, 229, 255, 0.3);
    --fbp-cyan: #00E5FF;
    --fbp-cyan-glow: rgba(0, 229, 255, 0.25);
    --fbp-text: #F8FAFC;
    --fbp-text-muted: #94A3B8;
    --fbp-font-main: 'Plus Jakarta Sans', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body.fbp-body {
    background-color: var(--fbp-bg);
    color: var(--fbp-text);
    font-family: var(--fbp-font-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.fbp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.fbp-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(3, 7, 18, 0.88);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--fbp-border);
}

.fbp-header-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fbp-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--fbp-text);
}

.fbp-logo-icon {
    font-size: 1.4rem;
    color: var(--fbp-cyan);
}

.fbp-logo-text {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.fbp-nav {
    display: flex;
    gap: 26px;
}

.fbp-nav-link {
    color: var(--fbp-text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.2s;
}

.fbp-nav-link:hover, .fbp-nav-link.active {
    color: var(--fbp-cyan);
}

/* Pill Buttons */
.fbp-btn-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 9999px;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease;
    border: 1px solid transparent;
}

.fbp-btn-pill-cyan {
    background: var(--fbp-cyan);
    color: #030712;
    box-shadow: 0 0 16px var(--fbp-cyan-glow);
}

.fbp-btn-pill-cyan:hover {
    background: #5EEAD4;
    transform: translateY(-2px);
}

.fbp-btn-pill-ghost {
    background: transparent;
    color: var(--fbp-text);
    border-color: var(--fbp-border);
}

.fbp-btn-pill-ghost:hover {
    border-color: var(--fbp-cyan);
    color: var(--fbp-cyan);
}

/* Hero Section (Ref 1) */
.fbp-hero {
    padding: 70px 0 50px;
    position: relative;
    background: radial-gradient(circle at 70% 35%, rgba(0, 229, 255, 0.08) 0%, transparent 60%);
}

.fbp-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.fbp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--fbp-surface-light);
    border: 1px solid var(--fbp-border-cyan);
    padding: 6px 14px;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--fbp-cyan);
    margin-bottom: 20px;
}

.fbp-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--fbp-cyan);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--fbp-cyan);
}

.fbp-hero-title {
    font-size: clamp(2.6rem, 4.5vw, 4.2rem);
    line-height: 1.08;
    font-weight: 800;
    color: var(--fbp-text);
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.fbp-hero-sub {
    font-size: 1.1rem;
    color: var(--fbp-text-muted);
    margin-bottom: 30px;
    max-width: 520px;
}

.fbp-hero-btns {
    display: flex;
    gap: 16px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.fbp-social-row {
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
    color: var(--fbp-text-muted);
}

.fbp-soc-link {
    cursor: default;
}

/* Hero Right HUD Portrait Frame */
.fbp-portrait-hud-wrap {
    position: relative;
    width: 100%;
    max-width: 440px;
    height: 480px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fbp-cyber-globe-glow {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--fbp-cyan) 0%, rgba(0, 229, 255, 0) 70%);
    opacity: 0.2;
    filter: blur(40px);
}

.fbp-portrait-figure {
    width: 260px;
    height: 320px;
    background: linear-gradient(180deg, var(--fbp-surface-light) 0%, var(--fbp-surface) 100%);
    border: 1px solid var(--fbp-border-cyan);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.fbp-engineer-avatar {
    font-size: 6rem;
}

/* Floating Stat Stack */
.fbp-floating-stat-stack {
    position: absolute;
    right: -10px;
    top: 40px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 3;
}

.fbp-float-card {
    background: rgba(10, 18, 34, 0.92);
    backdrop-filter: blur(12px);
    border: 1px solid var(--fbp-border-cyan);
    border-radius: 12px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.fbp-float-icon {
    font-size: 1.2rem;
    color: var(--fbp-cyan);
}

.fbp-float-info strong {
    display: block;
    font-size: 1.1rem;
    line-height: 1;
    color: var(--fbp-text);
}

.fbp-float-info small {
    font-size: 0.7rem;
    color: var(--fbp-text-muted);
}

/* Glowing Code / Audio Box */
.fbp-hud-console-box {
    position: absolute;
    bottom: 20px;
    left: 10px;
    background: rgba(10, 18, 34, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid var(--fbp-border-cyan);
    border-radius: 12px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.fbp-hud-code-icon {
    background: var(--fbp-surface-light);
    color: var(--fbp-cyan);
    padding: 8px 10px;
    border-radius: 8px;
    font-family: monospace;
    font-weight: 800;
}

.fbp-hud-code-text strong {
    display: block;
    font-size: 0.85rem;
    color: var(--fbp-text);
}

.fbp-hud-code-text small {
    font-size: 0.75rem;
    color: var(--fbp-text-muted);
}

/* Card Box Generic */
.fbp-card-box {
    background: var(--fbp-surface);
    border: 1px solid var(--fbp-border);
    border-radius: 18px;
    padding: 32px;
    position: relative;
    transition: border-color 0.25s;
}

.fbp-card-box:hover {
    border-color: var(--fbp-border-cyan);
}

.fbp-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.fbp-card-ico {
    font-size: 1.2rem;
    color: var(--fbp-cyan);
    background: var(--fbp-surface-light);
    padding: 8px 10px;
    border-radius: 8px;
}

.fbp-card-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--fbp-text);
}

/* Section 2: 2-Card Split (Ref 1) */
.fbp-split-cards-sec {
    padding: 40px 0 70px;
}

.fbp-split-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 30px;
}

.fbp-about-p {
    font-size: 0.95rem;
    color: var(--fbp-text-muted);
    margin-bottom: 24px;
}

.fbp-about-meta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 28px;
}

.fbp-meta-item {
    display: flex;
    flex-direction: column;
}

.fbp-meta-lbl {
    font-size: 0.75rem;
    color: var(--fbp-text-muted);
    text-transform: uppercase;
}

.fbp-meta-item strong {
    font-size: 0.9rem;
    color: var(--fbp-text);
}

.fbp-status-available {
    color: #10B981 !important;
}

.fbp-btn-inline {
    color: var(--fbp-cyan);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
}

/* Skills Progress Bars (Ref 1) */
.fbp-skills-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.fbp-skill-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.fbp-skill-bar {
    width: 100%;
    height: 8px;
    background: var(--fbp-surface-light);
    border-radius: 9999px;
    overflow: hidden;
}

.fbp-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #38BDF8, var(--fbp-cyan));
    border-radius: 9999px;
    box-shadow: 0 0 10px var(--fbp-cyan-glow);
}

/* Section 3: Selected Work (Ref 1) */
.fbp-work-sec {
    padding: 60px 0 80px;
}

.fbp-sec-head-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 36px;
}

.fbp-sec-tag {
    display: block;
    color: var(--fbp-cyan);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    margin-bottom: 6px;
}

.fbp-sec-head-title h2, .fbp-sec-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--fbp-text);
    letter-spacing: -0.02em;
}

.fbp-view-all-link {
    color: var(--fbp-text-muted);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
}

.fbp-view-all-link:hover {
    color: var(--fbp-cyan);
}

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

.fbp-work-card {
    background: var(--fbp-surface);
    border: 1px solid var(--fbp-border);
    border-radius: 18px;
    overflow: hidden;
    transition: transform 0.25s, border-color 0.25s;
    display: flex;
    flex-direction: column;
}

.fbp-work-card:hover {
    transform: translateY(-5px);
    border-color: var(--fbp-border-cyan);
}

.fbp-card-preview {
    height: 180px;
    background: #040812;
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.fbp-tag-badge {
    align-self: flex-start;
    background: rgba(0, 229, 255, 0.15);
    color: var(--fbp-cyan);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 9999px;
    border: 1px solid var(--fbp-border-cyan);
}

.fbp-preview-wave {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 40px;
}

.fbp-preview-wave span {
    flex: 1;
    background: linear-gradient(180deg, var(--fbp-cyan), #0F172A);
    border-radius: 2px;
}

.fbp-preview-wave span:nth-child(1) { height: 40%; }
.fbp-preview-wave span:nth-child(2) { height: 85%; }
.fbp-preview-wave span:nth-child(3) { height: 60%; }
.fbp-preview-wave span:nth-child(4) { height: 95%; }
.fbp-preview-wave span:nth-child(5) { height: 75%; }
.fbp-preview-wave span:nth-child(6) { height: 50%; }

.fbp-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
}

.fbp-card-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--fbp-text);
    margin-bottom: 8px;
}

.fbp-card-content p {
    font-size: 0.88rem;
    color: var(--fbp-text-muted);
    margin-bottom: 18px;
}

.fbp-pill-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: auto;
}

.fbp-pill-tags span {
    background: var(--fbp-surface-light);
    color: var(--fbp-text-muted);
    font-size: 0.72rem;
    padding: 4px 10px;
    border-radius: 6px;
}

.fbp-circle-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 38px;
    height: 38px;
    background: var(--fbp-surface-light);
    border: 1px solid var(--fbp-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fbp-text);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.2s;
}

.fbp-circle-btn:hover {
    background: var(--fbp-cyan);
    color: #030712;
}

/* Section 4: 6-Step Connected Process (Ref 1) */
.fbp-process-sec {
    padding: 60px 0 80px;
}

.fbp-process-line-wrap {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-top: 40px;
    position: relative;
}

.fbp-process-line-wrap::before {
    content: '';
    position: absolute;
    top: 26px;
    left: 40px;
    right: 40px;
    height: 2px;
    background: linear-gradient(90deg, #38BDF8, var(--fbp-cyan));
    z-index: 1;
    opacity: 0.4;
}

.fbp-process-step {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 8px;
}

.fbp-step-circle {
    width: 52px;
    height: 52px;
    background: var(--fbp-surface);
    border: 2px solid var(--fbp-cyan);
    border-radius: 50%;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--fbp-cyan);
    box-shadow: 0 0 12px var(--fbp-cyan-glow);
}

.fbp-step-num {
    display: block;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--fbp-cyan);
    margin-bottom: 4px;
}

.fbp-process-step h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--fbp-text);
    margin-bottom: 6px;
}

.fbp-process-step p {
    font-size: 0.78rem;
    color: var(--fbp-text-muted);
    line-height: 1.4;
}

/* Section 5: Reviews vs Stats (Ref 1) */
.fbp-reviews-stats-sec {
    padding: 40px 0 70px;
}

.fbp-reviews-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.fbp-review-content {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.fbp-client-avatar {
    font-size: 3rem;
    background: var(--fbp-surface-light);
    border-radius: 50%;
    padding: 6px;
}

.fbp-client-quote p {
    font-size: 1rem;
    font-style: italic;
    color: var(--fbp-text);
    margin-bottom: 12px;
}

.fbp-client-quote strong {
    display: block;
    font-size: 0.95rem;
    color: var(--fbp-cyan);
}

.fbp-client-quote small {
    font-size: 0.8rem;
    color: var(--fbp-text-muted);
}

.fbp-numbers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.fbp-num-tile {
    background: var(--fbp-surface-light);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
}

.fbp-num-tile strong {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--fbp-cyan);
    display: block;
}

.fbp-num-tile small {
    font-size: 0.8rem;
    color: var(--fbp-text-muted);
}

/* Section 6: Let's Build Something Great (Ref 1) */
.fbp-contact-hero-sec {
    padding: 40px 0 90px;
}

.fbp-contact-card {
    background: linear-gradient(135deg, #0A1428 0%, #0F1F3D 100%);
    border: 1px solid var(--fbp-border-cyan);
    border-radius: 20px;
    padding: 44px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.fbp-contact-card-left h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--fbp-text);
    margin: 8px 0 16px;
}

.fbp-contact-card-left p {
    font-size: 0.95rem;
    color: var(--fbp-text-muted);
    margin-bottom: 28px;
}

.fbp-contact-quick-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.fbp-quick-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--fbp-text);
}

.fbp-quick-item a {
    color: var(--fbp-text);
    text-decoration: none;
}

.fbp-quick-item a:hover {
    color: var(--fbp-cyan);
}

.fbp-q-ico {
    color: var(--fbp-cyan);
    font-size: 1.1rem;
}

.fbp-quick-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.fbp-q-field input, .fbp-q-field select, .fbp-q-field textarea {
    width: 100%;
    background: #030712;
    border: 1px solid var(--fbp-border);
    border-radius: 8px;
    padding: 12px 14px;
    color: var(--fbp-text);
    font-family: inherit;
    font-size: 0.9rem;
}

.fbp-q-field input:focus, .fbp-q-field select:focus, .fbp-q-field textarea:focus {
    outline: none;
    border-color: var(--fbp-cyan);
}

.fbp-q-field-privacy {
    font-size: 0.8rem;
    color: var(--fbp-text-muted);
}

.fbp-q-field-privacy a {
    color: var(--fbp-cyan);
    text-decoration: underline;
}

.fbp-alert-success {
    background: #064E3B;
    border: 1px solid #10B981;
    color: #ECFDF5;
    padding: 14px;
    border-radius: 8px;
    font-size: 0.9rem;
}

/* Inner Pages Layout */
.fbp-page-pad {
    padding: 60px 0 90px;
}

.fbp-page-head {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 50px;
}

.fbp-page-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--fbp-text);
    margin: 8px 0 14px;
}

.fbp-page-desc {
    font-size: 1.05rem;
    color: var(--fbp-text-muted);
}

/* About 3-Col Grid */
.fbp-about-3col-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.fbp-card-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--fbp-cyan);
    display: block;
    margin-bottom: 12px;
}

.fbp-engineer-box {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 30px;
    align-items: center;
}

.fbp-eng-avatar {
    font-size: 4.5rem;
    background: var(--fbp-surface-light);
    border-radius: 16px;
    text-align: center;
    padding: 10px;
}

.fbp-eng-bio {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--fbp-text);
    margin: 10px 0 16px;
}

.fbp-eng-pills {
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
    color: var(--fbp-text-muted);
}

/* Products Filters */
.fbp-filter-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.fbp-pill-btn {
    background: var(--fbp-surface);
    border: 1px solid var(--fbp-border);
    color: var(--fbp-text-muted);
    padding: 8px 20px;
    border-radius: 9999px;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.fbp-pill-btn.active, .fbp-pill-btn:hover {
    background: var(--fbp-cyan);
    color: #030712;
    border-color: var(--fbp-cyan);
}

.fbp-srv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.fbp-srv-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.fbp-srv-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 14px;
}

.fbp-srv-code {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--fbp-cyan);
}

.fbp-srv-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--fbp-text);
}

.fbp-srv-list {
    list-style: none;
    margin: 16px 0 24px;
}

.fbp-srv-list li {
    font-size: 0.85rem;
    color: var(--fbp-text-muted);
    padding: 4px 0;
}

.fbp-srv-list li::before {
    content: '✓';
    color: var(--fbp-cyan);
    margin-right: 8px;
    font-weight: 800;
}

/* Contact Split */
.fbp-contact-split {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 36px;
}

.fbp-contact-lines {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 24px 0;
}

.fbp-c-line {
    display: flex;
    flex-direction: column;
}

.fbp-c-lbl {
    font-size: 0.75rem;
    color: var(--fbp-cyan);
    text-transform: uppercase;
}

.fbp-c-line strong, .fbp-c-line a {
    color: var(--fbp-text);
    font-size: 0.95rem;
    text-decoration: none;
}

.fbp-map-badge {
    background: #040812;
    border: 1px dashed var(--fbp-border-cyan);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.fbp-map-ico {
    font-size: 2rem;
    margin-bottom: 6px;
}

.fbp-booking-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.fbp-form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.fbp-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.fbp-form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--fbp-text);
}

.fbp-form-group input, .fbp-form-group select, .fbp-form-group textarea {
    background: #030712;
    border: 1px solid var(--fbp-border);
    border-radius: 8px;
    padding: 12px 14px;
    color: var(--fbp-text);
    font-family: inherit;
    font-size: 0.92rem;
}

.fbp-form-group input:focus, .fbp-form-group select:focus, .fbp-form-group textarea:focus {
    outline: none;
    border-color: var(--fbp-cyan);
}

.fbp-err-msg {
    display: none;
    color: #EF4444;
    font-size: 0.75rem;
}

.fbp-form-group.has-error .fbp-err-msg, .fbp-form-privacy.has-error .fbp-err-msg {
    display: block;
}

.fbp-form-privacy {
    font-size: 0.85rem;
    color: var(--fbp-text-muted);
}

.fbp-form-privacy a {
    color: var(--fbp-cyan);
    text-decoration: underline;
}

/* Footer */
.fbp-footer {
    background: #02050D;
    border-top: 1px solid var(--fbp-border);
    padding: 60px 0 24px;
}

.fbp-footer-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.fbp-foot-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--fbp-text);
    display: block;
    margin-bottom: 12px;
}

.fbp-foot-brand p {
    font-size: 0.9rem;
    color: var(--fbp-text-muted);
    margin-bottom: 12px;
}

.fbp-foot-addr {
    font-size: 0.8rem;
    line-height: 1.6;
}

.fbp-foot-col h4 {
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--fbp-cyan);
    margin-bottom: 16px;
}

.fbp-foot-col a {
    display: block;
    color: var(--fbp-text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.fbp-foot-col a:hover {
    color: var(--fbp-cyan);
}

.fbp-foot-col p {
    font-size: 0.85rem;
    color: var(--fbp-text-muted);
    margin-bottom: 8px;
}

.fbp-footer-bottom {
    max-width: 1240px;
    margin: 0 auto;
    padding: 24px;
    border-top: 1px solid var(--fbp-border);
    text-align: center;
    font-size: 0.8rem;
    color: var(--fbp-text-muted);
}

/* Cookie Consent Bar */
.fbp-cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(3, 7, 18, 0.96);
    backdrop-filter: blur(16px);
    border-top: 1px solid var(--fbp-border-cyan);
    padding: 16px 24px;
    transform: translateY(100%);
    transition: transform 0.35s ease;
}

.fbp-cookie-bar.show {
    transform: translateY(0);
}

.fbp-cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.fbp-cookie-inner p {
    font-size: 0.85rem;
    color: var(--fbp-text-muted);
}

.fbp-cookie-inner a {
    color: var(--fbp-cyan);
    text-decoration: underline;
}

.fbp-cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .fbp-hero-grid { grid-template-columns: 1fr; }
    .fbp-split-cards-grid { grid-template-columns: 1fr; }
    .fbp-work-grid { grid-template-columns: 1fr; }
    .fbp-process-line-wrap { grid-template-columns: repeat(3, 1fr); row-gap: 24px; }
    .fbp-process-line-wrap::before { display: none; }
    .fbp-reviews-stats-grid { grid-template-columns: 1fr; }
    .fbp-contact-card { grid-template-columns: 1fr; }
    .fbp-about-3col-grid { grid-template-columns: 1fr; }
    .fbp-srv-grid { grid-template-columns: 1fr; }
    .fbp-contact-split { grid-template-columns: 1fr; }
    .fbp-footer-container { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
    .fbp-process-line-wrap { grid-template-columns: 1fr; }
    .fbp-footer-container { grid-template-columns: 1fr; }
    .fbp-form-row-2 { grid-template-columns: 1fr; }
    .fbp-nav { display: none; }
}

/* ============================================================
   SHARED LEGAL DOCUMENTS STYLING (.legal-main-container)
   ============================================================ */
.legal-main-container {
    max-width: 960px;
    margin: 60px auto 100px;
    padding: 0 24px;
}
.legal-doc-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding-bottom: 24px;
    margin-bottom: 36px;
}
.legal-doc-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #38BDF8;
    margin-bottom: 10px;
}
.legal-doc-title {
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 800;
    margin-bottom: 10px;
    color: #FFFFFF;
}
.legal-doc-subtitle {
    font-size: 14px;
    color: #94A3B8;
    line-height: 1.6;
}
.legal-section-block {
    margin-bottom: 36px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.legal-section-block h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #FFFFFF;
}
.legal-section-block p, .legal-section-block li {
    font-size: 14px;
    color: #94A3B8;
    line-height: 1.7;
    margin-bottom: 12px;
}
.legal-section-block ul {
    margin-left: 24px;
    list-style: disc;
}
.legal-entity-box, .legal-notice-box, .consent-status-box {
    background: rgba(255, 255, 255, 0.04);
    border-left: 4px solid #38BDF8;
    border-radius: 4px;
    padding: 18px 22px;
    margin: 18px 0;
}
.legal-table-responsive {
    overflow-x: auto;
    margin: 18px 0;
}
.legal-data-table {
    width: 100%;
    border-collapse: collapse;
}
.legal-data-table th, .legal-data-table td {
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    text-align: left;
}
.legal-data-table th {
    background: rgba(255, 255, 255, 0.06);
    color: #FFFFFF;
    font-weight: 600;
}
.legal-data-table td {
    color: #94A3B8;
}
#consent-status-container {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 18px;
    margin: 18px 0;
}