/* ============================================
   BCP LANDING PAGE — STYLES
   ============================================ */

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-px);
}

.text-center {
    text-align: center;
}

.section-header {
    margin-bottom: 64px;
}

.section-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 16px;
    position: relative;
    padding-left: 32px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 2px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

.text-center .section-label {
    padding-left: 0;
}

.text-center .section-label::before {
    display: none;
}

.section-label--light {
    color: var(--green-400);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.section-title--light {
    color: var(--text-white);
}

.section-subtitle,
.section-desc {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-secondary);
    max-width: 640px;
}

.text-center .section-subtitle {
    margin: 0 auto;
}

.section-desc + .section-desc {
    margin-top: 12px;
}

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

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.15);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.btn:hover::before {
    transform: translateX(0);
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: var(--shadow-green);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px -4px rgba(5, 150, 105, 0.45);
}

.btn-outline {
    border: 2px solid var(--green-300);
    color: var(--text-white);
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(8px);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.12);
    border-color: var(--green-400);
    transform: translateY(-2px);
}

.btn-white {
    background: white;
    color: var(--primary-dark);
    box-shadow: var(--shadow-lg);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-outline-white {
    border: 2px solid rgba(255,255,255,0.4);
    color: white;
}

.btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-up,
.fade-in,
.fade-left,
.fade-right,
.scale-in {
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-up { transform: translateY(40px); }
.fade-in { transform: none; }
.fade-left { transform: translateX(-40px); }
.fade-right { transform: translateX(40px); }
.scale-in { transform: scale(0.9); }

.fade-up.is-visible,
.fade-in.is-visible,
.fade-left.is-visible,
.fade-right.is-visible,
.scale-in.is-visible {
    opacity: 1;
    transform: none;
}

.stagger-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.stagger-item.is-visible {
    opacity: 1;
    transform: none;
}

/* ============================================
   NAVBAR
   ============================================ */
.bcp-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(5, 150, 105, 0.1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.bcp-navbar.is-scrolled {
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(5, 150, 105, 0.12);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
}

.bcp-navbar.is-hidden {
    transform: translateY(-100%);
}

.bcp-navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.bcp-navbar__logo {
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 10;
    text-decoration: none;
}

.bcp-navbar__logo-img {
    height: 44px;
    width: auto;
    display: block;
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.bcp-navbar__logo:hover .bcp-navbar__logo-img {
    transform: scale(1.06) rotate(-2deg);
}

/* Brand Text */
.bcp-navbar__brand {
    display: flex;
    flex-direction: column;
    gap: 1px;
    position: relative;
}

.bcp-navbar__brand::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 70%;
    background: var(--primary-gradient);
    border-radius: 2px;
    opacity: 0.6;
}

.bcp-navbar__brand-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.15;
    color: var(--primary-dark);
    transition: color var(--transition-base);
}

.bcp-navbar__brand-sub {
    font-family: 'Outfit', sans-serif;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
    opacity: 0.85;
    transition: color var(--transition-base);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text__name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-dark);
    letter-spacing: 0.05em;
    line-height: 1.1;
    transition: color var(--transition-base);
}

.logo-text__tagline {
    font-size: 0.65rem;
    color: var(--primary);
    letter-spacing: 0.04em;
    font-weight: 500;
    transition: color var(--transition-base);
}

/* Nav Menu */
.bcp-nav__menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bcp-nav__link {
    padding: 8px 16px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-secondary);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    position: relative;
}

.bcp-nav__link:hover {
    color: var(--primary-dark);
    background: rgba(5, 150, 105, 0.08);
}

.bcp-nav__link.is-active {
    color: var(--primary);
    background: rgba(5, 150, 105, 0.1);
}

.bcp-nav__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: 12px;
    padding: 10px 24px;
    background: var(--primary-gradient);
    color: white;
    font-size: 0.88rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-green);
}

.bcp-nav__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(5, 150, 105, 0.5);
}

/* Mobile Menu Toggle */
.bcp-navbar__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    z-index: 10;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.bcp-navbar__toggle.is-active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.bcp-navbar__toggle.is-active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.bcp-navbar__toggle.is-active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   HOMEPAGE EXCEPTION (Transparent Header at Top)
   ============================================ */
.home .bcp-navbar:not(.is-scrolled) {
    background: transparent;
    border-bottom: 1px solid transparent;
    box-shadow: none;
    padding: 20px 0;
}

