/**
 * Premium home layout — scoped under .fc-home-modern only.
 * Vanilla CSS animations (no React). Respects prefers-reduced-motion.
 */

.fc-home-modern {
    --fc-navy: #030f27;
    --fc-navy-2: #0a1f45;
    --fc-gold: #fdbe33;
    --fc-gold-soft: rgba(253, 190, 51, 0.22);
    --fc-muted: #5c6577;
    --fc-radius-xl: 20px;
    --fc-radius-lg: 16px;
    --fc-shadow: 0 8px 40px rgba(3, 15, 39, 0.12);
    --fc-shadow-lg: 0 24px 60px rgba(3, 15, 39, 0.18);
    --fc-ring: rgba(253, 190, 51, 0.45);
    color: #252525;
    background: #fafbfc;
}

@media (prefers-reduced-motion: reduce) {
    .fc-home-modern *,
    .fc-home-modern *::before,
    .fc-home-modern *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.05ms !important;
        scroll-behavior: auto !important;
    }
}

/* ── Scroll reveal ───────────────────────────────────────────── */
.fc-home-modern .fc-home-reveal {
    opacity: 0;
    transform: translateY(36px);
    transition:
        opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}
.fc-home-modern .fc-home-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.fc-home-modern .fc-home-reveal-stagger > .fc-home-reveal-child {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.fc-home-modern .fc-home-reveal-stagger.is-visible > .fc-home-reveal-child:nth-child(1) {
    opacity: 1;
    transform: none;
    transition-delay: 0.05s;
}
.fc-home-modern .fc-home-reveal-stagger.is-visible > .fc-home-reveal-child:nth-child(2) {
    opacity: 1;
    transform: none;
    transition-delay: 0.12s;
}
.fc-home-modern .fc-home-reveal-stagger.is-visible > .fc-home-reveal-child:nth-child(3) {
    opacity: 1;
    transform: none;
    transition-delay: 0.19s;
}
.fc-home-modern .fc-home-reveal-stagger.is-visible > .fc-home-reveal-child:nth-child(4) {
    opacity: 1;
    transform: none;
    transition-delay: 0.26s;
}

/* Home services grid (Livewire partial) — image tile height */
.fc-home-modern .fc-home-services-wrap .service-img {
    position: relative;
    overflow: hidden;
    height: 280px;
    width: 100%;
}
.fc-home-modern .fc-home-services-wrap .service-img .service-img-main-link {
    display: block;
    height: 100%;
    width: 100%;
}
.fc-home-modern .fc-home-services-wrap .service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.3s ease;
}

/* ── Hero / carousel ─────────────────────────────────────────── */
.fc-home-modern .fc-home-hero {
    position: relative;
    isolation: isolate;
}
.fc-home-modern .fc-home-carousel {
    position: relative;
    background: var(--fc-navy);
}
.fc-home-modern .fc-home-carousel .carousel-inner {
    border-radius: 0;
    overflow: hidden;
    min-height: clamp(380px, 72vh, 760px);
}
.fc-home-modern .fc-home-carousel .carousel-item {
    position: relative;
    min-height: clamp(380px, 72vh, 760px);
}
.fc-home-modern .fc-home-carousel .carousel-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.06) contrast(1.03);
}
/* Atmospheric depth: vignette + bottom lift + lateral falloff (photo stays visible where it reads best) */
.fc-home-modern .fc-home-carousel .carousel-item::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        radial-gradient(ellipse 85% 70% at 50% 100%, rgba(3, 15, 39, 0.88) 0%, rgba(3, 15, 39, 0.25) 48%, transparent 72%),
        radial-gradient(ellipse 55% 45% at 15% 25%, rgba(253, 190, 51, 0.07), transparent 60%),
        linear-gradient(to top, rgba(3, 15, 39, 0.92) 0%, transparent 42%),
        linear-gradient(90deg, rgba(3, 15, 39, 0.52) 0%, rgba(3, 15, 39, 0.12) 45%, transparent 78%),
        linear-gradient(270deg, rgba(3, 15, 39, 0.35) 0%, transparent 55%);
}
/* Film edge / corner weight (premium, less “floating box”) */
.fc-home-modern .fc-home-carousel .carousel-item::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.55;
    background: radial-gradient(ellipse 105% 100% at 50% -5%, transparent 52%, rgba(3, 15, 39, 0.55) 100%);
}

