/*
 * page-home.css
 * Styles specific to front-page.php (Comagro main page).
 * Loaded conditionally via functions.php — only on the front page.
 *
 * Relies on variables already declared in style.css :root:
 *   --brand-1  : #0B1057  (navy)
 *   --brand-2  : #9DDDFF  (light blue)
 *   --brand-3  : #005200  (dark green)
 *   --brand-4  : #91C9FF  (border blue)
 *   --brand-5  : #fff969  (yellow)
 *   --brand-6  : #3E78E9  (link blue)
 *   --font-v1  : 'Fraunces', serif        (body/text font)
 *   --font-v2  : 'Bebas Neue', sans-serif  (display/heading font)
 *
 * If your variable names differ, adjust the var() references below.
 */

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */

.reveal,
.anim-fade-up {
    opacity: 0 !important;
    transform: translateY(24px) !important;
    transition: opacity 0.55s ease, transform 0.55s ease !important;
}

.reveal.is-visible,
.anim-fade-up.is-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.reveal-delay-1 { transition-delay: 0.10s !important; }
.reveal-delay-2 { transition-delay: 0.20s !important; }
.reveal-delay-3 { transition-delay: 0.30s !important; }
.anim-delay-2   { transition-delay: 0.10s !important; }
.anim-delay-3   { transition-delay: 0.20s !important; }
.anim-delay-4   { transition-delay: 0.30s !important; }


/* ============================================================
   SHARED BUTTON SYSTEM
   ============================================================ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-v1, 'Fraunces', serif);
    font-weight: 600;
    font-size: 14px;
    height: 52px;
    padding: 0 24px;
    border-radius: 16px;
    border: 1px solid transparent;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease, opacity 0.15s ease !important;
    white-space: nowrap;
}

/* Green primary — used on hero, how-to-order, for-who B2C, bottom CTA */
.btn--primary {
    background-color: #005200;
    color: #fff969;
    border-color: #91C9FF;
}
.btn--primary:hover {
    background-color: #003d00;
    color: #fff969;
    text-decoration: none;
}

/* Glass — hero secondary */
.btn--glass {
    background-color: rgba(255, 255, 255, 0.20);
    color: #0B1057;
    border-color: rgba(11, 16, 87, 0.30);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.btn--glass:hover {
    background-color: rgba(255, 255, 255, 0.35);
    color: #0B1057;
    text-decoration: none;
}

/* Outline — how-to-order secondary */
.btn--outline {
    background-color: #ffffff;
    color: #0B1057;
    border-color: #9DDDFF;
}
.btn--outline:hover {
    background-color: rgba(157, 221, 255, 0.20);
    color: #0B1057;
    text-decoration: none;
}

/* Light blue — for-who B2B */
.btn--light-blue {
    background-color: #9DDDFF;
    color: #0B1057;
    border-color: #9DDDFF;
}
.btn--light-blue:hover {
    background-color: #ffffff;
    color: #0B1057;
    text-decoration: none;
}

/* Smaller variant (48px) */
.btn--sm {
    height: 48px;
}

/* ── Arrow animation inside buttons ── */
.btn--arrow {
    overflow: hidden;
}

.btn-arrow {
    position: relative;
    display: inline-flex;
    align-items: center;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    overflow: hidden;
}

.btn-arrow__svg {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.btn-arrow__svg--out  { transform: translateX(0);    opacity: 1; }
.btn-arrow__svg--in   { transform: translateX(-16px); opacity: 0; }

.btn--arrow:hover .btn-arrow__svg--out { transform: translateX(16px); opacity: 0; }
.btn--arrow:hover .btn-arrow__svg--in  { transform: translateX(0);    opacity: 1; }

/* ── Text link with sliding double arrow ── */
.link--arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-v1, 'Fraunces', serif);
    font-size: 14px;
    font-weight: 600;
    color: #3E78E9;
    text-decoration: none;
}
.link--arrow:hover {
    opacity: 0.75;
    text-decoration: none;
}

/* Single container holds both SVGs — text comes first in HTML, arrow after */
.link-arrow {
    position: relative;
    display: flex;
    align-items: center;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    overflow: hidden;
}

