/* ============================================
   BOUNDARY PEG FINDER LANDING PAGE
   Page-specific styles for /boundary-peg-finder
   ============================================ */

/* Hero Wrapper with Background Image */
.peg-hero-wrapper {
    position: relative;
    overflow: hidden;
    min-height: 500px;
    contain: layout style;
}

.peg-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.peg-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(20, 20, 30, 0.7) 0%, rgba(30, 30, 45, 0.65) 50%, rgba(25, 25, 40, 0.7) 100%);
    z-index: 1;
}

.suburb-hero.peg-finder-hero {
    position: relative;
    z-index: 2;
    background: transparent !important;
}

@media (max-width: 768px) {
    .peg-hero-wrapper {
        min-height: auto;
    }

    .titles-page .valuation-search-input {
        font-size: 16px !important;
        min-height: 48px;
    }

    .titles-page .search-result-item {
        min-height: 60px;
        padding: 16px !important;
    }

    .titles-page .btn {
        min-height: 48px;
        font-size: 16px;
    }
}

/* Breadcrumb */
.peg-breadcrumb {
    background: #f8f9fa;
    padding: 12px 20px;
    border-bottom: 1px solid #e9ecef;
}

.peg-breadcrumb .container {
    max-width: 1200px;
    margin: 0 auto;
}

.peg-breadcrumb a {
    color: #533483;
    text-decoration: none;
    font-size: 14px;
}

.peg-breadcrumb a i {
    margin-right: 6px;
}

.peg-breadcrumb__separator {
    color: #6c757d;
    margin: 0 8px;
}

.peg-breadcrumb__current {
    color: #6c757d;
    font-size: 14px;
}

/* Search Input Overrides */
.peg-search-wrapper {
    position: relative;
}

.peg-search-wrapper .fa-search {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    z-index: 1;
}

.peg-search-input {
    padding-left: 45px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    height: 54px;
    width: 100%;
}

.peg-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 10000;
}

.peg-search-note {
    text-align: center;
    margin-top: 12px;
    color: #666;
    font-size: 0.9rem;
}

/* Feature Cards - Peg Types Grid */
.peg-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    padding: 20px 0;
}

.peg-type-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #533483;
}

.peg-type-card h3 {
    color: #533483;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.peg-type-card h3 i {
    color: #7b52ab;
}

/* Why Section */
.why-need-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.why-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.why-card i {
    font-size: 3rem;
    color: #533483;
    margin-bottom: 15px;
}

.why-card h3 {
    color: #333;
    margin-bottom: 10px;
}

/* How It Works Steps */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 40px auto 0;
}

.step-card {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #533483 0%, #7b52ab 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 15px;
}

.step-card h3 {
    color: #333;
    margin-bottom: 10px;
}