/* Subtle pattern + brushed edge — calm, editorial (no pulsing distractions) */
.fc-home-modern .fc-home-hero-mask {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    opacity: 0.45;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        radial-gradient(circle at 100% 0%, rgba(253, 190, 51, 0.08), transparent 35%);
    background-size: 36px 36px, 36px 36px, auto;
    mask-image: linear-gradient(to bottom, black 0%, black 72%, transparent 100%);
}
@media (max-width: 767px) {
    .fc-home-modern .fc-home-hero-mask {
        background-size: 24px 24px, 24px 24px, auto;
        opacity: 0.35;
    }
}

@media (prefers-reduced-motion: no-preference) {
    @keyframes fc-home-kenburns {
        0% {
            transform: scale(1.04);
        }
        100% {
            transform: scale(1.09);
        }
    }
    .fc-home-modern .fc-home-carousel .carousel-item.active img {
        animation: fc-home-kenburns 14s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
        transform-origin: 50% 40%;
    }
}

/* Caption shell: asymmetric layout leaves more photo “hero” visible */
.fc-home-modern .fc-home-carousel .fc-home-carousel-caption-shell.carousel-caption {
    z-index: 3;
    top: auto;
    bottom: clamp(92px, 15vh, 150px);
    left: clamp(16px, 5vw, 64px);
    right: clamp(100px, 15vw, 180px);
    transform: none;
    width: auto;
    padding: 0;
    margin: 0;
    height: auto;
    min-height: 0;
    max-height: none;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-end;
    background: transparent;
    backdrop-filter: none;
    border: none;
    box-shadow: none;
}
.fc-home-modern .carousel-caption.fc-home-carousel-caption-shell {
    display: flex !important;
    justify-content: flex-start;
    align-items: flex-end;
    text-align: start;
}

/* Ribbon panel — sharp brand accent instead of opaque floating blob */
.fc-home-modern .fc-home-hero-copy {
    position: relative;
    max-width: min(28rem, 88vw);
    padding: clamp(1.125rem, 2.8vw, 1.75rem) clamp(1rem, 3.2vw, 2rem) clamp(1.25rem, 3vw, 2rem)
        clamp(1.25rem, 3.8vw, 2.65rem);
    border-radius: 0 clamp(14px, 2vw, 20px) clamp(14px, 2vw, 20px) 0;
    border-left: 4px solid var(--fc-gold);
    background: linear-gradient(
        100deg,
        rgba(3, 15, 39, 0.92) 0%,
        rgba(3, 15, 39, 0.58) 58%,
        rgba(3, 15, 39, 0.08) 88%,
        transparent 100%
    );
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        12px 32px 48px rgba(3, 15, 39, 0.28);
}

@supports ((-webkit-backdrop-filter: blur(12px)) or (backdrop-filter: blur(12px))) {
    .fc-home-modern .fc-home-hero-copy {
        -webkit-backdrop-filter: blur(14px) saturate(1.15);
        backdrop-filter: blur(14px) saturate(1.15);
    }
}

.fc-home-modern .fc-home-hero-copy .fc-home-hero-kicker {
    font-size: clamp(0.75rem, 1.85vw, 0.9375rem);
    font-weight: 700;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--fc-gold);
    margin: 0 0 10px;
    padding-left: 0.6rem;
    border-left: 2px solid rgba(253, 190, 51, 0.55);
    line-height: 1.35;
}
.fc-home-modern .fc-home-hero-copy .fc-home-hero-title {
    font-size: clamp(1.65rem, 4.8vw + 0.35rem, 3.05rem);
    font-weight: 800;
    line-height: 1.07;
    letter-spacing: -0.035em;
    margin: 0 0 1.125rem;
    color: #fff;
    text-shadow: 0 2px 32px rgba(0, 0, 0, 0.25);
}

