/* ==========================================================================
   Zeafarer /explore — Persona Hub + Story Pages
   Loaded per-route via the explore routes' `links` exports.
   Light SaaS aesthetic, aqua marine accents (#00acc1 family).
   ========================================================================== */

:root {
    --explore-aq: #00acc1;
    --explore-aq-deep: #0097a7;
    --explore-aq-bright: #26c6da;
    --explore-aq-glow: rgba(0, 172, 193, 0.32);
    --explore-aq-soft: rgba(0, 172, 193, 0.10);
    --explore-aq-tint: #e0f7fa;
    --explore-card-bg: #f8fafc;
    --explore-card-border: #e5e7eb;
    --explore-line: #f1f3f5;
    --explore-ink-82: rgba(10, 10, 10, 0.82);
    --explore-ink-60: #525252;
    --explore-ink-40: #737373;
    --explore-ink-25: #a3a3a3;
}

/* --------------------------------------------------------------------------
   ExploreLayout — minimal chrome
   -------------------------------------------------------------------------- */

.explore-shell {
    min-height: 100vh;
    background: #ffffff;
    color: #0a0a0a;
    display: flex;
    flex-direction: column;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.explore-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 32px;
    max-width: var(--container-max-width);
    margin: 0 auto;
    width: 100%;
    border-bottom: 1px solid var(--explore-line);
}

.explore-topbar a {
    color: #525252;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.explore-topbar a:hover,
.explore-topbar a:focus-visible {
    color: var(--explore-aq-deep);
}

.explore-topbar .explore-logo img {
    height: 32px;
    width: auto;
    display: block;
}

.explore-topbar .explore-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.explore-main {
    flex: 1;
    width: 100%;
}

.explore-container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* --------------------------------------------------------------------------
   Persona Hub
   -------------------------------------------------------------------------- */

.hub-hero {
    position: relative;
    padding: var(--spacing-3xl) 0 var(--spacing-lg);
    text-align: center;
    overflow: hidden;
}

/* Soft aqua glow behind hero */
.hub-hero::before {
    content: "";
    position: absolute;
    inset: -20%;
    background: radial-gradient(
        ellipse at 50% 35%,
        rgba(0, 172, 193, 0.16) 0%,
        rgba(0, 172, 193, 0.04) 40%,
        transparent 70%
    );
    animation: hub-sweep 14s ease-in-out infinite alternate;
    z-index: 0;
    pointer-events: none;
}

@keyframes hub-sweep {
    0%   { transform: translate(-6%, -3%) scale(1); opacity: 0.85; }
    50%  { transform: translate(4%, 2%) scale(1.05); opacity: 1; }
    100% { transform: translate(8%, -2%) scale(1);  opacity: 0.85; }
}

@media (prefers-reduced-motion: reduce) {
    .hub-hero::before {
        animation: none;
    }
}

.hub-hero > * {
    position: relative;
    z-index: 1;
}

.hub-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--explore-aq-soft);
    border: 1px solid var(--explore-aq-glow);
    color: var(--explore-aq-deep);
    font-size: var(--font-size-xs);
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 999px;
    margin-bottom: var(--spacing-lg);
}

.hub-pill-dot {
    font-size: 10px;
    line-height: 1;
}

.hub-headline {
    font-size: clamp(2rem, 1.5rem + 2.25vw, 3.25rem);
    font-weight: 800;
    line-height: 1.05;
    color: #0a0a0a;
    margin: 0 auto var(--spacing-md);
    max-width: 780px;
    letter-spacing: -0.025em;
}

.hub-headline-accent {
    background: linear-gradient(135deg, var(--explore-aq-deep), var(--explore-aq), var(--explore-aq-bright));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.hub-subtitle {
    font-size: var(--font-size-lg);
    color: #525252;
    line-height: 1.6;
    max-width: 640px;
    margin: 0 auto;
}

.hub-demo-row {
    display: flex;
    justify-content: center;
    padding: var(--spacing-xl) 0 var(--spacing-3xl);
}

.hub-demo-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    background: var(--explore-aq-deep);
    color: #ffffff;
    box-shadow: 0 2px 6px rgba(0, 131, 143, 0.22), inset 0 1px 0 rgba(255,255,255,0.18);
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.hub-demo-btn:hover,
.hub-demo-btn:focus-visible {
    background: #00838f;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(0, 131, 143, 0.32);
    outline: none;
}

.hub-cards-label {
    text-align: center;
    font-size: var(--font-size-xs);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--explore-aq-deep);
    margin: var(--spacing-md) 0 var(--spacing-md);
    font-weight: 600;
}