.link-arrow svg {
    position: absolute;
    top: 0;
    right: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Default state */
.link-arrow .la-out { transform: translateX(0);    opacity: 1; }
.link-arrow .la-in  { transform: translateX(-16px); opacity: 0; }

/* Hover state */
.link--arrow:hover .la-out { transform: translateX(16px); opacity: 0; }
.link--arrow:hover .la-in  { transform: translateX(0);    opacity: 1; }

/* ── Big arrow (32px) used in product category links ── */
.fp-products__link-arrow {
    position: relative;
    display: flex;
    align-items: center;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    overflow: hidden;
}

.big-arrow__svg {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.big-arrow__svg--out { transform: translateX(0);    opacity: 1; }
.big-arrow__svg--in  { transform: translateX(-32px); opacity: 0; }

.fp-products__link-item:hover .big-arrow__svg--out { transform: translateX(32px); opacity: 0; }
.fp-products__link-item:hover .big-arrow__svg--in  { transform: translateX(0);    opacity: 1; }


/* ============================================================
   HERO
   ============================================================ */

.fp-hero {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 886px;
    padding: 128px 0;
    background-color: #9DDDFF;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    box-sizing: border-box;
}

.fp-hero__overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(to top, rgba(11, 16, 87, 0.18) 0%, transparent 55%);
}

.fp-hero__inner {
    position: relative;
    z-index: 15;
    width: 100%;
    max-width: 1664px;
    margin: 0 auto;
    padding: 0 32px;
    box-sizing: border-box;
}

.fp-hero__content {
    display: flex;
    flex-direction: column;
    max-width: 720px;
}

.fp-hero__eyebrow {
    font-family: var(--font-v1, 'Fraunces', serif);
    font-size: 13px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #0B1057;
    opacity: 0.80;
    margin-bottom: 16px;
    display: block;
}

.fp-hero__title {
    font-family: var(--font-v2, 'Bebas Neue', sans-serif);
    font-size: clamp(56px, 9vw, 96px);
    line-height: 1;
    color: #0B1057;
    margin: 0 0 16px;
}

.fp-hero__subtitle {
    font-family: var(--font-v2, 'Bebas Neue', sans-serif);
    font-size: clamp(22px, 3.2vw, 36px);
    line-height: 1.4;
    color: #0B1057;
    margin: 0 0 16px;
    font-weight: normal;
}

.fp-hero__description {
    font-family: var(--font-v1, 'Fraunces', serif);
    font-size: 16px;
    line-height: 1.7;
    color: #0B1057;
    max-width: 480px;
    margin: 0 0 32px;
}

.fp-hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}


/* ============================================================
   TRUST STRIP
   ============================================================ */

.fp-trust-strip {
    width: 100%;
    border-bottom: 1px solid #9DDDFF;
    font-family: var(--font-v1, 'Fraunces', serif);
}

.fp-trust-strip__grid {
    display: flex;
    flex-direction: row;
    width: 100%;
    divide-x: 1px solid #9DDDFF;
}

.fp-trust-strip__item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 28px 16px;
    text-align: center;
    border-right: 1px solid #9DDDFF;
}
.fp-trust-strip__item:last-child {
    border-right: none;
}

.fp-trust-strip__value {
    font-family: var(--font-v2, 'Bebas Neue', sans-serif);
    font-size: 48px;
    line-height: 1;
    color: #0B1057;
    display: block;
}

.fp-trust-strip__label {
    font-size: 13px;
    color: rgba(11, 16, 87, 0.60);
    margin-top: 4px;
    line-height: 1.3;
    max-width: 120px;
    display: block;
}


/* ============================================================
   FROM PLANTATION TO YOUR WORKSHOP
   ============================================================ */

.fp-welcome {
    display: flex;
    flex-direction: row;
    width: 100%;
    border-bottom: 1px solid #9DDDFF;
}

.fp-welcome__image {
    position: relative;
    width: 50%;
    flex-shrink: 0;
    overflow: hidden;
}
.fp-welcome__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fp-welcome__content {
    width: 50%;
    display: flex;
    flex-direction: column;
    font-family: var(--font-v1, 'Fraunces', serif);
    padding: 48px 40px;
    box-sizing: border-box;
}

