.gb-brand-wrapper {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #E2E8F0;
    padding: 80px 24px;
    border-radius: 24px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 100px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 215, 0, 0.12);
}

.gb-brand-wrapper * {
    box-sizing: border-box;
}

/* CYBER PARTICLES BACKGROUND ANIMATION */
.gb-cyber-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}
.gb-cyber-particles span {
    position: absolute;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(10px);
    animation: floatParticle 12s infinite linear;
}
.gb-cyber-particles .p1 { width: 180px; height: 180px; top: 10%; left: 5%; animation-duration: 16s; }
.gb-cyber-particles .p2 { width: 220px; height: 220px; bottom: 15%; right: 5%; animation-duration: 20s; }
.gb-cyber-particles .p3 { width: 140px; height: 140px; top: 50%; left: 45%; animation-duration: 14s; }

@keyframes floatParticle {
    0% { transform: translateY(0) scale(1) rotate(0deg); opacity: 0.3; }
    50% { transform: translateY(-40px) scale(1.1) rotate(180deg); opacity: 0.5; }
    100% { transform: translateY(0) scale(1) rotate(360deg); opacity: 0.3; }
}

/* HERO CONTAINER & ANIMATIONS */
.gb-hero-container {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    animation: slideUpFade 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.gb-eyebrow {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 24px;
    opacity: 0;
    animation: slideUpFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.gb-main-headline {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.15;
    margin: 0 0 24px 0;
    color: #FFFFFF;
    background: linear-gradient(135deg, #FFFFFF 30%, #FFDF40 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    animation: slideUpFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.gb-subheadline {
    font-size: 19px;
    color: #94A3B8;
    line-height: 1.6;
    margin: 0 auto 40px auto;
    max-width: 650px;
    opacity: 0;
    animation: slideUpFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

.gb-btn-wrap {
    opacity: 0;
    animation: slideUpFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

.gb-cta-btn {
    display: inline-block;
    padding: 16px 36px;
    border-radius: 40px;
    color: #000000;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.35);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.gb-cta-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.55);
}

/* CREDIBILITY STRIP */
.gb-credibility-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
    background: rgba(18, 20, 26, 0.7);
    border: 1px solid rgba(255, 215, 0, 0.15);
    padding: 36px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

.gb-metric {
    font-size: 38px;
    font-weight: 900;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.gb-metric-label {
    font-size: 13px;
    color: #64748B;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* PORTFOLIO TABS SECTION */
.gb-portfolio-section {
    max-width: 950px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
}

.gb-tabs-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 36px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.08);
    padding-bottom: 24px;
}

.gb-tab-btn {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #94A3B8;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.gb-tab-btn:hover {
    border-color: rgba(255, 215, 0, 0.3);
    color: #FFFFFF;
}

.gb-tab-btn.active {
    color: #000000;
    background: #FFD700 !important;
}

.gb-tabs-content-container {
    position: relative;
    background: rgba(10, 11, 14, 0.85);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.5);
}

.gb-tab-content {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.gb-tab-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.gb-tab-heading {
    font-size: 28px;
    font-weight: 800;
    margin: 0 0 20px 0;
}

.gb-tab-paragraph {
    font-size: 17px;
    color: #94A3B8;
    line-height: 1.8;
    margin: 0 0 32px 0;
}

.gb-tab-action-btn {
    display: inline-block;
    padding: 12px 28px;
    border: 1px solid;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.gb-tab-action-btn:hover {
    background: rgba(255, 215, 0, 0.1);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.15);
}

/* COOL FEATURE: HOLOGRAPHIC BRAND MATRIX */
.gb-brand-matrix-section {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
    z-index: 1;
    position: relative;
}

.gb-matrix-header {
    text-align: center;
    margin-bottom: 40px;
}

.gb-matrix-tag {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 12px;
}

.gb-matrix-title {
    font-size: 28px;
    font-weight: 800;
    margin: 0;
    color: #FFFFFF;
}

.gb-matrix-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gb-matrix-card {
    background: rgba(15, 17, 23, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gb-matrix-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 16px;
    border: 1px solid rgba(255, 215, 0, 0);
    pointer-events: none;
    transition: all 0.4s ease;
}

.gb-matrix-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 215, 0, 0.02);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.06);
}

.gb-matrix-card:hover::before {
    border-color: rgba(255, 215, 0, 0.4);
}

.gb-matrix-status {
    position: absolute;
    top: 14px;
    right: 14px;
    font-size: 9px;
    font-weight: 700;
    color: #64748B;
    display: flex;
    align-items: center;
    gap: 5px;
}

.gb-status-pulse {
    width: 6px;
    height: 6px;
    background-color: #10B981;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px #10B981;
    animation: pulseGlow 1.5s infinite;
}

@keyframes pulseGlow {
    0% { transform: scale(0.9); opacity: 0.6; }
    50% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.6; }
}

.gb-matrix-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.gb-matrix-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #FFFFFF;
}

.gb-matrix-card p {
    font-size: 12px;
    color: #64748B;
    margin: 0;
    line-height: 1.5;
}

/* GOOGLE KNOWLEDGE PANEL SECTION */
.gb-knowledge-panel-section {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
    z-index: 1;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 60px;
}

.gb-kp-container {
    background: #17181c;
    border: 1px solid #303134;
    border-radius: 16px;
    padding: 30px;
    max-width: 650px;
    margin: 0 auto;
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
    text-align: left;
}

.gb-kp-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid #303134;
    padding-bottom: 16px;
    margin-bottom: 20px;
}