/* --------------------------------------------------------------------------
   Persona Cards grid
   -------------------------------------------------------------------------- */

.persona-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: var(--spacing-md);
    row-gap: var(--spacing-md);
    padding: 0 0 var(--spacing-3xl);
}

@media (min-width: 768px) {
    .persona-grid {
        grid-template-columns: repeat(4, 1fr);
        column-gap: var(--spacing-lg);
        row-gap: var(--spacing-lg);
    }
}

.persona-card {
    --card-reveal-delay: 0s;
    display: grid;
    grid-row: span 3;
    grid-template-rows: subgrid;
    gap: var(--spacing-sm);
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, #f0fdfe 0%, #e0f7fa 100%);
    border: 1px solid var(--explore-aq-glow);
    border-radius: 14px;
    text-decoration: none;
    color: #0a0a0a;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    opacity: 0;
    transform: translateY(12px);
    animation: card-in 0.5s ease forwards;
    animation-delay: var(--card-reveal-delay);
    box-shadow: 0 1px 2px rgba(10, 18, 32, 0.04);
}

@keyframes card-in {
    to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
    .persona-card {
        opacity: 1;
        transform: none;
        animation: none;
    }
}

.persona-card:hover,
.persona-card:focus-visible {
    border-color: var(--explore-aq);
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(0, 172, 193, 0.14), 0 0 0 1px var(--explore-aq-glow) inset;
    outline: none;
}

.persona-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--spacing-sm);
}

.persona-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--explore-aq), var(--explore-aq-deep));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0, 131, 143, 0.25);
}

.persona-card-arrow {
    font-size: 18px;
    color: var(--explore-ink-25);
    transition: transform 0.25s ease, color 0.25s ease;
}

.persona-card:hover .persona-card-arrow,
.persona-card:focus-visible .persona-card-arrow {
    color: var(--explore-aq-deep);
    transform: translateX(3px);
}

.persona-card-label {
    font-size: clamp(1rem, 0.85rem + 0.6vw, 1.25rem);
    font-weight: 800;
    color: #0a0a0a;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0;
    text-transform: none;
}

.persona-card-hook {
    font-size: var(--font-size-base);
    line-height: 1.45;
    color: #0a0a0a;
    font-weight: 600;
    margin: 4px 0 0;
}



/* Pending cards (PDF not yet assigned) — styled same as live, non-interactive */
.persona-card--pending {
    cursor: default;
}

.persona-card--pending:hover,
.persona-card--pending:focus-visible {
    transform: none;
    box-shadow: 0 1px 2px rgba(10, 18, 32, 0.04);
    border-color: var(--explore-card-border);
}

/* --------------------------------------------------------------------------
   Persona Story — shared template
   -------------------------------------------------------------------------- */

.story-section {
    padding: var(--spacing-3xl) 0;
    position: relative;
}

.story-section + .story-section {
    border-top: 1px solid var(--explore-line);
}