.fp-welcome__title {
    font-family: var(--font-v2, 'Bebas Neue', sans-serif);
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.1;
    color: #0B1057;
    margin: 0 0 20px;
}

.fp-welcome__text {
    font-size: 15px;
    line-height: 1.8;
    color: #0B1057;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.fp-welcome__text p {
    margin: 0;
}

.fp-welcome__link {
    margin-top: 32px;
    color: #3E78E9;
}


/* ============================================================
   HOW TO ORDER
   ============================================================ */

.fp-how-to-order {
    width: 100%;
    font-family: var(--font-v1, 'Fraunces', serif);
    border-bottom: 1px solid #9DDDFF;
}

.fp-how-to-order__header {
    padding: 48px 32px 40px;
}

.fp-how-to-order__eyebrow {
    display: block;
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(11, 16, 87, 0.40);
    margin-bottom: 12px;
}

.fp-how-to-order__title {
    font-family: var(--font-v2, 'Bebas Neue', sans-serif);
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1;
    color: #0B1057;
    margin: 0 0 8px;
}

.fp-how-to-order__intro {
    font-size: 14px;
    color: rgba(11, 16, 87, 0.60);
    max-width: 480px;
    margin: 0;
    line-height: 1.6;
}

.fp-how-to-order__steps {
    display: flex;
    flex-direction: row;
}

.fp-how-to-order__step {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 48px 40px;
    border-right: 1px solid #9DDDFF;
}
.fp-how-to-order__step:last-child {
    border-right: none;
}

.fp-how-to-order__number {
    font-family: var(--font-v2, 'Bebas Neue', sans-serif);
    font-size: 72px;
    line-height: 1;
    color: rgba(11, 16, 87, 0.10);
    user-select: none;
    margin-bottom: 16px;
    display: block;
}

.fp-how-to-order__step-title {
    font-family: var(--font-v2, 'Bebas Neue', sans-serif);
    font-size: clamp(24px, 2.5vw, 32px);
    line-height: 1;
    color: #0B1057;
    margin: 0 0 16px;
}

.fp-how-to-order__step-body {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(11, 16, 87, 0.65);
    margin: 0;
}

.fp-how-to-order__cta-bar {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 28px 40px;
    flex-wrap: wrap;
}

.fp-how-to-order__cta-note {
    font-size: 14px;
    color: rgba(11, 16, 87, 0.55);
    margin: 0;
}

.fp-how-to-order__cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}


/* ============================================================
   OUR PRODUCT RANGE
   ============================================================ */

.fp-products {
    width: 100%;
    border-bottom: 1px solid #9DDDFF;
}

.fp-products__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px;
    border-bottom: 1px solid #9DDDFF;
    font-family: var(--font-v1, 'Fraunces', serif);
}

.fp-products__title {
    font-family: var(--font-v2, 'Bebas Neue', sans-serif);
    font-size: 36px;
    line-height: 1;
    color: #0B1057;
    margin: 0;
}

.fp-products__subtitle {
    font-size: 13px;
    color: rgba(11, 16, 87, 0.50);
    margin: 4px 0 0;
}

/* 3 paired columns: image on top, link below */
.fp-products__grid {
    display: flex;
    flex-direction: row;
    width: 100%;
}

.fp-products__pair {
    flex: 1;
    display: flex;
    flex-direction: column;
    border-right: 1px solid #9DDDFF;
}
.fp-products__pair:last-child {
    border-right: none;
}

.fp-products__img-wrap {
    flex: 1;
    min-height: 260px;
    overflow: hidden;
}
.fp-products__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}
.fp-products__pair:hover .fp-products__img-wrap img {
    transform: scale(1.02);
}

.fp-products__link-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 32px;
    font-family: var(--font-v1, 'Fraunces', serif);
    text-decoration: none;
    transition: background-color 0.15s ease !important;
    color: #0B1057;
    border-top: 1px solid #9DDDFF;
}
.fp-products__link-item:hover {
    background-color: rgba(157, 221, 255, 0.10);
    text-decoration: none;
    color: #0B1057;
}
.fp-products__link-item--border {
    /* border handled by .fp-products__pair border-right */
}