.fc-home-modern .fc-home-hero-copy .btn.fc-home-hero-cta,
.fc-home-modern .fc-home-carousel .carousel-caption.fc-home-carousel-caption-shell .btn.fc-home-hero-cta {
    border-radius: 999px;
    padding: 13px 30px;
    font-weight: 700;
    font-size: 0.9375rem;
    letter-spacing: 0.03em;
    border: none;
    background: linear-gradient(158deg, #fdbe33 0%, #f0aa20 52%, #d49216 100%);
    color: var(--fc-navy) !important;
    box-shadow: 0 6px 22px rgba(253, 190, 51, 0.38), 0 2px 0 rgba(255, 255, 255, 0.15) inset;
    transition:
        transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.28s ease;
}
.fc-home-modern .fc-home-hero-copy .btn.fc-home-hero-cta:hover,
.fc-home-modern .fc-home-carousel .carousel-caption.fc-home-carousel-caption-shell .btn.fc-home-hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(253, 190, 51, 0.48), 0 2px 0 rgba(255, 255, 255, 0.2) inset;
    color: var(--fc-navy) !important;
}

@media (max-width: 991px) {
    .fc-home-modern .carousel-caption.fc-home-carousel-caption-shell {
        right: 16px !important;
        left: 16px !important;
        bottom: clamp(104px, 18vh, 140px);
        justify-content: center;
        text-align: center;
        align-items: flex-end;
    }
    .fc-home-modern .fc-home-hero-copy {
        max-width: 100%;
        text-align: center;
        padding-left: clamp(1rem, 4vw, 1.75rem);
        padding-right: clamp(1rem, 4vw, 1.75rem);
        border-left: none;
        border-right: none;
        border-radius: clamp(14px, 2vw, 18px);
        border-top: 4px solid var(--fc-gold);
        background: linear-gradient(
            165deg,
            rgba(3, 15, 39, 0.94) 0%,
            rgba(3, 15, 39, 0.72) 45%,
            rgba(3, 15, 39, 0.7) 100%
        );
    }
    .fc-home-modern .fc-home-hero-copy .fc-home-hero-kicker {
        padding-left: 0;
        padding-right: 0;
        border-left: none;
        border-right: none;
        display: inline-block;
        letter-spacing: 0.22em;
    }
    .fc-home-modern .fc-home-hero-copy .fc-home-hero-title {
        margin-bottom: 1rem;
    }
}

/* ── RTL: mirror editorial hero (desktop) ──────────────────── */
@media (min-width: 992px) {
    html[dir='rtl'] .fc-home-modern .carousel-caption.fc-home-carousel-caption-shell {
        left: clamp(100px, 15vw, 180px);
        right: clamp(16px, 5vw, 64px);
        justify-content: flex-end;
        text-align: end;
    }

    html[dir='rtl'] .fc-home-modern .fc-home-hero-copy {
        border-left: none;
        border-radius: clamp(14px, 2vw, 20px) 0 0 clamp(14px, 2vw, 20px);
        border-right: 4px solid var(--fc-gold);
        padding: clamp(1.125rem, 2.8vw, 1.75rem) clamp(1.25rem, 3.8vw, 2.65rem) clamp(1.25rem, 3vw, 2rem)
            clamp(1rem, 3.2vw, 2rem);
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.08),
            -12px 32px 48px rgba(3, 15, 39, 0.28);
        background: linear-gradient(
            260deg,
            rgba(3, 15, 39, 0.92) 0%,
            rgba(3, 15, 39, 0.58) 58%,
            rgba(3, 15, 39, 0.08) 88%,
            transparent 100%
        );
    }

    html[dir='rtl'] .fc-home-modern .fc-home-hero-copy .fc-home-hero-kicker {
        padding-left: 0;
        padding-right: 0.6rem;
        border-left: none;
        border-right: 2px solid rgba(253, 190, 51, 0.55);
    }
}