.story-section-alt {
    background:
        radial-gradient(ellipse 60% 50% at 50% 0%, var(--explore-aq-tint) 0%, transparent 65%),
        linear-gradient(180deg, #f4faf9 0%, #ffffff 100%);
}

.story-eyebrow {
    display: inline-block;
    font-size: var(--font-size-xs);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--explore-aq-deep);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.story-h1 {
    font-size: clamp(2rem, 1.5rem + 2.5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: #0a0a0a;
    margin: 0 0 var(--spacing-md);
    max-width: 760px;
}

.story-h2 {
    font-size: clamp(1.5rem, 1.2rem + 1vw, 2.25rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #0a0a0a;
    margin: 0 0 var(--spacing-lg);
    max-width: 720px;
}

.story-lead {
    font-size: var(--font-size-lg);
    color: #525252;
    line-height: 1.6;
    max-width: 680px;
    margin: 0 0 var(--spacing-lg);
}

.story-scroll-cue {
    font-size: var(--font-size-xs);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--explore-ink-40);
    margin-top: var(--spacing-xl);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.story-scroll-cue-arrow {
    display: inline-block;
    animation: scroll-nudge 1.8s ease-in-out infinite;
}

@keyframes scroll-nudge {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(4px); }
}

@media (prefers-reduced-motion: reduce) {
    .story-scroll-cue-arrow { animation: none; }
}

/* Problem + Solution grids */

.story-points {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

@media (min-width: 720px) {
    .story-points {
        grid-template-columns: repeat(2, 1fr);
    }
}

.story-point {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
    padding: var(--spacing-lg);
    background: #ffffff;
    border: 1px solid var(--explore-card-border);
    border-radius: 12px;
    box-shadow: 0 1px 2px rgba(10, 18, 32, 0.04);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.story-section-alt .story-point {
    background: #ffffff;
    border-color: var(--explore-card-border);
}

.story-point.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.story-point:hover {
    box-shadow: 0 8px 24px rgba(0, 172, 193, 0.10);
    border-color: var(--explore-aq-glow);
}

@media (prefers-reduced-motion: reduce) {
    .story-point {
        opacity: 1;
        transform: none;
    }
}

.story-point-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
}

.story-point-problem .story-point-icon {
    background: #fff7ed;
    color: #b45309;
    border: 1px solid #fed7aa;
}

.story-point-solution .story-point-icon {
    background: linear-gradient(135deg, var(--explore-aq), var(--explore-aq-deep));
    color: #fff;
}

.story-point-title {
    font-size: var(--font-size-base);
    font-weight: 700;
    color: #0a0a0a;
    margin: 2px 0 4px;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.story-point-body {
    font-size: var(--font-size-sm);
    color: #525252;
    line-height: 1.6;
    margin: 0;
}

/* --------------------------------------------------------------------------
   AI chat mockup
   -------------------------------------------------------------------------- */

.ai-mock {
    background: #ffffff;
    border: 1px solid var(--explore-card-border);
    border-radius: 16px;
    max-width: 540px;
    margin: var(--spacing-xl) 0 0;
    overflow: hidden;
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.10);
}

.ai-mock-header {
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--explore-line);
    background: #fafbfc;
}

.ai-mock-avatar {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    background: linear-gradient(135deg, var(--explore-aq), var(--explore-aq-deep));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
}

.ai-mock-name {
    font-size: 13px;
    font-weight: 600;
    color: #0a0a0a;
}

.ai-mock-status {
    margin-left: auto;
    font-size: 11px;
    color: #047857;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.ai-mock-status::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10b981;
}

.ai-mock-body {
    padding: 20px 18px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ai-mock-row {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.ai-mock-row-user {
    justify-content: flex-end;
}

.ai-mock-bubble {
    padding: 12px 14px;
    font-size: 13px;
    line-height: 1.65;
    max-width: 85%;
}

.ai-mock-bubble-agent {
    background: #f8fafc;
    border: 1px solid var(--explore-line);
    color: #262626;
    border-radius: 4px 16px 16px 16px;
}

.ai-mock-bubble-user {
    background: #0a0a0a;
    color: #ffffff;
    border-radius: 16px 4px 16px 16px;
}

.ai-mock-bubble-agent strong {
    color: var(--explore-aq-deep);
    font-weight: 700;
}

.ai-mock-bubble-agent p {
    margin: 0 0 8px;
}

.ai-mock-bubble-agent p:last-child {
    margin: 0;
}

.ai-mock-followup {
    margin-top: 4px;
    color: var(--explore-ink-40);
    font-size: 12px;
}

/* --------------------------------------------------------------------------
   Outcome + CTA
   -------------------------------------------------------------------------- */

.story-outcome-list {
    list-style: none;
    padding: 0;
    margin: var(--spacing-lg) 0 0;
    display: grid;
    gap: var(--spacing-md);
    max-width: 720px;
}

.story-outcome-item {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
    font-size: var(--font-size-lg);
    color: #0a0a0a;
    line-height: 1.5;
}

.story-outcome-check {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--explore-aq), var(--explore-aq-deep));
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 2px;
    box-shadow: 0 2px 6px rgba(0, 131, 143, 0.22);
}

.story-cta {
    text-align: center;
    padding: var(--spacing-3xl) 0;
    background:
        radial-gradient(ellipse 60% 60% at 50% 0%, rgba(255,255,255,0.18) 0%, transparent 70%),
        linear-gradient(135deg, #006064 0%, #0097a7 50%, #00bcd4 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.story-cta-headline {
    font-size: clamp(1.875rem, 1.5rem + 1.6vw, 2.75rem);
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 var(--spacing-md);
    line-height: 1.1;
    letter-spacing: -0.02em;
    position: relative;
}

.story-cta-subtitle {
    font-size: var(--font-size-lg);
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto var(--spacing-xl);
    position: relative;
}

.story-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: #ffffff;
    color: var(--explore-aq-deep);
    font-size: var(--font-size-base);
    font-weight: 700;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    min-height: 52px;
    position: relative;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}

.story-cta-btn:hover,
.story-cta-btn:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
    background: var(--explore-aq-tint);
    outline: none;
}

.story-cta-btn:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 3px;
}

/* --------------------------------------------------------------------------
   Section progress dots (desktop only)
   -------------------------------------------------------------------------- */

.section-progress {
    display: none;
}