.fp-products__link-text {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.fp-products__link-title {
    font-family: var(--font-v2, 'Bebas Neue', sans-serif);
    font-size: 24px;
    line-height: 1;
    color: #0B1057 !important;
    margin: 0;
    display: block;
}

.fp-products__link-sub {
    font-size: 12px;
    color: rgba(11, 16, 87, 0.45) !important;
    margin: 4px 0 0;
    display: block;
}

.fp-products__link-arrow {
    color: #005200;
}


/* ============================================================
   FEATURED CHOCOLATE MASSES
   ============================================================ */

.fp-featured {
    width: 100%;
    font-family: var(--font-v1, 'Fraunces', serif);
    border-bottom: 1px solid #9DDDFF;
}

.fp-featured__header {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    padding: 48px 32px 32px;
    gap: 16px;
    flex-wrap: wrap;
}

.fp-featured__title {
    font-family: var(--font-v2, 'Bebas Neue', sans-serif);
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1;
    color: #0B1057;
    margin: 0;
}

.fp-featured__subtitle {
    font-size: 14px;
    color: rgba(11, 16, 87, 0.60);
    margin: 8px 0 0;
}

.fp-featured__view-all {
    flex-shrink: 0;
}

.fp-featured__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid #9DDDFF;
}

.fp-featured__card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: #0B1057;
    transition: background-color 0.3s ease;
}
.fp-featured__card:hover {
    background-color: rgba(157, 221, 255, 0.08);
    text-decoration: none;
}
.fp-featured__card--border {
    border-right: 1px solid #9DDDFF;
}

.fp-featured__card-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-color: #f5f5f5;
}
.fp-featured__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}
.fp-featured__card:hover .fp-featured__card-img img {
    transform: scale(1.03);
}

.fp-featured__card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 24px;
}

.fp-featured__card-region {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(11, 16, 87, 0.40);
    display: block;
    margin-bottom: 4px;
}

.fp-featured__card-title {
    font-family: var(--font-v2, 'Bebas Neue', sans-serif);
    font-size: 22px;
    line-height: 1.2;
    color: #0B1057;
    margin: 0 0 8px;
}

.fp-featured__card-note {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(11, 16, 87, 0.65);
    font-style: italic;
    flex: 1;
    margin: 0;
}

.fp-featured__card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #9DDDFF;
}

.fp-featured__card-price {
    font-size: 15px;
    font-weight: 600;
    color: #958e09;
}

.fp-featured__card-view {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 600;
    color: #3E78E9;
    transition: gap 0.3s ease;
}
.fp-featured__card:hover .fp-featured__card-view {
    gap: 8px;
}


/* ============================================================
   FOR WHO — B2B / B2C PANELS
   ============================================================ */

.fp-for-who {
    display: flex;
    flex-direction: row;
    width: 100%;
    font-family: var(--font-v1, 'Fraunces', serif);
    border-bottom: 1px solid #9DDDFF;
}

.fp-for-who__panel {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 56px 40px;
    box-sizing: border-box;
}

.fp-for-who__panel--b2b {
    background-color: #0B1057;
    border-right: 1px solid rgba(157, 221, 255, 0.30);
}

.fp-for-who__panel--b2c {
    background-color: #ffffff;
}

.fp-for-who__panel-top {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
}

.fp-for-who__eyebrow {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(157, 221, 255, 0.60);
    display: block;
    margin-bottom: 16px;
}
.fp-for-who__eyebrow--dark {
    color: rgba(11, 16, 87, 0.40);
}

.fp-for-who__panel-title {
    font-family: var(--font-v2, 'Bebas Neue', sans-serif);
    font-size: clamp(36px, 4vw, 56px);
    line-height: 1;
    color: #ffffff;
    margin: 0 0 24px;
}
.fp-for-who__panel-title--dark {
    color: #0B1057;
}

.fp-for-who__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fp-for-who__list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.70);
    line-height: 1.6;
}
.fp-for-who__list--dark li {
    color: rgba(11, 16, 87, 0.65);
}

