/* --- Breadcrumb --- */
.breadcrumb-page-area-one {
    padding-top: 96px;
}

/* --- Intro Section --- */
.brand-intro-section {
    background: #fff;
    padding: 100px 0 80px;
}

.brand-intro-section .intro-label {
    display: inline-block;
    background: var(--neon);
    color: var(--black);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.brand-intro-section h1 {
    font-size: clamp(36px, 5vw, 68px);
    font-weight: 500;
    line-height: 1.1;
    color: var(--black);
    margin-bottom: 28px;
    letter-spacing: -1px;
}

.brand-intro-section h1 span {
    color: var(--neon-dark);
    -webkit-text-stroke: 1px var(--neon-dark);
    letter-spacing: 1px;
}

.brand-intro-section .intro-text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--mid-grey);
    max-width: 560px;
}

.brand-intro-image-wrap {
    position: relative;
}

.brand-intro-image-wrap img {
    width: 100%;
    border-radius: 30px;
    object-fit: cover;
}

.brand-intro-image-wrap .floating-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--neon);
    color: var(--black);
    padding: 22px 28px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    animation: floatBob 3s ease-in-out infinite;
}

.brand-intro-image-wrap .floating-badge span {
    display: block;
    font-size: 36px;
    font-weight: 900;
    line-height: 1;
}

@keyframes floatBob {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* --- Services Grid --- */
.brand-services-grid {
    background: var(--dark-grey);
    padding: 100px 0;
}

.brand-services-grid .section-header {
    margin-bottom: 60px;
}

.brand-services-grid .section-header .sub {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--neon);
    margin-bottom: 14px;
    display: block;
}

.brand-services-grid .section-header h2 {
    font-size: clamp(30px, 4vw, 52px);
    font-weight: 500;
    color: #fff;
    line-height: 1.15;
}

.brand-services-grid .section-header h2 span {
    color: var(--neon);
}

/* Service Card */
.bms-card {
    background: #1a1a1a;
    border-radius: 24px;
    padding: 40px 32px;
    height: 100%;
    border: 1px solid #2a2a2a;
    border-bottom: 4px solid transparent;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.bms-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--neon), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.bms-card:hover {
    border-bottom-color: var(--neon);
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(207, 239, 0, 0.12);
    background: #1e1e1e;
}

.bms-card:hover::before {
    opacity: 1;
}

.bms-card .card-number {
    font-size: 25px;
    font-weight: 700;
    color: var(--neon);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
}

.bms-card .card-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(207, 239, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 28px;
    color: var(--neon);
    transition: all 0.3s ease;
}

.bms-card:hover .card-icon {
    background: var(--neon);
    color: var(--black);
    transform: scale(1.1);
}

.bms-card h3 {
    font-size: 30px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 14px;
    transition: color 0.3s;
}

.bms-card:hover h3 {
    color: var(--neon);
}

.bms-card p {
    font-size: 18px;
    line-height: 1.75;
    color: #999;
    margin-bottom: 0;
    transition: color 0.3s;
}

.bms-card:hover p {
    color: #ccc;
}

/* --- Process Section --- */
.brand-process-section {
    background: #fff;
    padding: 100px 0;
}

.brand-process-section .sub-label {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--neon-dark);
    display: block;
    margin-bottom: 14px;
}

.brand-process-section h2 {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 500;
    color: var(--black);
    margin-bottom: 16px;
}

.brand-process-section h2 span {
    color: var(--neon-dark);
}

.brand-process-section .lead-text {
    font-size: 16px;
    color: var(--mid-grey);
    line-height: 1.8;
    max-width: 480px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 28px 30px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid #eee;
    margin-bottom: 20px;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.process-step::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--neon);
    opacity: 0;
    transition: opacity 0.35s ease;
    border-radius: 4px 0 0 4px;
}

.process-step:hover {
    border-color: var(--neon);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    transform: translateX(8px);
}

.process-step:hover::after {
    opacity: 1;
}

.process-step .step-num {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--neon);
    color: var(--black);
    font-weight: 600;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.process-step:hover .step-num {
    transform: scale(1.1) rotate(-5deg);
}

.process-step .step-content h4 {
    font-size: 17px;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 4px;
}

.process-step .step-content p {
    font-size: 14px;
    color: var(--mid-grey);
    margin: 0;
    line-height: 1.7;
}

/* --- CTA Section --- */
.brand-cta-strip {
    background: var(--gt-body);
    padding: 80px 0;
    text-align: center;
}

.brand-cta-strip h2 {
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 500;
    color: var(--black);
    margin-bottom: 12px;
}

.brand-cta-strip h2 span {
    color: var(--neon);
}

.brand-cta-strip p {
    font-size: 16px;
    color: #888;
    margin-bottom: 36px;
}

.brand-cta-strip .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--neon);
    color: var(--black);
    font-weight: 700;
    font-size: 18px;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.brand-cta-strip .cta-btn:hover {
    color: var(--neon);
    background: var(--black);
    font-weight: 800;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(207, 239, 0, 0.3);
}