/* ===================================
   BANA POST LP Styles
   Color Theme: Blue
   =================================== */

:root {
    /* Pop & Pastel Theme */
    --bp-primary: #FF758C;
    /* Pop Pink/Coral */
    --bp-primary-dark: #FF5A73;
    --bp-primary-light: #FFB3C1;
    --bp-accent: #4CC9F0;
    /* Pop Blue */
    --bp-secondary: #FFD166;
    /* Pop Yellow */

    --bp-dark: #333333;
    /* Softer Dark for Text */
    --bp-dark-light: #4A4A4A;
    --bp-white: #FFFFFF;

    /* Backgrounds */
    --bp-gray-light: #FFF9FA;
    /* Very light pinkish white */
    --bp-gray: #8896A6;

    --bp-text: #333333;

    /* Gradients */
    --bp-gradient: linear-gradient(135deg, #FF758C 0%, #FF7EB3 100%);
    --bp-gradient-pop: linear-gradient(135deg, #FF9A9E 0%, #FECFEF 99%, #FECFEF 100%);
    --bp-gradient-dark: linear-gradient(135deg, #333333 0%, #4A4A4A 100%);
}

/* Base Styles */
.lp-banapost {
    font-family: var(--font-jp);
    color: var(--bp-text);
    overflow-x: hidden;
}

.bp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.bp-section {
    padding: 100px 0;
}

/* Animations */
.bp-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.bp-animate.bp-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Section Headers */
.bp-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.bp-section-label {
    display: inline-block;
    font-family: var(--font-en);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--bp-primary);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.bp-section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 900;
    color: var(--bp-text);
    line-height: 1.3;
}

.bp-section-header-light .bp-section-label,
.bp-section-header-light .bp-section-title {
    color: var(--bp-white);
}

.bp-section-header-dark .bp-section-label {
    color: var(--bp-accent);
}

.bp-section-header-dark .bp-section-title {
    color: var(--bp-white);
}

/* Buttons */
/* Buttons */
.bp-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    /* Pop bounce effect */
    cursor: pointer;
}

.bp-btn-primary {
    background: var(--bp-gradient);
    color: var(--bp-white);
    box-shadow: 0 10px 25px rgba(255, 117, 140, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.bp-btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 35px rgba(255, 117, 140, 0.5);
}

.bp-btn-outline {
    background: var(--bp-white);
    color: var(--bp-text);
    border: 2px solid #E0E0E0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.bp-btn-outline:hover {
    background: var(--bp-primary);
    color: var(--bp-white);
    border-color: var(--bp-primary);
}

.bp-btn-large {
    padding: 1.2rem 3.5rem;
    font-size: 1.1rem;
    background: var(--bp-gradient);
    color: var(--bp-white);
    box-shadow: 0 10px 30px rgba(255, 117, 140, 0.4);
}

.bp-btn-large:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 117, 140, 0.5);
}

/* ===================================
   1. HERO SECTION (Light Theme)
   =================================== */
/* ===================================
   1. HERO SECTION (Pop & Pastel Theme)
   =================================== */
.bp-hero {
    position: relative;
    /* Reverted to 100vh for fit, using min-height so it grows if content needs it */
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 5%;
    /* Reduced top/bottom padding */
    overflow: hidden;
    /* Be careful with this, but needed for decorations */
    background: var(--bp-gray-light);
}