.fp-for-who__bullet {
    flex-shrink: 0;
    margin-top: 2px;
    font-style: normal;
}
.fp-for-who__bullet--blue  { color: #9DDDFF; }
.fp-for-who__bullet--green { color: #005200; }


/* ============================================================
   BOTTOM CTA — NOT SURE WHICH ORIGIN?
   ============================================================ */

.fp-bottom-cta {
    display: flex;
    flex-direction: row;
    width: 100%;
}

.fp-bottom-cta__content {
    width: 50%;
    display: flex;
    flex-direction: column;
    font-family: var(--font-v1, 'Fraunces', serif);
    padding: 56px 40px;
    box-sizing: border-box;
}

.fp-bottom-cta__title {
    font-family: var(--font-v2, 'Bebas Neue', sans-serif);
    font-size: clamp(28px, 4vw, 48px);
    line-height: 1.1;
    color: #0B1057;
    margin: 0 0 16px;
}

.fp-bottom-cta__text {
    font-size: 15px;
    line-height: 1.8;
    color: #0B1057;
    max-width: 400px;
}
.fp-bottom-cta__text p {
    margin: 0;
}

.fp-bottom-cta__buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
}

.fp-bottom-cta__guide {
    color: #3E78E9;
}

.fp-bottom-cta__image {
    position: relative;
    width: 50%;
    overflow: hidden;
}
.fp-bottom-cta__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* ============================================================
   RESPONSIVE — Tablet (max 1024px)
   ============================================================ */

@media (max-width: 1024px) {

    .fp-featured__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .fp-featured__card--border:nth-child(2) {
        border-right: none;
    }
    .fp-featured__card:nth-child(1),
    .fp-featured__card:nth-child(2) {
        border-bottom: 1px solid #9DDDFF;
    }
}


/* ============================================================
   RESPONSIVE — Mobile (max 749px)
   ============================================================ */

@media (max-width: 749px) {

    /* Hero */
    .fp-hero {
        min-height: 600px;
        padding: 80px 0;
    }
    .fp-hero__inner {
        padding: 0 20px;
    }

    /* Trust strip */
    .fp-trust-strip__grid {
        flex-direction: column;
    }
    .fp-trust-strip__item {
        border-right: none;
        border-bottom: 1px solid #9DDDFF;
        padding: 20px 16px;
    }
    .fp-trust-strip__item:last-child {
        border-bottom: none;
    }

    /* Welcome */
    .fp-welcome {
        flex-direction: column;
    }
    .fp-welcome__image,
    .fp-welcome__content {
        width: 100%;
    }
    .fp-welcome__image {
        min-height: 280px;
    }
    .fp-welcome__content {
        padding: 32px 20px;
    }

    /* How to Order */
    .fp-how-to-order__header {
        padding: 32px 20px 24px;
    }
    .fp-how-to-order__steps {
        flex-direction: column;
    }
    .fp-how-to-order__step {
        border-right: none;
        border-bottom: 1px solid #9DDDFF;
        padding: 32px 20px;
    }
    .fp-how-to-order__step:last-child {
        border-bottom: none;
    }
    .fp-how-to-order__cta-bar {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 20px;
    }

    /* Products */
    .fp-products__header {
        padding: 24px 20px;
    }
    .fp-products__grid {
        flex-direction: column;
    }
    .fp-products__pair {
        border-right: none;
        border-bottom: 1px solid #9DDDFF;
    }
    .fp-products__pair:last-child {
        border-bottom: none;
    }
    .fp-products__img-wrap {
        min-height: 220px;
    }
    .fp-products__link-item {
        padding: 20px;
    }

    /* Featured */
    .fp-featured__header {
        padding: 32px 20px 24px;
        flex-direction: column;
        align-items: flex-start;
    }
    .fp-featured__grid {
        grid-template-columns: 1fr;
    }
    .fp-featured__card--border {
        border-right: none;
        border-bottom: 1px solid #9DDDFF;
    }

    /* For Who */
    .fp-for-who {
        flex-direction: column;
    }
    .fp-for-who__panel {
        width: 100%;
        padding: 40px 20px;
    }
    .fp-for-who__panel--b2b {
        border-right: none;
        border-bottom: 1px solid rgba(157, 221, 255, 0.30);
    }

    /* Bottom CTA */
    .fp-bottom-cta {
        flex-direction: column;
    }
    .fp-bottom-cta__content {
        width: 100%;
        padding: 40px 20px;
    }
    .fp-bottom-cta__image {
        width: 100%;
        min-height: 280px;
    }
}