.home .bcp-navbar:not(.is-scrolled) .logo-text__name {
    color: white;
}

.home .bcp-navbar:not(.is-scrolled) .logo-text__tagline {
    color: var(--green-300);
}

.home .bcp-navbar:not(.is-scrolled) .bcp-navbar__brand-name {
    color: white;
}

.home .bcp-navbar:not(.is-scrolled) .bcp-navbar__brand-sub {
    color: var(--green-300);
}

.home .bcp-navbar:not(.is-scrolled) .bcp-navbar__brand::before {
    background: linear-gradient(135deg, rgba(255,255,255,0.7), rgba(110, 231, 183, 0.8));
}

.home .bcp-navbar:not(.is-scrolled) .bcp-nav__link {
    color: rgba(255, 255, 255, 0.8);
}

.home .bcp-navbar:not(.is-scrolled) .bcp-nav__link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.12);
}

.home .bcp-navbar:not(.is-scrolled) .bcp-nav__link.is-active {
    color: var(--green-400);
    background: rgba(255, 255, 255, 0.08);
}

.home .bcp-navbar:not(.is-scrolled) .hamburger-line {
    background: white;
}

/* Mobile Overlay */
.bcp-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.bcp-menu-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

/* ============================================
   HERO SECTION
   ============================================ */
.bcp-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0 80px;
}

.bcp-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0B1120 0%, #0F2027 25%, #0A2622 50%, #0B1120 100%);
}

.hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(5, 150, 105, 0.15) 0%, transparent 70%);
    top: 10%;
    right: -10%;
    filter: blur(60px);
    animation: heroGlowPulse 8s ease-in-out infinite;
}

@keyframes heroGlowPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.15); }
}

/* Floating Shapes */
.hero-shape {
    position: absolute;
    border-radius: 50%;
    transition: transform 0.3s ease-out;
}

.hero-shape--1 {
    width: 300px; height: 300px;
    border: 1px solid rgba(16, 185, 129, 0.08);
    top: 15%; left: -5%;
    animation: shapeFloat1 20s ease-in-out infinite;
}

.hero-shape--2 {
    width: 180px; height: 180px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.06) 0%, transparent 70%);
    top: 60%; right: 10%;
    animation: shapeFloat2 15s ease-in-out infinite;
}

.hero-shape--3 {
    width: 80px; height: 80px;
    background: rgba(16, 185, 129, 0.08);
    top: 20%; right: 30%;
    animation: shapeFloat3 12s ease-in-out infinite;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.hero-shape--4 {
    width: 120px; height: 120px;
    border: 1px solid rgba(52, 211, 153, 0.06);
    bottom: 20%; left: 15%;
    animation: shapeFloat1 18s ease-in-out infinite reverse;
}

.hero-shape--5 {
    width: 50px; height: 50px;
    background: rgba(52, 211, 153, 0.1);
    top: 40%; left: 40%;
    animation: shapeFloat2 10s ease-in-out infinite;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

@keyframes shapeFloat1 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(5deg); }
    66% { transform: translateY(15px) rotate(-3deg); }
}

@keyframes shapeFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -30px) scale(1.1); }
}

@keyframes shapeFloat3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-15px, -10px) rotate(90deg); }
    50% { transform: translate(10px, -25px) rotate(180deg); }
    75% { transform: translate(-5px, 10px) rotate(270deg); }
}

/* Hero Content */
.bcp-hero__content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.bcp-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px 8px 12px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--green-300);
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green-400);
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.bcp-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5.5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.08;
    color: white;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.bcp-hero__subtitle {
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
    margin-bottom: 36px;
    max-width: 480px;
}

.typing-wrapper {
    display: inline-flex;
    align-items: baseline;
}

.typing-text {
    color: var(--green-400);
    font-weight: 600;
}

.typing-cursor {
    color: var(--green-400);
    animation: cursorBlink 1s step-end infinite;
    font-weight: 300;
    margin-left: 2px;
}

@keyframes cursorBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.bcp-hero__cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.bcp-hero__trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
}

/* Hero Visual */
.bcp-hero__visual {
    position: relative;
}

.hero-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 25px 80px -10px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.08);
}

.hero-card img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 3/2;
    object-fit: cover;
}

.hero-card__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
}

.hero-card__tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 600;
    color: white;
    border: 1px solid rgba(255,255,255,0.15);
}