/* Response for smaller laptops (like 13inch MacBook) */
@media (max-width: 1400px),
(max-height: 800px) {
    .bp-hero-title {
        font-size: clamp(3rem, 6vw, 4.5rem);
        margin-bottom: 0.8rem;
    }

    .bp-hero-catch {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .bp-hero-desc {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .bp-sns-icons {
        margin-bottom: 2rem;
    }

    .sns-icon {
        width: 50px;
        height: 50px;
    }

    .sns-icon img {
        width: 24px;
        height: 24px;
    }

    .bp-hero-bottom-row {
        gap: 2rem;
        margin-top: 0.5rem;
    }

    .bp-laurel-stats img {
        height: 45px !important;
        /* Scale down crowns */
    }

    .bp-hero-cta .bp-btn {
        padding: 1rem 3rem;
        font-size: 1.1rem;
    }
}

.bp-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 10%, rgba(255, 117, 140, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 90%, rgba(76, 201, 240, 0.05) 0%, transparent 40%);
    z-index: 0;
}

/* Pop & Pastel Decorative Elements */
.bp-hero-bg::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 209, 102, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.bp-hero-bg::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 179, 193, 0.15) 0%, transparent 70%);
    z-index: 0;
}

.bp-hero-content {
    position: relative;
    z-index: 10;
    text-align: left;
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
}

.bp-hero-text {
    max-width: 700px;
}

.bp-hero-label {
    display: inline-block;
    background: rgba(255, 117, 140, 0.1);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-family: var(--font-en);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--bp-primary);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.3rem;
}

.bp-hero-title {
    font-family: var(--font-en);
    font-size: clamp(3.5rem, 8vw, 6rem);
    /* significantly larger */
    font-weight: 900;
    color: var(--bp-text);
    letter-spacing: -2px;
    margin: 0;
    line-height: 1;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 0px rgba(76, 201, 240, 0.2);
}

.bp-hero-subtitle {
    font-size: 1rem;
    color: var(--bp-gray);
    margin: 0.5rem 0 1.5rem;
    letter-spacing: 1px;
}

.bp-hero-catch {
    font-size: clamp(1.4rem, 2.5vw, 2.2rem);
    font-weight: 900;
    color: var(--bp-text);
    line-height: 1.4;
    margin-bottom: 1rem;
    background: transparent;
    padding: 0;
    border-left: none;
}

/* Hero Description */
.bp-hero-desc {
    font-size: 1.2rem;
    color: var(--bp-dark-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

/* SNS Icons (Pop Style - Larger) */
.bp-sns-icons {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
    align-items: center;
}

.sns-icon {
    width: 55px;
    /* Larger */
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    /* Slightly more rounded */
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.sns-icon img {
    width: 32px;
    height: 32px;
}

.sns-icon:hover {
    transform: scale(1.15) rotate(5deg);
}

/* Bottom Row Layout */
.bp-hero-bottom-row {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

/* Update Button Style to Rectangular Blue */
.bp-hero-cta .bp-btn {
    border-radius: 6px;
    /* Rectangular */
    padding: 1.2rem 4rem;
    background: #4A76C6;
    /* Standard corporate blue */
    font-size: 1.2rem;
    box-shadow: none;
    border: none;
}

.bp-hero-cta .bp-btn:hover {
    transform: translateY(-2px);
    background: #3A66B6;
    box-shadow: 0 5px 15px rgba(58, 102, 182, 0.3);
}

/* Reset previous Laurel Stats margin */
.bp-laurel-stats {
    margin-bottom: 0;
}

.sns-icon:hover {
    transform: scale(1.15) rotate(5deg);
}

/* Laurel Stats */
.bp-laurel-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

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

.laurel-wrap {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.laurel-left,
.laurel-right {
    width: 30px;
    height: 60px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 60'%3E%3Cpath d='M25 5c-5 5-10 15-10 25s5 20 10 25c-15-5-20-15-20-25s5-20 20-25z' fill='%23C4A000'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.laurel-right {
    transform: scaleX(-1);
}

.laurel-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.laurel-label {
    font-size: 0.7rem;
    color: var(--bp-gray);
    margin-bottom: 0.2rem;
}

.laurel-value {
    font-family: var(--font-en);
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--bp-text);
    line-height: 1;
}

.laurel-unit {
    font-size: 0.5em;
    font-weight: 700;
}

.bp-hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.bp-btn-outline {
    background: transparent;
    color: var(--bp-text);
    border: 2px solid var(--bp-text);
}

.bp-btn-outline:hover {
    background: var(--bp-text);
    color: var(--bp-white);
}

/* Hero Visual (Right Side) */
.bp-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.bp-hero-mockup {
    position: relative;
    width: 100%;
    max-width: 500px;
    transform-style: preserve-3d;
    animation: floatHero 6s ease-in-out infinite;
}

@keyframes floatHero {

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

    50% {
        transform: translateY(-15px) rotateY(2deg);
    }
}

.mockup-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    padding: 2.5rem;
    position: relative;
    z-index: 2;
}

.mockup-card-floating {
    position: absolute;
    background: var(--bp-white);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    padding: 1rem 1.5rem;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 700;
    color: var(--bp-text);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.mockup-card-floating.top-right {
    top: -30px;
    right: -40px;
    animation: floatIcon 4s ease-in-out infinite 1s;
}

.mockup-card-floating.bottom-left {
    bottom: 40px;
    left: -50px;
    animation: floatIcon 5s ease-in-out infinite;
}

@keyframes floatIcon {

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

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

/* Decorative Elements (Pop Blobs) */
.bp-deco {
    position: absolute;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    filter: blur(40px);
    z-index: 1;
}

.bp-deco-1 {
    width: 200px;
    height: 200px;
    background: var(--bp-primary-light);
    top: 10%;
    right: 5%;
    opacity: 0.6;
    animation: morphBlob 8s infinite alternate;
}

.bp-deco-2 {
    width: 150px;
    height: 150px;
    background: var(--bp-accent);
    bottom: 20%;
    right: -5%;
    opacity: 0.5;
    animation: morphBlob 10s infinite alternate-reverse;
}

@keyframes morphBlob {
    0% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }

    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

.bp-deco-3 {
    display: none;
    /* Hide old decoration */
}

.bp-hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--bp-gray);
    font-size: 0.75rem;
    letter-spacing: 2px;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--bp-primary), transparent);
    margin: 10px auto 0;
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scaleY(1);
    }

    50% {
        opacity: 1;
        transform: scaleY(1.2);
    }
}

