/* ─────────────────────────────────────────────────────────────────────────────
   Block: Hero  (.fp-hero-block)

   Full-bleed dark-blue section:
     Left  — eyebrow + heading (with <em> accent) + lead + CTAs + notes
     Right — photo card with floating price chip and tool chip
   ───────────────────────────────────────────────────────────────────────────── */

/* ── Outer block: full-bleed dark blue ──────────────────────────────────── */

.fp-hero-block {
    position: relative;
    background: var(--color-primary, #00388E);
    color: #fff;
    overflow: hidden;
}

.fp-hero-block .page-block-wrapper {
    padding-top: clamp(48px, 6vw, 74px);
    padding-bottom: clamp(56px, 7vw, 84px);
}

/* ── Two-column grid ─────────────────────────────────────────────────────── */

.fp-hero {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(32px, 5vw, 54px);
    align-items: center;
}

.fp-hero--no-visual {
    grid-template-columns: minmax(280px, 0.7fr);
}

/* ── Left: text ──────────────────────────────────────────────────────────── */

.fp-hero__eyebrow {
    display: inline-block;
    margin: 0 0 0.75rem;
    color: #80cfff;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

/* Extra specificity to beat h1:not(:first-child) in app.css */
.fp-hero-block .fp-hero__heading {
    margin-top: 0;
    margin-bottom: 1rem;
    color: #fff;
    font-size: clamp(2.375rem, 4.4vw, 3.625rem);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.01em;
}

.fp-hero-block .fp-hero__heading em {
    font-style: normal;
    color: var(--color-secondary, #00A0E0);
}

.fp-hero__lead {
    max-width: 520px;
    color: #fff;
    font-size: 1.15625rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ── CTAs ────────────────────────────────────────────────────────────────── */

.fp-hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 1.875rem;
    margin-bottom: 1.625rem;
}

.fp-hero__cta .btn-secondary {
    background: var(--color-secondary, #00A0E0);
    color: #fff;
    box-shadow: 0 6px 16px -6px rgba(0, 160, 224, 0.5);
}

.fp-hero__cta .btn-secondary:hover {
    background: #008cc9;
}

.fp-hero__cta .btn-white {
    background: #fff;
    color: var(--color-dark, #282833);
    font-weight: 600;
}

.fp-hero__cta .btn-white:hover {
    background: #f0f0f0;
}

/* ── Checkmark notes ─────────────────────────────────────────────────────── */

.fp-hero__notes {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fp-hero__note {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #fff;
    font-size: 0.875rem;
    line-height: 1.45;
}

.fp-hero__note svg {
    width: 18px;
    height: 18px;
    color: var(--color-secondary, #00A0E0);
    flex: 0 0 auto;
}

/* ── Right: visual card ──────────────────────────────────────────────────── */

.fp-hero__visual {
    position: relative;
}

.fp-hero__card {
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.fp-hero__photo {
    position: relative;
    overflow: hidden;
    background: #101725;
    aspect-ratio: 4 / 3.4;
}

.fp-hero__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* ── Price chip ──────────────────────────────────────────────────────────── */

.fp-hero__price-chip {
    position: absolute;
    left: -18px;
    bottom: 34px;
    background: #fff;
    color: var(--color-dark, #282833);
    padding: 14px 18px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.fp-hero__price-val {
    font-weight: 600;
    font-size: 1.375rem;
    color: var(--color-primary, #00388E);
    line-height: 1.2;
}

.fp-hero__price-lbl {
    font-size: 0.75rem;
    color: #5C6675;
    font-weight: 600;
}

/* ── Tool chip ───────────────────────────────────────────────────────────── */

.fp-hero__tool-chip {
    position: absolute;
    right: -14px;
    top: 26px;
    background: var(--color-secondary, #00A0E0);
    color: #fff;
    padding: 10px 14px;
    font-size: 0.8125rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.fp-hero__tool-chip svg {
    width: 15px;
    height: 15px;
    flex: 0 0 auto;
}

.fp-hero__tool-chip a {
    color: #fff;
    text-decoration: none;
}

.fp-hero__tool-chip a:hover {
    text-decoration: underline;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */

@media (max-width: 980px) {
    .fp-hero {
        grid-template-columns: 1fr;
    }

    .fp-hero__visual {
        order: -1;
    }

    .fp-hero__price-chip {
        left: 0;
    }

    .fp-hero__tool-chip {
        right: 0;
    }
}

@media (max-width: 560px) {
    .fp-hero-block .page-block-wrapper {
        padding-top: 48px;
        padding-bottom: 56px;
    }
}