/* Comparison Table */
.comparison-table {
    max-width: 800px;
    margin: 30px auto 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th {
    background: linear-gradient(135deg, #533483 0%, #7b52ab 100%);
    color: white;
    padding: 15px;
    text-align: left;
}

.comparison-table td {
    padding: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table .highlight-row {
    background: #f3e5f5;
}

.comparison-table__star {
    color: #e67e22;
}

.comparison-table__price {
    color: #533483;
    font-weight: 700;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.peg-faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.peg-faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #533483;
}

.peg-faq-question:hover {
    background: #f5f5f5;
}

.peg-faq-answer {
    padding: 0 20px 20px;
    color: #555;
    line-height: 1.7;
    display: none;
}

/* Bottom CTA */
.peg-cta-section {
    background: linear-gradient(135deg, #533483 0%, #7b52ab 100%);
    color: white;
    padding: 60px 20px;
}

.peg-cta-section__inner {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.peg-cta-section__content {
    flex: 1;
    text-align: center;
}

.peg-cta-section__image {
    flex: 0 0 300px;
    max-width: 300px;
}

.peg-cta-section__image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.peg-cta-section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.peg-cta-section__desc {
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .peg-cta-section__inner {
        flex-direction: column;
    }

    .peg-cta-section__image {
        flex: 0 0 auto;
        max-width: 220px;
    }
}

.btn-cta {
    display: inline-block;
    background: #e67e22;
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    margin-top: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: #d35400;
}

.cta-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
    opacity: 0.9;
}

.cta-badge {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Include / What's In Report */
.include-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.include-card i {
    color: #533483;
    font-size: 1.5rem;
}

.include-card strong {
    color: #333;
}

.include-card p {
    color: #666;
    margin: 5px 0 0;
    font-size: 0.9rem;
}

/* Combined Video + Features Showcase */
.bf-showcase {
    padding: 60px 0;
    background: #fff;
}

.bf-showcase__heading {
    text-align: center;
    margin-bottom: 8px;
    font-size: 1.8rem;
    color: #1a1a2e;
}

.bf-showcase__subtitle {
    text-align: center;
    color: #666;
    font-size: 1.05rem;
    margin-bottom: 36px;
}

.bf-showcase__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.bf-showcase__video {
    position: sticky;
    top: 80px;
}

.bf-showcase__cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bf-showcase__card {
    display: flex;
    gap: 16px;
    padding: 16px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    background: #fff;
    transition: box-shadow 0.2s ease;
}

.bf-showcase__card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.bf-showcase__card-img-wrap {
    flex: 0 0 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.bf-showcase__enlarge-link {
    font-size: 0.7rem;
    color: #533483;
    cursor: pointer;
    white-space: nowrap;
    opacity: 0.75;
    transition: opacity 0.2s ease;
}

.bf-showcase__enlarge-link:hover {
    opacity: 1;
    text-decoration: underline;
}

.bf-showcase__enlarge-link i {
    font-size: 0.6rem;
    margin-right: 2px;
}

.bf-showcase__card-img {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    overflow: hidden;
}

.bf-showcase__card-img.bf-image-link {
    cursor: pointer;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bf-showcase__card-img.bf-image-link:hover {
    transform: scale(1.08);
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.bf-showcase__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bf-showcase__card-text {
    flex: 1;
    min-width: 0;
}

.bf-showcase__card-text h3 {
    font-size: 1rem;
    color: #533483;
    margin: 0 0 6px;
}

.bf-showcase__card-text p {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .bf-showcase__grid {
        grid-template-columns: 1fr;
    }

    .bf-showcase__video {
        position: static;
    }

    .bf-showcase__card-img-wrap {
        flex: 0 0 80px;
    }

    .bf-showcase__card-img {
        width: 80px;
        height: 80px;
    }
}

/* Video Section */
.peg-video-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 50px 20px;
}

.peg-video-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.peg-video-container h2 {
    color: #533483;
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.peg-video-container h2 i {
    margin-right: 8px;
}

.peg-video-subtitle {
    color: #666;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.peg-video-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(83, 52, 131, 0.2);
    max-width: 800px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
}

.peg-video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.peg-video-note {
    margin-top: 15px;
    color: #888;
    font-size: 0.9rem;
}

.peg-video-note i {
    margin-right: 4px;
}

/* Fence Boundary Survey Section */
.peg-fence-section {
    background: #fff;
    padding: 60px 20px;
}

.peg-fence-container {
    max-width: 1000px;
    margin: 0 auto;
}

.peg-fence-header {
    text-align: center;
    margin-bottom: 40px;
}

.peg-fence-badge {
    background: #e67e22;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
}

.peg-fence-header h2 {
    color: #533483;
    font-size: 2rem;
    margin: 15px 0 10px;
}

.peg-fence-header h2 i {
    margin-right: 8px;
}

.peg-fence-header p {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.peg-fence-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.peg-fence-card {
    background: linear-gradient(135deg, #f8f9fa, #fff);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid;
}

.peg-fence-card--cost { border-left-color: #e67e22; }
.peg-fence-card--corners { border-left-color: #533483; }
.peg-fence-card--disputes { border-left-color: #3498db; }

.peg-fence-card h3 {
    color: #333;
    margin-bottom: 12px;
}

.peg-fence-card h3 i {
    margin-right: 8px;
}

.peg-fence-card--cost h3 i { color: #27ae60; }
.peg-fence-card--corners h3 i { color: #533483; }
.peg-fence-card--disputes h3 i { color: #3498db; }

.peg-fence-card p {
    color: #555;
    line-height: 1.7;
}

.peg-fence-cta {
    text-align: center;
    margin-top: 35px;
}

.peg-fence-cta__button {
    display: inline-block;
    background: linear-gradient(135deg, #e67e22, #d35400);
    color: white;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.peg-fence-cta__button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.4);
}

.peg-fence-cta__button i {
    margin-right: 8px;
}

/* Dispute Section */
.peg-dispute-section {
    background: linear-gradient(135deg, #f3e5f5 0%, #e8daee 100%);
    padding: 60px 20px;
}

.peg-dispute-container {
    max-width: 1000px;
    margin: 0 auto;
}

.peg-dispute-header {
    text-align: center;
    margin-bottom: 35px;
}

.peg-dispute-header h2 {
    color: #533483;
    font-size: 1.9rem;
    margin-bottom: 10px;
}

.peg-dispute-header h2 i {
    margin-right: 8px;
}

.peg-dispute-header p {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.05rem;
}

.peg-dispute-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.peg-dispute-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.peg-dispute-card h3 {
    color: #533483;
    margin-bottom: 15px;
}

.peg-dispute-card h3 i {
    margin-right: 8px;
}

.peg-dispute-card p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.peg-dispute-card__tip {
    color: #666;
    font-size: 0.9rem;
}

/* What's Included Section */
.peg-included-section {
    background: #f3e5f5;
    padding: 40px;
    border-radius: 12px;
}

.peg-included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* Boundary Markers Note */
.peg-markers-note {
    text-align: center;
    max-width: 700px;
    margin: 20px auto;
    color: #666;
    font-style: italic;
}

.peg-markers-note i {
    color: #533483;
    margin-right: 6px;
}

/* Comparison Recommendation */
.peg-comparison-rec {
    text-align: center;
    max-width: 700px;
    margin: 30px auto;
    color: #666;
}

/* Why Section Header Override */
.peg-why-section {
    margin-top: 40px;
}

/* ============================================
   BF-STYLE SECTIONS (mirroring BF homepage)
   ============================================ */

.bf-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ── Features Section ─────────────────────────── */
.bf-features {
    padding: 60px 0;
    background: #fff;
}

.bf-features__heading {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.8rem;
    color: #1a1a2e;
}

.bf-features__grid {
    display: grid;
    gap: 24px;
}

.bf-features__card {
    padding: 24px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    background: #fff;
    transition: box-shadow 0.2s ease;
}

.bf-features__card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.bf-features__image-wrap {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.bf-features__image {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 1;
    object-fit: cover;
}

.bf-features__card h3 {
    font-size: 1.1rem;
    color: #533483;
    margin-bottom: 8px;
}

.bf-features__card p {
    font-size: 0.92rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 12px;
}

@media (min-width: 768px) {
    .bf-features__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .bf-features__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ── Mobile Navigation Highlight ────────────────── */
.bf-mobile-nav {
    padding: 60px 0;
    background: linear-gradient(135deg, #0d3b66 0%, #1a5632 100%);
    color: #fff;
}

.bf-mobile-nav__inner {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.bf-mobile-nav__content {
    flex: 1;
}

.bf-mobile-nav__image {
    flex: 0 0 360px;
    max-width: 360px;
}

.bf-mobile-nav__image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.bf-mobile-nav__title {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.bf-mobile-nav__desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.bf-mobile-nav__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.bf-mobile-nav__feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.bf-mobile-nav__feature svg {
    flex-shrink: 0;
}

.bf-mobile-nav__image-link {
    display: block;
    position: relative;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.bf-mobile-nav__image-link:hover {
    transform: scale(1.03);
}

.bf-mobile-nav__zoom-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    margin-top: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s ease;
}

.bf-mobile-nav__image-link:hover .bf-mobile-nav__zoom-hint {
    color: #e8a838;
}

.bf-mobile-nav__sample-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 12px;
    padding: 0.65rem 1.4rem;
    border: 2px solid #e8a838;
    border-radius: 8px;
    background: #e8a838;
    color: #fff;
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 16px rgba(232, 168, 56, 0.4);
    width: 100%;
}

.bf-mobile-nav__sample-btn:hover {
    background: #c48820;
    border-color: #c48820;
    box-shadow: 0 6px 20px rgba(232, 168, 56, 0.55);
    transform: translateY(-1px);
}

/* ── Lightbox Modals ──────────────────────────── */
.bf-sample-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 24px;
}

.bf-sample-modal.active {
    display: flex;
}

.bf-sample-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    max-width: 800px;
    padding: 12px 0;
}

.bf-sample-modal__header h3 {
    color: #fff;
    font-size: 1.1rem;
    margin: 0;
}

.bf-sample-modal__close {
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    padding: 0 0.5rem;
    line-height: 1;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.bf-sample-modal__close:hover {
    opacity: 1;
}

.bf-sample-modal__content {
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    background: #fff;
    border-radius: 12px;
    padding: 12px;
}

.bf-sample-modal__content img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .bf-mobile-nav__inner {
        flex-direction: column-reverse;
        align-items: center;
        text-align: center;
    }

    .bf-mobile-nav__image {
        flex: 0 0 auto;
        max-width: 280px;
        display: none;
    }

    .bf-mobile-nav__features {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .bf-mobile-nav__feature {
        justify-content: center;
    }
}

/* ── How It Works ──────────────────────────────── */
.bf-how-it-works {
    padding: 60px 0;
    background: #f7f8fa;
}

.bf-how-it-works__heading {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.8rem;
    color: #1a1a2e;
}

.bf-how-it-works__steps {
    display: grid;
    gap: 24px;
    text-align: center;
}

.bf-how-it-works__step {
    padding: 24px;
}

.bf-how-it-works__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #533483;
    color: #fff;
    border-radius: 50%;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.bf-how-it-works__step h3 {
    margin-bottom: 12px;
    color: #1a1a2e;
}

.bf-how-it-works__step p {
    color: #666;
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .bf-how-it-works__steps {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ── CTA Section ───────────────────────────────── */
.bf-cta-section {
    padding: 60px 0;
    background: #fff;
}

.bf-cta__inner {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.bf-cta__content {
    flex: 1;
    text-align: center;
}

.bf-cta__content h2 {
    margin-bottom: 12px;
    color: #1a1a2e;
}

.bf-cta__content p {
    color: #666;
    margin-bottom: 24px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.bf-cta__image {
    flex: 0 0 320px;
    max-width: 320px;
}

.bf-cta__image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .bf-cta__inner {
        flex-direction: column;
    }

    .bf-cta__image {
        flex: 0 0 auto;
        max-width: 260px;
        order: -1;
    }
}