/** RTL: shift warm vignette spotlight for reading flow near hero copy edge */
html[dir='rtl'] .fc-home-modern .fc-home-carousel .carousel-item::before {
    background:
        radial-gradient(ellipse 85% 70% at 50% 100%, rgba(3, 15, 39, 0.88) 0%, rgba(3, 15, 39, 0.25) 48%, transparent 72%),
        radial-gradient(ellipse 55% 45% at 85% 25%, rgba(253, 190, 51, 0.07), transparent 60%),
        linear-gradient(to top, rgba(3, 15, 39, 0.92) 0%, transparent 42%),
        linear-gradient(270deg, rgba(3, 15, 39, 0.52) 0%, rgba(3, 15, 39, 0.12) 45%, transparent 78%),
        linear-gradient(90deg, rgba(3, 15, 39, 0.35) 0%, transparent 55%);
}

.fc-home-modern .fc-home-carousel-indicators {
    bottom: clamp(64px, 11vh, 108px);
    z-index: 4;
}
.fc-home-modern .fc-home-carousel-indicators li {
    width: 8px;
    height: 8px;
    margin: 0 5px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.35);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
}
.fc-home-modern .fc-home-carousel-indicators li.active {
    width: 22px;
    border-radius: 999px;
    background: linear-gradient(90deg, #fdbe33, #ffc94d);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2);
    opacity: 1;
}

.fc-home-modern .fc-home-carousel-control {
    width: 52px;
    height: 52px;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    background: rgba(3, 15, 39, 0.35) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    opacity: 0.95;
    box-shadow: 0 12px 32px rgba(3, 15, 39, 0.2);
}
.fc-home-modern .fc-home-carousel-control:hover {
    background: rgba(253, 190, 51, 0.22) !important;
}

.fc-home-scroll-hint {
    position: absolute;
    bottom: 18px;
    left: 50%;
    z-index: 4;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    padding: 8px;
    background: transparent;
}
.fc-home-scroll-hint .fc-home-scroll-dot {
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--fc-gold);
    margin: 8px auto 0;
}

@keyframes fc-home-bounce-dot {
    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(8px);
        opacity: 0.8;
    }
}
@media (prefers-reduced-motion: no-preference) {
    .fc-home-scroll-hint .fc-home-scroll-dot {
        animation: fc-home-bounce-dot 1.5s ease-in-out infinite;
    }
}

/* ── Trust strip ────────────────────────────────────────────── */
.fc-home-trust-strip {
    background: linear-gradient(90deg, var(--fc-navy), var(--fc-navy-2));
    padding: clamp(14px, 3vw, 22px) 16px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px 24px;
    align-items: center;
}
.fc-home-trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: center;
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}
.fc-home-trust-item i {
    color: var(--fc-gold);
    font-size: 1.1rem;
    width: 1.5rem;
}

/* ── Section shell ───────────────────────────────────────────── */
.fc-home-modern .fc-home-section-shell {
    max-width: 1280px;
    margin-inline: auto;
    padding-inline: clamp(16px, 4vw, 32px);
}
.fc-home-modern .fc-home-head {
    margin-bottom: clamp(36px, 6vw, 56px);
    text-align: center;
}
.fc-home-modern .fc-home-kicker {
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--fc-gold);
    margin-bottom: 10px;
}
.fc-home-modern .fc-home-title {
    font-size: clamp(1.65rem, 4vw, 2.65rem);
    font-weight: 800;
    color: var(--fc-navy);
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 0;
}
.fc-home-modern .fc-home-sub {
    max-width: 560px;
    margin: 12px auto 0;
    color: var(--fc-muted);
    font-size: 1rem;
    line-height: 1.65;
}