/* ===================================
   2. OVERVIEW SECTION
   =================================== */
.bp-overview {
    background: var(--bp-white);
}

.bp-overview-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.bp-overview-text {
    font-size: 1.1rem;
    line-height: 2;
    color: var(--bp-text);
    margin-bottom: 1.5rem;
}

/* ===================================
   3. PROBLEMS SECTION
   =================================== */
.bp-problems {
    background: var(--bp-gray-light);
}

.bp-problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.bp-problem-card {
    background: var(--bp-white);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.bp-problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.problem-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.problem-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--bp-text);
}

.problem-text strong {
    color: var(--bp-primary);
}

.bp-problems-solution {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bp-text);
}

.bp-problems-solution .highlight {
    color: var(--bp-primary);
    position: relative;
}

.bp-problems-solution .highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: rgba(0, 102, 204, 0.2);
    z-index: -1;
}

/* ===================================
   4. FEATURES SECTION (Light Theme)
   =================================== */
.bp-features {
    background: var(--bp-white);
}

.bp-feature-item {
    display: grid;
    grid-template-columns: 80px 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 5rem;
}

.bp-feature-item:last-child {
    margin-bottom: 0;
}

.bp-feature-reverse {
    direction: rtl;
}

.bp-feature-reverse>* {
    direction: ltr;
}

.bp-feature-number {
    font-family: var(--font-en);
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--bp-primary);
    letter-spacing: 2px;
}

.bp-feature-content {
    color: var(--bp-text);
}

.bp-feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.bp-feature-desc {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--bp-gray);
}

.bp-feature-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-placeholder {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1) 0%, rgba(0, 200, 255, 0.08) 100%);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--bp-primary);
    border: 1px solid rgba(0, 102, 204, 0.15);
}