@media (min-width: 1024px) {
    .section-progress {
        display: flex;
        flex-direction: column;
        gap: 12px;
        position: fixed;
        top: 50%;
        right: var(--spacing-lg);
        transform: translateY(-50%);
        z-index: 10;
    }

    .section-progress-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(0, 0, 0, 0.15);
        border: none;
        padding: 0;
        cursor: pointer;
        transition: background 0.25s ease, transform 0.25s ease;
    }

    .section-progress-dot:hover,
    .section-progress-dot:focus-visible {
        background: var(--explore-aq-glow);
        transform: scale(1.3);
        outline: none;
    }

    .section-progress-dot.is-active {
        background: var(--explore-aq);
        transform: scale(1.4);
    }
}

/* ==========================================================================
   Manufacturer Page — /explore/manufacturer custom layout
   ========================================================================== */

/* ── Hero ── */

.mfr-hero-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

@media (min-width: 768px) {
    .mfr-hero-inner {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-3xl);
    }
}

.mfr-hero-text {
    display: flex;
    flex-direction: column;
}

.mfr-hero-visual {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14), 0 0 0 1px var(--explore-card-border);
}

.mfr-hero-screenshot {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* ── Shared section utility ── */

.mfr-section-center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* ── Features grid ── */

.mfr-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

@media (min-width: 640px) {
    .mfr-features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.mfr-feature-card {
    flex-direction: column;
    align-items: flex-start;
    text-align: center;
    align-items: center;
    padding: var(--spacing-xl) var(--spacing-lg);
    gap: var(--spacing-md);
}

.mfr-feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--explore-aq), var(--explore-aq-deep));
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 131, 143, 0.28);
    margin-bottom: var(--spacing-sm);
}

.mfr-feature-title {
    font-size: var(--font-size-base);
    font-weight: 700;
    color: #0a0a0a;
    margin: 0 0 var(--spacing-xs);
    letter-spacing: -0.01em;
}

/* ── Value props (gradient band) ── */

.mfr-value-props {
    background: linear-gradient(135deg, #00838f 0%, #0097a7 45%, #1565c0 100%);
    padding: var(--spacing-3xl) 0;
    position: relative;
    overflow: hidden;
}

.mfr-value-props::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(255,255,255,0.10) 0%, transparent 70%);
    pointer-events: none;
}

.mfr-value-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    position: relative;
}

@media (min-width: 640px) {
    .mfr-value-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.mfr-value-card {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 16px;
    padding: var(--spacing-xl) var(--spacing-lg);
    text-align: center;
    backdrop-filter: blur(4px);
    transition: background 0.25s ease, transform 0.25s ease;
}

.mfr-value-card:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-3px);
}

.mfr-value-title {
    font-size: var(--font-size-base);
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 var(--spacing-sm);
    letter-spacing: -0.01em;
}

.mfr-value-body {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.65;
    margin: 0;
}

/* ── Installation steps ── */

.mfr-install-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.mfr-install-headline {
    font-size: clamp(2rem, 1.5rem + 2vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    color: #0a0a0a;
    margin: 0 0 var(--spacing-sm);
    line-height: 1.05;
}

.mfr-install-sub {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--explore-aq-deep);
    margin: 0;
}

.mfr-steps {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    max-width: 760px;
    margin: 0 auto;
}

.mfr-step {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    padding: var(--spacing-lg) var(--spacing-xl);
    flex-direction: row;
}

.mfr-step-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--explore-aq), var(--explore-aq-deep));
    color: #ffffff;
    padding: 10px 18px 10px 22px;
    border-radius: 4px 28px 28px 4px;
    white-space: nowrap;
    flex-shrink: 0;
    font-size: var(--font-size-sm);
    min-width: 100px;
    justify-content: space-between;
    box-shadow: 0 3px 10px rgba(0, 131, 143, 0.28);
}

.mfr-step-label {
    font-weight: 700;
    letter-spacing: 0.01em;
}

.mfr-step-text {
    font-size: var(--font-size-base);
    color: #525252;
    line-height: 1.65;
    margin: 0;
}

.mfr-step-text strong {
    color: #0a0a0a;
    font-weight: 700;
}

/* ── Contact footer ── */

.mfr-contact {
    background: var(--explore-aq);
    padding: var(--spacing-lg) 0;
}

.mfr-contact-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.mfr-contact-link {
    color: #ffffff;
    font-size: var(--font-size-base);
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.mfr-contact-link:hover,
.mfr-contact-link:focus-visible {
    opacity: 0.8;
    text-decoration: underline;
}

.mfr-contact-sep {
    color: rgba(255, 255, 255, 0.55);
    font-weight: 400;
}