/* ── Feature row — glass cards ───────────────────────────────── */
.fc-home-modern .fc-home-features {
    padding-block: clamp(56px, 10vw, 96px);
    background: radial-gradient(
        circle at top right,
        rgba(253, 190, 51, 0.12),
        transparent 55%
    );
}
.fc-home-modern .fc-home-features-inner {
    max-width: 1240px;
    margin-inline: auto;
    padding-inline: clamp(14px, 3vw, 28px);
}
.fc-home-modern .fc-home-features .feature-item {
    height: 100%;
    padding: clamp(26px, 4vw, 34px);
    border-radius: var(--fc-radius-xl);
    background: linear-gradient(155deg, #ffffff 0%, #f8f9fb 100%);
    border: 1px solid rgba(3, 15, 39, 0.06);
    box-shadow: var(--fc-shadow);
    transition:
        transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.38s ease,
        border-color 0.38s ease;
}
.fc-home-modern .fc-home-features .feature-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--fc-shadow-lg);
    border-color: var(--fc-gold-soft);
}
.fc-home-modern .fc-home-features .feature-icon {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(145deg, var(--fc-navy) 0%, var(--fc-navy-2) 100%);
    margin-bottom: 18px !important;
    box-shadow: 0 12px 30px rgba(3, 15, 39, 0.25);
    float: none !important;
}
.fc-home-modern .fc-home-features .feature-icon i {
    color: var(--fc-gold) !important;
    font-size: 28px !important;
}
.fc-home-modern .fc-home-features .feature-text h3 {
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    color: var(--fc-navy) !important;
    margin-bottom: 10px !important;
}
.fc-home-modern .fc-home-features .feature-text p {
    color: var(--fc-muted);
    margin: 0 !important;
    font-size: 0.935rem;
    line-height: 1.65 !important;
}