.feature-placeholder span {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.feature-placeholder p {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ===================================
   5. ACHIEVEMENTS SECTION
   =================================== */
.bp-achievements {
    background: var(--bp-gradient-dark);
    position: relative;
}

.bp-achievements::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 50%, rgba(0, 200, 255, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 90% 50%, rgba(0, 102, 204, 0.1) 0%, transparent 30%);
}

.bp-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.bp-stat-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bp-stat-value {
    font-family: var(--font-en);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--bp-white);
    line-height: 1;
}

.bp-stat-value .unit {
    font-size: 0.5em;
    color: var(--bp-accent);
}

.bp-stat-desc {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.8rem;
}

.bp-clients {
    text-align: center;
    position: relative;
    z-index: 1;
}

.bp-clients-title {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.bp-clients-logos {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.client-logo-placeholder {
    width: 120px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

/* ===================================
   6. FLOW SECTION
   =================================== */
.bp-flow {
    background: var(--bp-white);
}

.bp-flow-steps {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
}

.bp-flow-step {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--bp-gray-light);
    border-radius: 16px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.bp-flow-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.step-number {
    font-family: var(--font-en);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--bp-primary);
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.step-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--bp-text);
    margin-bottom: 0.8rem;
}

.step-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--bp-gray);
}

.bp-flow-arrow {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    color: var(--bp-primary);
    padding-top: 4rem;
}

/* ===================================
   7. FAQ SECTION
   =================================== */
.bp-faq {
    background: var(--bp-gray-light);
}

.bp-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.bp-faq-item {
    background: var(--bp-white);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.bp-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: var(--bp-text);
    text-align: left;
    transition: background 0.3s;
}

.bp-faq-question:hover {
    background: rgba(0, 102, 204, 0.05);
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--bp-primary);
    transition: transform 0.3s;
}

.bp-faq-item.open .faq-toggle {
    transform: rotate(45deg);
}

.bp-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.bp-faq-item.open .bp-faq-answer {
    max-height: 300px;
}

.bp-faq-answer p {
    padding: 0 2rem 1.5rem;
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--bp-gray);
}

/* ===================================
   8. CTA SECTION
   =================================== */
.bp-cta-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.bp-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bp-gradient);
    z-index: 0;
}

.bp-cta-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.bp-cta-bg::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.bp-cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--bp-white);
}

.bp-cta-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.bp-cta-text {
    font-size: 1rem;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 2.5rem;
}

.bp-cta-buttons .bp-btn-large {
    background: var(--bp-white);
    color: var(--bp-primary);
}

.bp-cta-buttons .bp-btn-large:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 1024px) {
    .bp-feature-item {
        grid-template-columns: 60px 1fr;
    }

    .bp-feature-visual {
        display: none;
    }

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

@media (max-width: 768px) {
    .bp-section {
        padding: 60px 0;
    }

    .bp-section-header {
        margin-bottom: 40px;
    }

    .bp-hero {
        min-height: auto;
        padding: 120px 5% 60px;
    }

    .bp-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .bp-hero-text {
        max-width: 100%;
    }

    .bp-hero-stats {
        justify-content: center;
    }

    .bp-hero-cta {
        justify-content: center;
    }

    .bp-hero-visual {
        display: none;
    }

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

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

    .bp-feature-item {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }

    .bp-feature-number {
        text-align: center;
    }

    .bp-feature-reverse {
        direction: ltr;
    }

    .bp-flow-steps {
        flex-direction: column;
        align-items: center;
    }

    .bp-flow-arrow {
        transform: rotate(90deg);
        padding: 0;
    }

    .bp-flow-step {
        max-width: 100%;
        width: 100%;
    }

    .bp-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .pc-only {
        display: none;
    }
}

@media (max-width: 480px) {
    .bp-problems-grid {
        grid-template-columns: 1fr;
    }

    .bp-stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .bp-clients-logos {
        gap: 1rem;
    }

    .client-logo-placeholder {
        width: 100px;
        height: 40px;
    }
}

/* Utility */
.sp-only {
    display: none;
}

@media (max-width: 768px) {
    .sp-only {
        display: inline;
    }
}