/* Floating Cards */
.hero-floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: rgba(255,255,255,0.95);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    animation: floatBounce 6s ease-in-out infinite;
}

.hero-floating-card--1 {
    bottom: -20px;
    left: -30px;
    animation-delay: 0s;
}

.hero-floating-card--2 {
    top: 30px;
    right: -20px;
    animation-delay: 3s;
}

@keyframes floatBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.floating-card__icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-50);
    border-radius: var(--radius-md);
}

.floating-card__number {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-primary);
    display: block;
    line-height: 1.1;
}

.floating-card__label {
    font-size: 0.72rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Scroll Indicator */
.bcp-hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.35);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color var(--transition-base);
}

.scroll-indicator:hover {
    color: rgba(255,255,255,0.6);
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255,255,255,0.25);
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    width: 3px;
    height: 8px;
    background: rgba(255,255,255,0.4);
    border-radius: 3px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(16px); }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.bcp-about {
    padding: var(--section-py) 0;
    background: white;
    position: relative;
}

.bcp-about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.about-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: var(--primary-gradient);
    border-radius: var(--radius-xl);
    opacity: 0.08;
    z-index: -1;
}

.about-award-badge {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 24px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    position: absolute;
    bottom: -24px;
    right: 20px;
    border: 1px solid var(--green-100);
    animation: floatBounce 5s ease-in-out infinite;
}

.award-title {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
}

.award-subtitle {
    display: block;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.bcp-about__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.about-stat {
    text-align: center;
    padding: 20px 12px;
    background: var(--green-50);
    border-radius: var(--radius-md);
    border: 1px solid var(--green-100);
    transition: all var(--transition-base);
}

.about-stat:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--green-200);
}

.about-stat__number {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
    line-height: 1;
    margin-bottom: 6px;
}

.about-stat__label {
    font-size: 0.72rem;
    color: var(--text-secondary);
    font-weight: 500;
    line-height: 1.3;
}

/* ============================================
   PROJECTS SECTION
   ============================================ */
.bcp-projects {
    padding: var(--section-py) 0;
    background: var(--bg-section);
    position: relative;
}

.bcp-projects__showcase {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: start;
}

.project-gallery__main {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.project-gallery__main img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/10;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-gallery__main:hover img {
    transform: scale(1.03);
}

.project-gallery__badge {
    position: absolute;
    top: 20px;
    left: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-primary);
    box-shadow: var(--shadow-md);
}

.project-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 28px;
}

.project-feature-card {
    padding: 24px;
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all var(--transition-base);
}

.project-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--green-200);
}

.pf-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-50);
    border-radius: var(--radius-md);
    color: var(--primary);
    margin-bottom: 14px;
}

.project-feature-card h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.project-feature-card p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Progress Bar */
.project-progress {
    padding: 24px;
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0,0,0,0.05);
    margin-bottom: 20px;
}

.project-progress__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.project-progress__header h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
}

.progress-label {
    font-size: 0.82rem;
    color: var(--primary);
    font-weight: 600;
}

.progress-bar {
    width: 100%;
    height: 10px;
    background: var(--green-100);
    border-radius: var(--radius-full);
    overflow: hidden;
    position: relative;
}

.progress-bar__fill {
    height: 100%;
    width: var(--progress);
    background: var(--primary-gradient);
    border-radius: var(--radius-full);
    position: relative;
    animation: progressGrow 2s ease-out forwards;
    transform-origin: left;
}

@keyframes progressGrow {
    from { width: 0; }
    to { width: var(--progress); }
}

.progress-bar__fill::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: white;
    border: 3px solid var(--primary);
    box-shadow: var(--shadow-green);
}

.progress-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Bank Badges */
.project-banks {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.banks-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.bank-badges {
    display: flex;
    gap: 8px;
}

.bank-badge {
    padding: 6px 18px;
    background: white;
    border: 1px solid var(--green-200);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary-dark);
    transition: all var(--transition-base);
}

.bank-badge:hover {
    background: var(--green-50);
    border-color: var(--green-400);
    transform: translateY(-2px);
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.bcp-features {
    padding: var(--section-py) 0;
    background: white;
}

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

.feature-card {
    padding: 36px 28px;
    background: white;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--green-100);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--green-50), var(--green-100));
    border-radius: var(--radius-md);
    color: var(--primary);
    margin-bottom: 20px;
    transition: all var(--transition-base);
}