/* ── About ──────────────────────────────────────────────────── */
.fc-home-modern .fc-home-about {
    padding-block: clamp(56px, 10vw, 104px);
    background: linear-gradient(to bottom, #fafbfc, #ffffff 40%, #f3f6f9);
}
.fc-home-modern .fc-home-about .about-img img {
    border-radius: var(--fc-radius-xl);
    box-shadow: var(--fc-shadow-lg);
}
.fc-home-modern .fc-home-about .section-header.text-left .fc-home-kicker,
.fc-home-modern .fc-home-about .section-header.text-left .fc-home-title {
    text-align: start;
}
.fc-home-modern .fc-home-about .section-header.text-left .fc-home-title {
    font-size: clamp(1.5rem, 3.8vw, 2.35rem);
}
.fc-home-modern .fc-home-about .about-text .btn {
    border-radius: 999px;
    padding: 12px 28px;
    font-weight: 700;
}

/* ── Facts / counters ───────────────────────────────────────── */
.fc-home-modern .fc-home-facts {
    padding-block: clamp(48px, 9vw, 88px);
    background: radial-gradient(circle at 20% 20%, rgba(253, 190, 51, 0.12), transparent 45%),
        linear-gradient(135deg, #030f27 0%, #0f2244 85%);
    overflow: hidden;
    position: relative;
}
.fc-home-modern .fc-home-facts .counters {
    max-width: 1240px;
    margin-inline: auto;
}
.fc-home-modern .fc-home-facts .fact-icon {
    width: 58px !important;
    height: 58px !important;
    border-radius: 14px !important;
    background: rgba(253, 190, 51, 0.15);
    align-items: center;
    justify-content: center;
    margin-bottom: 12px !important;
}
.fc-home-modern .fc-home-facts .fact-icon i {
    font-size: 26px !important;
    color: var(--fc-gold) !important;
}
.fc-home-modern .fc-home-facts .fact-text h2 {
    color: #fff !important;
    font-weight: 800 !important;
    font-size: clamp(2rem, 5vw, 3rem) !important;
}
.fc-home-modern .fc-home-facts .fact-text p {
    color: rgba(255, 255, 255, 0.76) !important;
    font-size: 0.9rem !important;
    letter-spacing: 0.06em !important;
    text-transform: uppercase !important;
    font-weight: 600 !important;
}

/* ── Services (Livewire) strip ──────────────────────────────── */
.fc-home-modern .fc-home-services-wrap {
    padding-block: clamp(56px, 10vw, 92px);
    background: #fff;
}

/* ── Video block ─────────────────────────────────────────────── */
.fc-home-modern .fc-home-video-band {
    background: linear-gradient(180deg, #f6f8fa 0%, #ffffff 55%);
}
.fc-home-modern .fc-home-video-band .video {
    min-height: 320px !important;
    border-radius: var(--fc-radius-xl) var(--fc-radius-xl) 0 0;
    overflow: hidden;
}

/* ── Team ───────────────────────────────────────────────────── */
.fc-home-modern .fc-home-team-wrap {
    padding-block: clamp(56px, 10vw, 96px);
    background: radial-gradient(circle at 80% -10%, var(--fc-gold-soft), transparent 50%), #fafbfc;
}
.fc-home-modern .fc-home-team-wrap .team-item {
    border-radius: var(--fc-radius-xl);
    overflow: hidden;
    box-shadow: var(--fc-shadow);
    border: 1px solid rgba(3, 15, 39, 0.06);
    transition: transform 0.35s ease;
}
.fc-home-modern .fc-home-team-wrap .team-item:hover {
    transform: translateY(-6px);
}
.fc-home-modern .fc-home-team-wrap .team-img img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}
.fc-home-modern .fc-home-team-wrap .team-text {
    padding: 18px 16px !important;
    background: #fff;
}

/* ── FAQ ────────────────────────────────────────────────────── */
.fc-home-modern .fc-home-faq-wrap .faqs {
    padding-block: clamp(48px, 9vw, 92px);
    background: linear-gradient(to bottom, #ffffff, #f6f8fa);
}
.fc-home-modern .fc-home-faq-wrap .card {
    border-radius: var(--fc-radius-lg) !important;
    border: 1px solid rgba(3, 15, 39, 0.08);
    overflow: hidden;
    margin-bottom: 12px;
    box-shadow: 0 4px 20px rgba(3, 15, 39, 0.04);
}
.fc-home-modern .fc-home-faq-wrap .card-header .card-link {
    font-weight: 600 !important;
    padding: 16px 20px !important;
    font-size: 0.95rem !important;
}

/* ── Testimonials ───────────────────────────────────────────── */
.fc-home-modern .fc-home-testimonials .testimonial {
    padding-block: clamp(52px, 9vw, 96px);
    background: linear-gradient(to bottom, #f3f6f9 0%, #ffffff 65%);
}

/* ── Blog ───────────────────────────────────────────────────── */
.fc-home-modern .fc-home-blog-wrap .blog {
    padding-block: clamp(56px, 10vw, 100px);
    background: radial-gradient(circle at 10% 30%, rgba(253, 190, 51, 0.1), transparent 45%), #fafbfc;
}
.fc-home-modern .fc-home-blog-wrap .blog-item {
    border-radius: var(--fc-radius-xl);
    overflow: hidden;
    border: 1px solid rgba(3, 15, 39, 0.07);
    box-shadow: var(--fc-shadow);
    transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
    background: #fff;
}
.fc-home-modern .fc-home-blog-wrap .blog-item:hover {
    transform: translateY(-6px);
}

/* Inline livewire home video tweaks */
.fc-home-modern .home-video-lw .home-video-play-btn:focus {
    outline: 3px solid rgba(253, 190, 51, 0.6);
    outline-offset: 4px;
}
@media (max-width: 576px) {
    .fc-home-modern .home-video-lw.video {
        min-height: 280px;
        background-attachment: scroll !important;
    }
    .fc-home-modern .home-video-modal-root {
        padding: 12px !important;
        align-items: flex-end !important;
    }
    .fc-home-modern .home-video-close {
        top: -36px !important;
        right: 4px !important;
        width: 36px !important;
        height: 36px !important;
    }
    .fc-home-modern .home-video-aspect {
        border-radius: 8px !important;
    }
}