.gb-kp-name {
    font-size: 26px;
    font-weight: 500;
    margin: 0 0 4px 0;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    gap: 8px;
}

.gb-verified-badge {
    background-color: #FFD700;
    color: #000;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.gb-kp-sub {
    font-size: 14px;
    color: #9aa0a6;
    margin: 0;
}

.gb-kp-action-btns {
    border: 1px solid #303134;
    border-radius: 100px;
    padding: 6px 14px;
    font-size: 13px;
    color: #8ab4f8;
    cursor: pointer;
    background: transparent;
    transition: background-color 0.2s;
}

.gb-kp-action-btns:hover {
    background-color: rgba(138, 180, 248, 0.08);
}

.gb-kp-bio {
    font-size: 14px;
    line-height: 1.58;
    color: #e8eaed;
    margin: 0 0 24px 0;
}

.gb-kp-facts {
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-top: 1px solid #303134;
    padding-top: 18px;
    margin-bottom: 24px;
}

.gb-kp-fact-row {
    font-size: 14px;
    line-height: 1.5;
}

.gb-kp-fact-label {
    font-weight: 700;
    color: #e8eaed;
    margin-right: 6px;
}

.gb-kp-fact-val {
    color: #8ab4f8;
}

.gb-kp-footer {
    border-top: 1px solid #303134;
    padding-top: 18px;
}

.gb-kp-social-heading {
    font-size: 14px;
    font-weight: 700;
    color: #e8eaed;
    margin-bottom: 12px;
}

.gb-kp-social-links {
    display: flex;
    gap: 10px;
}

.gb-kp-social-pill {
    background: #202124;
    border: 1px solid #3c4043;
    border-radius: 100px;
    padding: 8px 16px;
    font-size: 13px;
    color: #e8eaed;
    text-decoration: none;
    transition: background-color 0.2s;
}

.gb-kp-social-pill:hover {
    background: #303134;
}

/* GLOBAL FOOTER BOTTOM */
.gb-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    margin-top: 40px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.gb-footer-text {
    font-size: 13px;
    color: #475569;
    margin: 0;
}

/* ANIMATIONS */
@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE DESIGN */
@media (max-width: 991px) {
    .gb-matrix-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .gb-brand-wrapper {
        gap: 60px;
        padding: 50px 16px;
    }
    .gb-main-headline {
        font-size: 38px;
    }
    .gb-credibility-strip {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 24px;
    }
    .gb-tabs-content-container {
        padding: 30px 20px;
    }
    .gb-tab-heading {
        font-size: 22px;
    }
    .gb-matrix-grid {
        grid-template-columns: 1fr;
    }
    .gb-kp-container {
        padding: 20px;
    }
    .gb-kp-name {
        font-size: 22px;
    }
}