.feature-card:hover .feature-card__icon {
    background: var(--primary-gradient);
    color: white;
    transform: scale(1.05);
}

.feature-card__icon--teal {
    background: linear-gradient(135deg, #F0FDFA, #CCFBF1);
    color: var(--teal-600);
}

.feature-card:hover .feature-card__icon--teal {
    background: linear-gradient(135deg, #0D9488, #14B8A6);
}

.feature-card__icon--emerald {
    background: linear-gradient(135deg, #ECFDF5, #D1FAE5);
    color: #059669;
}

.feature-card:hover .feature-card__icon--emerald {
    background: linear-gradient(135deg, #059669, #10B981);
}

.feature-card__icon--mint {
    background: linear-gradient(135deg, #F0FDF4, #DCFCE7);
    color: #16A34A;
}

.feature-card:hover .feature-card__icon--mint {
    background: linear-gradient(135deg, #16A34A, #22C55E);
}

.feature-card__icon--green {
    background: linear-gradient(135deg, #F0FDF4, #BBF7D0);
    color: #15803D;
}

.feature-card:hover .feature-card__icon--green {
    background: linear-gradient(135deg, #15803D, #16A34A);
}

.feature-card__icon--forest {
    background: linear-gradient(135deg, #ECFDF5, #A7F3D0);
    color: #047857;
}

.feature-card:hover .feature-card__icon--forest {
    background: linear-gradient(135deg, #047857, #059669);
}

.feature-card__title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.feature-card__desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.65;
}


/* ============================================
   CONTACT SECTION
   ============================================ */
.bcp-contact {
    padding: var(--section-py) 0;
    background: white;
}

.bcp-contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

/* Contact Form */
.contact-form {
    padding: 40px;
    background: var(--bg-section);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: white;
    border: 1.5px solid rgba(0,0,0,0.1);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    color: var(--text-primary);
    transition: all var(--transition-base);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 12px;
}

.form-message {
    padding: 12px 16px;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: 16px;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.3s ease;
}

.form-message.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.form-message--success {
    background: var(--green-50);
    color: var(--green-800);
    border: 1px solid var(--green-200);
}

.form-message--error {
    background: #FEF2F2;
    color: #991B1B;
    border: 1px solid #FECACA;
}

/* Contact Info Cards */
.bcp-contact__info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: white;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.contact-info-card:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
    border-color: var(--green-200);
}

.contact-info-card--highlight {
    background: linear-gradient(135deg, var(--green-50), #F0FDFA);
    border-color: var(--green-200);
}

.contact-info-card__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-50);
    border-radius: var(--radius-md);
    color: var(--primary);
    flex-shrink: 0;
}

.contact-info-card--highlight .contact-info-card__icon {
    background: var(--primary-gradient);
    color: white;
}

.contact-info-card__content h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.contact-info-card__content p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-link {
    display: block;
    font-size: 0.88rem;
    color: var(--primary);
    font-weight: 500;
    transition: color var(--transition-base);
}

.contact-link:hover {
    color: var(--primary-dark);
}



/* ============================================
   FOOTER
   ============================================ */
.bcp-footer {
    background: var(--dark);
    padding: 80px 0 0;
    color: rgba(255,255,255,0.6);
}

.bcp-footer__top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.bcp-footer__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.bcp-footer__desc {
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.bcp-footer__social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    color: rgba(255,255,255,0.6);
    transition: all var(--transition-base);
}

.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.bcp-footer__heading {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.bcp-footer__links ul li {
    margin-bottom: 10px;
}

.bcp-footer__links ul li a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    transition: all var(--transition-base);
    position: relative;
    padding-left: 0;
}

.bcp-footer__links ul li a:hover {
    color: var(--green-400);
    padding-left: 8px;
}

.footer-contact-item {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
    font-size: 0.85rem;
    line-height: 1.5;
    align-items: flex-start;
}

.footer-contact-item svg {
    flex-shrink: 0;
    color: var(--green-400);
    margin-top: 2px;
}

.bcp-footer__bottom {
    padding: 24px 0;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
}

.bcp-footer__legal {
    margin-top: 4px;
    font-size: 0.72rem;
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.bcp-whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all var(--transition-base);
    animation: waFloat 3s ease-in-out infinite;
}

.bcp-whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55);
}

@keyframes waFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.bcp-whatsapp-float:hover {
    animation: none;
    transform: scale(1.1);
}

.wa-tooltip {
    position: absolute;
    right: 72px;
    top: 50%;
    transform: translateY(-50%);
    padding: 8px 16px;
    background: var(--dark);
    color: white;
    font-size: 0.82rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    pointer-events: none;
}

.wa-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--dark);
    border-right: none;
}

.bcp-whatsapp-float:hover .wa-tooltip {
    opacity: 1;
    visibility: visible;
}

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */
@media (max-width: 1024px) {
    :root {
        --section-py: 80px;
    }

    .bcp-hero__content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .bcp-hero__subtitle {
        margin: 0 auto 36px;
    }

    .bcp-hero__cta {
        justify-content: center;
    }

    .bcp-hero__trust {
        justify-content: center;
    }

    .hero-floating-card--1 {
        bottom: -10px;
        left: 10px;
    }

    .hero-floating-card--2 {
        top: 10px;
        right: 10px;
    }

    .bcp-about__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .bcp-projects__showcase {
        grid-template-columns: 1fr;
    }

    .bcp-features__grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .bcp-contact__grid {
        grid-template-columns: 1fr;
    }

    .bcp-footer__top {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

/* --- Home Page Mitra Perbankan Section (Strip Banner style) --- */
.home-mitra-section {
    padding: 30px 0 60px;
    background: transparent;
}

.home-mitra-card-wrap {
    background: var(--white);
    border: 1px solid rgba(16, 185, 129, 0.08);
    border-radius: 24px;
    padding: 36px 48px;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.home-mitra__header {
    flex-shrink: 0;
    max-width: 280px;
}

.home-mitra__label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 4px;
}

.home-mitra__title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.3;
}

.home-mitra__logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    flex-grow: 1;
    justify-content: space-around;
}

.home-mitra__logo-box {
    background: #fafafa;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    width: 140px;
    height: 70px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.home-mitra__logo-box img {
    max-width: 85%;
    max-height: 80%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.home-mitra__logo-box img[src*="bri"] {
    max-width: 70%;
    max-height: 65%;
}

.home-mitra__logo-box:hover {
    background: var(--white);
    transform: translateY(-4px);
    border-color: var(--shadow-color);
    box-shadow: 0 10px 24px -6px color-mix(in srgb, var(--shadow-color) 25%, transparent);
}

.home-mitra__logo-box:hover img {
    transform: scale(1.04);
}

@media (max-width: 991px) {
    .home-mitra-card-wrap {
        flex-direction: column;
        text-align: center;
        padding: 36px 30px;
    }
    .home-mitra__header {
        max-width: 100%;
    }
    .home-mitra__logos {
        width: 100%;
    }
}

@media (max-width: 560px) {
    .home-mitra__logo-box {
        width: 120px;
        height: 60px;
    }
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 768px) {
    :root {
        --section-py: 64px;
        --container-px: 20px;
    }

    /* Mobile Menu */
    .bcp-navbar__toggle {
        display: flex;
    }

    .bcp-nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: #062218;
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 32px 32px;
        gap: 4px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        border-left: 1px solid rgba(16, 185, 129, 0.15);
    }

    .bcp-nav__menu.is-open {
        right: 0;
    }

    .bcp-nav__link {
        width: 100%;
        padding: 14px 16px;
        font-size: 1rem;
    }

    .bcp-nav__cta {
        margin-left: 0;
        margin-top: 16px;
        width: 100%;
        justify-content: center;
    }

    /* Hero */
    .bcp-hero {
        padding: 100px 0 60px;
    }

    .bcp-hero__title {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }

    .bcp-hero__badge {
        font-size: 0.7rem;
    }

    .bcp-hero__visual {
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-floating-card {
        display: none;
    }

    .bcp-hero__scroll {
        display: none;
    }

    /* About */
    .bcp-about__stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-award-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 16px;
    }

    /* Projects */
    .project-features {
        grid-template-columns: 1fr;
    }

    /* Features */
    .bcp-features__grid {
        grid-template-columns: 1fr;
    }


    /* Contact */
    .contact-form {
        padding: 24px;
    }



    /* Footer */
    .bcp-footer__top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* WhatsApp */
    .bcp-whatsapp-float {
        width: 52px;
        height: 52px;
        bottom: 20px;
        right: 20px;
    }

    .wa-tooltip {
        display: none;
    }
}

/* ============================================
   RESPONSIVE — SMALL MOBILE
   ============================================ */
@media (max-width: 480px) {
    .bcp-hero__cta {
        flex-direction: column;
        align-items: stretch;
    }

    .bcp-hero__cta .btn {
        justify-content: center;
    }

    .bcp-hero__trust {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .bcp-about__stats {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

}

/* ============================================
   PRINT
   ============================================ */
@media print {
    .bcp-navbar,
    .bcp-whatsapp-float,
    .bcp-hero__scroll,
    .hero-shape {
        display: none !important;
    }

    .bcp-hero {
        min-height: auto;
        padding: 40px 0;
    }

    .bcp-hero__bg {
        background: white !important;
    }
}

/* ============================================
   SECTION PENGHARGAAN (FRONT PAGE)
   ============================================ */
.bcp-award-section {
    padding: var(--section-py) 0;
    background: var(--bg-section);
    position: relative;
    overflow: hidden;
}

.bcp-award-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 60% 50% at 80% 50%, rgba(251, 191, 36, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 10% 50%, rgba(5, 150, 105, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.bcp-award-section__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* --- Left Column: Content --- */
.bcp-award-section__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.bcp-award-section__detail {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 8px;
}

.bcp-award-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 20px;
    background: white;
    border-radius: var(--radius-md);
    border: 1px solid rgba(5, 150, 105, 0.1);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.bcp-award-detail-item:hover {
    border-color: rgba(5, 150, 105, 0.25);
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.bcp-award-detail-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15), rgba(245, 158, 11, 0.08));
    border: 1px solid rgba(251, 191, 36, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d97706;
    flex-shrink: 0;
}

.bcp-award-detail-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.bcp-award-detail-value {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.4;
}

/* --- Right Column: Certificate --- */
.bcp-award-section__certificate {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.bcp-award-section__cert-glow {
    position: absolute;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.14) 0%, rgba(5, 150, 105, 0.07) 50%, transparent 75%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}

.bcp-award-section__cert-frame {
    position: relative;
    z-index: 1;
    border-radius: 14px;
    overflow: hidden;
    box-shadow:
        0 0 0 3px rgba(251, 191, 36, 0.4),
        0 0 0 7px rgba(255, 255, 255, 0.6),
        0 0 0 8px rgba(251, 191, 36, 0.15),
        0 24px 70px rgba(0, 0, 0, 0.18),
        0 8px 20px rgba(251, 191, 36, 0.15);
    transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.45s ease;
    will-change: transform;
    transform-style: preserve-3d;
}

.bcp-award-section__cert-frame:hover {
    transform: perspective(900px) rotateX(-3deg) rotateY(5deg) scale(1.04);
    box-shadow:
        0 0 0 3px rgba(251, 191, 36, 0.6),
        0 0 0 7px rgba(255, 255, 255, 0.7),
        0 0 0 8px rgba(251, 191, 36, 0.25),
        0 36px 90px rgba(0, 0, 0, 0.22),
        0 16px 36px rgba(251, 191, 36, 0.22);
}

.bcp-award-section__cert-img {
    display: block;
    width: 100%;
    max-width: 480px;
    height: auto;
    border-radius: 12px;
}

.bcp-award-section__cert-badge {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1a0a00;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    border-radius: 999px;
    box-shadow: 0 4px 16px rgba(251, 191, 36, 0.45);
    animation: awardBadgePulse 2.5s ease-in-out infinite;
}

@keyframes awardBadgePulse {
    0%, 100% { box-shadow: 0 4px 16px rgba(251, 191, 36, 0.45); }
    50%       { box-shadow: 0 4px 28px rgba(251, 191, 36, 0.75); }
}

/* Responsive */
@media (max-width: 900px) {
    .bcp-award-section__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .bcp-award-section__certificate {
        order: -1;
    }

    .bcp-award-section__cert-img {
        max-width: 380px;
    }
}

@media (max-width: 480px) {
    .bcp-award-section__cert-img {
        max-width: 300px;
    }
}

/* ============================================
   HERO SELLING POINTS BAR
   ============================================ */
.bcp-hero__selling-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 48px;
    padding: 24px 30px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 3;
}

.selling-bar__item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.selling-bar__icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 12px;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.selling-bar__text h4 {
    font-size: 0.98rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.selling-bar__text p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
    margin: 0;
}

@media (max-width: 768px) {
    .bcp-hero__selling-bar {
        padding: 20px 18px;
        margin-top: 36px;
        gap: 16px;
    }
}

