/* =====================================================
   FORMAT-Pro Custom Styles
   Loaded after the Litho template stylesheets.
   ===================================================== */

/* =====================================================
   1. Brand Variables
   ===================================================== */

:root {
    --fp-blue: #003da6;
    --fp-blue-dark: #071b55;
    --fp-blue-light: #eaf2ff;
    --fp-green: #16873a;
    --fp-gold: #e7a300;
    --fp-gold-dark: #b57600;
    --fp-ink: #06143e;
    --fp-muted: #56627c;
    --fp-border: #d8e2f1;
    --fp-section-bg: #f6f9fd;
    --fp-white: #ffffff;
    --fp-capability-interval: 7000ms;
    --fp-nav-active-gold: var(--fp-gold-dark);
}

/* =====================================================
   2. Typography
   ===================================================== */

.fp-section-eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--fp-gold);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.fp-section-intro {
    max-width: 850px;
    margin-right: auto;
    margin-left: auto;
    color: var(--fp-muted);
    line-height: 1.75;
}

section[id] {
    scroll-margin-top: 105px;
}

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* =====================================================
   3. Buttons
   ===================================================== */

.fp-btn {
    padding: 8px 18px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
}

.fp-menu .fp-btn-signin {
    border: 1px solid var(--fp-blue) !important;
    background: var(--fp-white) !important;
    color: var(--fp-blue) !important;
}

.fp-menu .fp-btn-signin:hover {
    background: var(--fp-blue) !important;
    color: var(--fp-white) !important;
}

.fp-menu .fp-btn-request {
    border: 1px solid #000000 !important;
    background: var(--fp-gold) !important;
    color: #000000 !important;
}

.fp-menu .fp-btn-request:hover {
    background: #d49400 !important;
    color: #000000 !important;
}

.btn-format-primary {
    border: 2px solid var(--fp-blue);
    background: var(--fp-blue);
    color: var(--fp-white);
}

.btn-format-primary:hover,
.btn-format-primary:focus {
    border-color: var(--fp-blue-dark);
    background: var(--fp-blue-dark);
    color: var(--fp-white);
}

/* =====================================================
   4. Header & Navigation
   ===================================================== */

.fp-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 999999;
    background: rgba(255, 255, 255, 0.12);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    transition:
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.fp-header.fp-scrolled {
    background: var(--fp-white);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.10);
}

.fp-navbar {
    display: flex;
    align-items: center;
    min-height: 72px;
    padding: 0 40px;
}

.fp-brand {
    display: flex;
    align-items: center;
}

.fp-logo {
    width: auto;
    max-height: 36px;
}

.fp-logo-dark {
    display: none;
}

.fp-header.fp-scrolled .fp-logo-white {
    display: none;
}

.fp-header.fp-scrolled .fp-logo-dark {
    display: block;
}

.fp-toggler {
    display: none;
    margin-left: auto;
    border: 0;
    background: none;
}

.fp-toggler span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px 0;
    background: var(--fp-white);
}

.fp-header.fp-scrolled .fp-toggler span {
    background: var(--fp-blue);
}

.fp-scroll-link {
    position: relative;
}

.fp-scroll-link.is-active,
.nav-link.fp-scroll-link.is-active,
.menu-link.fp-scroll-link.is-active {
    color: var(--fp-nav-active-gold) !important;
}

.fp-scroll-link::after {
    position: absolute;
    right: 12px;
    bottom: 4px;
    left: 12px;
    height: 2px;
    background: transparent;
    content: "";
    transform: scaleX(0);
    transform-origin: center;
    transition:
        background-color 200ms ease,
        transform 200ms ease;
}

.fp-scroll-link.is-active::after {
    background: var(--fp-nav-active-gold);
    transform: scaleX(1);
}

/* =====================================================
   5. Hero Banner
   ===================================================== */

.format-pro-hero {
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #0d4ea6;
    line-height: 0;
}

.format-pro-hero img {
    display: block;
    width: 100%;
    height: auto;
}

/* =====================================================
   6. Introduction
   ===================================================== */

.fp-intro-title {
    margin: 15px 0 22px;
    color: var(--fp-blue);
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -1px;
}

.fp-intro-text {
    max-width: 900px;
    margin: 0 auto;
    color: var(--fp-blue-dark);
    font-size: 19px;
    line-height: 1.8;
}

/* =====================================================
   7. Statistics
   ===================================================== */

.fp-stat-card {
    padding: 20px;
}

.fp-stat-number {
    color: var(--fp-gold);
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
}

.fp-stat-title {
    margin-top: 12px;
    color: var(--fp-blue);
    font-size: 18px;
    font-weight: 700;
}

.fp-stat-text {
    margin-top: 6px;
    color: #5d6f82;
    font-size: 15px;
    line-height: 1.5;
}

/* =====================================================
   8. Why FORMAT-Pro
   ===================================================== */

.fp-why-banner {
    position: relative;
    min-height: 410px;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.fp-why-banner-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(90deg,
            rgba(255, 255, 255, 0.98) 0%,
            rgba(255, 255, 255, 0.94) 22%,
            rgba(255, 255, 255, 0.78) 42%,
            rgba(255, 255, 255, 0.38) 62%,
            rgba(255, 255, 255, 0.08) 82%,
            rgba(255, 255, 255, 0) 100%),
        linear-gradient(90deg,
            rgba(255, 248, 222, 0.16) 0%,
            rgba(238, 184, 30, 0.10) 100%);
}

.fp-why-banner .container {
    z-index: 2;
}

.fp-why-banner-content {
    position: relative;
    max-width: 760px;
    padding-left: 8px;
}

.fp-why-banner-title {
    margin: 0 0 20px;
    color: var(--fp-blue);
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 800;
    letter-spacing: -2.5px;
    line-height: 1.05;
}

.fp-why-banner-title sup {
    position: relative;
    top: -0.7em;
    margin-left: 3px;
    font-size: 0.28em;
    letter-spacing: 0;
}

.fp-why-banner-text {
    max-width: 720px;
    margin: 0;
    color: var(--fp-blue);
    font-size: clamp(20px, 2vw, 28px);
    font-weight: 600;
    line-height: 1.45;
}

.fp-why-sections {
    padding: 60px 0 70px;
    background: #f7f9fc;
}

.fp-why-card {
    height: 100%;
    padding: 28px 30px;
    border: 1px solid rgba(0, 61, 166, 0.18);
    border-top: 5px solid var(--fp-gold);
    border-radius: 14px;
    background: var(--fp-white);
    box-shadow: 0 10px 28px rgba(7, 27, 85, 0.07);
}

.fp-why-card-title {
    margin: 0 0 22px;
    color: var(--fp-blue);
    font-size: clamp(26px, 2.2vw, 34px);
    font-weight: 700;
    letter-spacing: -0.8px;
    line-height: 1.18;
}

.fp-why-list-card {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 15px;
    align-items: start;
    padding: 17px 0;
    border-top: 1px solid rgba(0, 61, 166, 0.12);
}

.fp-why-list-card:first-of-type {
    padding-top: 0;
    border-top: 0;
}

.fp-why-list-card:last-of-type {
    padding-bottom: 0;
}

.fp-why-icon {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: var(--fp-gold-dark);
}

.fp-why-icon svg {
    display: block;
    width: 38px;
    height: 38px;
}

.fp-why-list-card p {
    margin: 0;
    color: var(--fp-blue-dark);
    font-size: 15px;
    line-height: 1.62;
}

.fp-why-callout {
    margin-top: 22px;
    padding: 16px 18px;
    border-left: 4px solid var(--fp-gold);
    border-radius: 0 8px 8px 0;
    background: var(--fp-blue-light);
    color: var(--fp-blue-dark);
}

.fp-why-callout strong {
    display: block;
    margin-bottom: 4px;
    color: var(--fp-blue);
    font-size: 15px;
}

.fp-why-callout span {
    display: block;
    font-size: 14px;
    line-height: 1.55;
}

/* =====================================================
   9. Vision
   ===================================================== */

.fp-vision-banner {
    position: relative;
    min-height: 410px;
    margin: 0;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.fp-vision-banner-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(90deg,
            rgba(255, 255, 255, 0.98) 0%,
            rgba(255, 255, 255, 0.95) 20%,
            rgba(255, 255, 255, 0.82) 39%,
            rgba(255, 255, 255, 0.48) 58%,
            rgba(255, 255, 255, 0.14) 78%,
            rgba(255, 255, 255, 0) 100%),
        linear-gradient(90deg,
            rgba(234, 242, 255, 0.12) 0%,
            rgba(0, 61, 166, 0.03) 100%);
}

.fp-vision-banner .container {
    position: relative;
    z-index: 2;
}

.fp-vision-banner-content {
    position: relative;
    max-width: 780px;
    padding-left: 8px;
}

.fp-vision-banner-title {
    margin: 0 0 20px;
    color: var(--fp-blue);
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 800;
    letter-spacing: -2.5px;
    line-height: 1.05;
}

.fp-vision-banner-text {
    max-width: 760px;
    margin: 0;
    color: var(--fp-blue);
    font-size: clamp(20px, 2vw, 27px);
    font-weight: 600;
    line-height: 1.45;
}

.fp-banner-photo-credit {
    position: absolute;
    right: 18px;
    bottom: 12px;
    z-index: 3;
    padding: 4px 8px;
    border-radius: 3px;
    background: rgba(0, 0, 0, 0.52);
    color: var(--fp-white);
    font-size: 11px;
    line-height: 1.2;
}

.fp-vision-details {
    margin: 0;
    padding: 60px 0 70px;
    background: #f7f9fc;
}

.fp-vision-statement {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: center;
    gap: 18px;
    margin: 0 0 20px;
    padding: 22px 26px;
    border: 1px solid rgba(0, 61, 166, 0.18);
    border-left: 5px solid var(--fp-gold);
    border-radius: 12px;
    background: var(--fp-white);
    box-shadow: 0 8px 22px rgba(7, 27, 85, 0.06);
}

.fp-vision-statement-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--fp-blue-light);
    color: var(--fp-blue);
    font-size: 18px;
}

.fp-vision-statement p {
    margin: 0;
    color: var(--fp-blue-dark);
    font-size: clamp(17px, 1.5vw, 21px);
    font-weight: 600;
    line-height: 1.55;
}

.fp-purpose-heading {
    margin: 0 0 12px;
    padding: 0;
    text-align: center;
}

.fp-purpose-heading h2 {
    margin: 0;
    padding: 0;
    color: var(--fp-blue);
    font-size: clamp(31px, 3.5vw, 46px);
    font-weight: 700;
    letter-spacing: -1.2px;
    line-height: 1.15;
}

.fp-purpose-heading sup {
    position: relative;
    top: -0.55em;
    margin-left: 2px;
    font-size: 0.35em;
}

.fp-purpose-grid {
    align-items: stretch;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.fp-purpose-card {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 18px;
    width: 100%;
    min-height: 100%;
    padding: 24px 22px;
    border: 1px solid rgba(0, 61, 166, 0.17);
    border-top: 4px solid var(--fp-gold);
    border-radius: 13px;
    background: var(--fp-white);
    box-shadow: 0 9px 24px rgba(7, 27, 85, 0.07);
    transition:
        border-color 200ms ease,
        box-shadow 200ms ease,
        transform 200ms ease;
}

.fp-purpose-card:hover {
    border-color: rgba(0, 61, 166, 0.28);
    box-shadow: 0 13px 30px rgba(7, 27, 85, 0.10);
    transform: translateY(-3px);
}

.fp-purpose-icon {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 68px;
    height: 68px;
    color: var(--fp-blue);
}

.fp-purpose-icon svg {
    display: block;
    width: 66px;
    height: 66px;
}

.fp-purpose-icon-green {
    stroke: var(--fp-green);
}

.fp-purpose-icon-gold {
    stroke: var(--fp-gold-dark);
}

.fp-purpose-icon-fill-green {
    color: var(--fp-green);
}

.fp-purpose-card-content h3 {
    margin: 0;
    color: var(--fp-blue);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
}

.fp-gold-rule {
    width: 48px;
    height: 3px;
    margin: 8px 0 12px;
    background: var(--fp-gold);
}

.fp-purpose-card-content p {
    margin: 0;
    color: var(--fp-blue-dark);
    font-size: 14px;
    line-height: 1.62;
}

/* =====================================================
   10. Tools
   ===================================================== */

.fp-tools-banner {
    position: relative;
    min-height: 410px;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.fp-tools-banner-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;

    background:
        linear-gradient(90deg,
            rgba(255, 255, 255, .98) 0%,
            rgba(255, 255, 255, .94) 20%,
            rgba(255, 255, 255, .78) 40%,
            rgba(255, 255, 255, .42) 60%,
            rgba(255, 255, 255, .10) 80%,
            rgba(255, 255, 255, 0) 100%),

        linear-gradient(90deg,
            rgba(230, 239, 255, .08),
            rgba(0, 61, 166, .02));
}

.fp-tools-banner .container {
    position: relative;
    z-index: 2;
}

.fp-tools-banner-content {
    max-width: 720px;
    padding-left: 8px;
}

.fp-tools-banner-title {

    margin: 0 0 22px;

    color: var(--fp-blue);

    font-size: clamp(42px, 5vw, 68px);

    font-weight: 800;

    letter-spacing: -2px;

    line-height: 1.05;
}

.fp-tools-banner-text {

    margin: 0;

    color: var(--fp-blue);

    max-width: 640px;

    font-size: clamp(20px, 2vw, 27px);

    font-weight: 600;

    line-height: 1.45;
}

.fp-tools-details {
    margin: 0;
    padding: 60px 0 0;
    background: #f7f9fc;
}

.fp-tools-grid {
    align-items: stretch;
    margin-top: 0;
    margin-bottom: 0;
}

.fp-tool-card {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 20px;
    width: 100%;
    min-height: 100%;
    padding: 25px 26px;
    border: 1px solid rgba(0, 61, 166, 0.17);
    border-top: 4px solid var(--fp-gold);
    border-radius: 13px;
    background: var(--fp-white);
    box-shadow: 0 9px 24px rgba(7, 27, 85, 0.07);
    transition:
        border-color 200ms ease,
        box-shadow 200ms ease,
        transform 200ms ease;
}

.fp-tool-card:hover {
    border-color: rgba(0, 61, 166, 0.28);
    box-shadow: 0 13px 30px rgba(7, 27, 85, 0.10);
    transform: translateY(-3px);
}

.fp-tool-icon {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 90px;
}

.fp-tool-icon img {
    display: block;
    width: 84px;
    height: 84px;
    object-fit: contain;
}

.fp-tool-card-content h3 {
    margin: 0;
    color: var(--fp-blue);
    font-size: 25px;
    font-weight: 700;
    line-height: 1.2;
}

.fp-tool-card-content p {
    margin: 0;
    color: var(--fp-blue-dark);
    font-size: 15px;
    line-height: 1.65;
}

.fp-tools-summary {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    align-items: center;
    gap: 16px;
    margin-top: 28px;
    padding: 20px 24px;
    border-left: 5px solid var(--fp-gold);
    border-radius: 0 10px 10px 0;
    background: var(--fp-blue-light);
}

.fp-tools-summary-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--fp-blue);
    color: var(--fp-white);
    font-size: 15px;
}

.fp-tools-summary p {
    margin: 0;
    color: var(--fp-blue-dark);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.6;
}

.fp-tools-video-row {
    margin-top: 42px;
    margin-bottom: 38px;
}

/* =====================================================
   11. Capability Carousel
   ===================================================== */

.fp-capabilities-section {
    position: relative;
    padding: 95px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 90% 15%,
            rgba(0, 61, 166, 0.08),
            transparent 31%),
        var(--fp-section-bg);
}

.fp-capability-tabs {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    width: 100%;
    margin: 0 0 58px;
    border-bottom: 1px solid var(--fp-border);
}

.fp-capability-tab {
    position: relative;
    min-width: 0;
    padding: 20px 10px 22px;
    border: 0;
    background: transparent;
    color: #68748c;
    text-align: center;
    cursor: pointer;
    transition:
        color 220ms ease,
        background-color 220ms ease;
}

.fp-capability-tab::after {
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 3px;
    background: transparent;
    content: "";
    transition: background-color 220ms ease;
}

.fp-capability-tab:hover {
    color: var(--fp-blue);
    background: rgba(255, 255, 255, 0.55);
}

.fp-capability-tab:focus-visible {
    z-index: 2;
    outline: 3px solid rgba(0, 61, 166, 0.35);
    outline-offset: -3px;
}

.fp-capability-tab.is-active {
    color: var(--fp-blue);
}

.fp-capability-tab.is-active::after {
    background: var(--fp-blue);
}

.fp-tab-icon {
    display: block;
    min-height: 38px;
    margin-bottom: 9px;
    font-size: 27px;
    line-height: 1;
    transform: translateY(0);
    transition:
        color 220ms ease,
        transform 220ms ease;
}

.fp-capability-tab:hover .fp-tab-icon,
.fp-capability-tab.is-active .fp-tab-icon {
    color: var(--fp-blue);
    transform: translateY(-3px);
}

.fp-tab-label {
    display: block;
    overflow: hidden;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.fp-tab-progress {
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    z-index: 2;
    height: 3px;
    overflow: hidden;
    pointer-events: none;
}

.fp-tab-progress::before {
    display: block;
    width: 0;
    height: 100%;
    background: var(--fp-gold);
    content: "";
}

.fp-capability-carousel.is-playing .fp-capability-tab.is-active .fp-tab-progress::before {
    width: 100%;
    animation: fpCapabilityProgress var(--fp-capability-interval) linear;
}

.fp-capability-carousel.is-paused .fp-capability-tab.is-active .fp-tab-progress::before {
    animation-play-state: paused;
}

.fp-capability-main-row {
    min-height: 525px;
}

.fp-capability-content {
    position: relative;
    min-height: 500px;
    padding-right: 35px;
}

.fp-capability-panel {
    animation: fpCapabilityPanelIn 420ms ease both;
}

.fp-capability-panel[hidden] {
    display: none !important;
}

.fp-capability-number {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--fp-gold);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
}

.fp-capability-panel h3 {
    margin-bottom: 20px;
    color: var(--fp-blue-dark);
    font-size: clamp(30px, 3vw, 44px);
    font-weight: 700;
    letter-spacing: -1.3px;
    line-height: 1.1;
}

.fp-capability-panel>p:not(.fp-key-features-label) {
    max-width: 620px;
    margin-bottom: 22px;
    color: var(--fp-muted);
    font-size: 17px;
    line-height: 1.72;
}

.fp-key-features-label {
    margin: 0 0 13px;
    color: var(--fp-blue-dark);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.fp-feature-list {
    margin: 0 0 29px;
    padding: 0;
    list-style: none;
}

.fp-feature-list li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 27px;
    color: var(--fp-ink);
    font-size: 15px;
    line-height: 1.55;
}

.fp-feature-list li::before {
    position: absolute;
    top: 7px;
    left: 2px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--fp-green);
    box-shadow: 0 0 0 4px rgba(22, 135, 58, 0.12);
    content: "";
}

.fp-button-icon {
    margin-left: 9px;
    font-size: 12px;
}

.fp-capabilities-section.fp-tools-capabilities-section {
    padding-bottom: 0;
}

.fp-laptop-column {
    width: 100%;
}

.fp-laptop-stage {
    position: relative;
    width: 100%;
    max-width: 768px;
    margin: 0 auto;
}

.fp-laptop-frame {
    position: relative;
    z-index: 3;
    display: block;
    width: 100%;
    height: auto;
    pointer-events: none;
    user-select: none;
}

.fp-screen-wrap {
    position: absolute;
    top: 1.8%;
    right: 9.9%;
    bottom: 11.6%;
    left: 9.9%;
    z-index: 1;
    overflow: hidden;
    background: #05070a;
}

.fp-screen {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: 0;
    transform: scale(1.015);
    transition:
        opacity 500ms ease,
        transform 750ms ease;
}

.fp-screen.is-active {
    z-index: 2;
    opacity: 1;
    transform: scale(1);
}

.fp-carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 17px;
    margin-top: 15px;
}

.fp-carousel-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid var(--fp-border);
    border-radius: 50%;
    background: var(--fp-white);
    color: var(--fp-blue);
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(7, 27, 85, 0.08);
    transition:
        color 200ms ease,
        background-color 200ms ease,
        border-color 200ms ease,
        transform 200ms ease;
}

.fp-carousel-arrow:hover,
.fp-carousel-arrow:focus-visible {
    border-color: var(--fp-blue);
    background: var(--fp-blue);
    color: var(--fp-white);
    transform: translateY(-2px);
}

.fp-carousel-status {
    min-width: 48px;
    color: var(--fp-muted);
    font-size: 13px;
    font-weight: 700;
    text-align: center;
}

@keyframes fpCapabilityProgress {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes fpCapabilityPanelIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =====================================================
   12. Architecture Diagram
   ===================================================== */

.fp-architecture {
    margin-top: 38px;
    padding: 44px 0 58px;
    background: var(--fp-white);
}

.fp-architecture-title {
    max-width: 920px;
    margin: 0 auto 16px;
    color: var(--fp-blue);
    font-size: clamp(34px, 3vw, 48px);
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.fp-architecture-text {
    max-width: 980px;
    margin: 0 auto;
    color: var(--fp-blue-dark);
    font-size: 20px;
    line-height: 1.8;
}

.fp-architecture-diagram-row {
    margin-top: 28px;
}

.fp-tools-diagram {
    display: block;
    width: 100%;
    max-width: 1000px;
    height: auto;
    margin: 0 auto;
    filter: none;
    box-shadow: none;
}

/* =====================================================
   13. Footer
   ===================================================== */

.footer-dark,
.footer-bottom {
    background: var(--fp-blue-dark);
}

.fp-footer-top {
    padding: 38px 0 28px;
}

.footer-dark span.alt-font {
    font-size: 17px;
}

.footer-bottom {
    padding: 20px 0;
}

.footer-bottom p,
.footer-bottom a,
.footer-horizontal-link a {
    color: var(--fp-white);
}

.footer-horizontal-link a:hover {
    text-decoration: underline;
}

.fp-footer-logos {

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 90px;

    padding-bottom: 22px;
    margin-bottom: 22px;

    border-bottom: 1px solid rgba(255,255,255,.15);

}

.fp-footer-logo {

    display: block;

    width: 300px;
    max-width: 300px;
    height: auto;

    opacity: .95;

    transition:
        opacity .25s ease,
        transform .25s ease;

}

.fp-footer-logo:hover {

    opacity: 1;
    transform: translateY(-2px);

}

.fp-footer-heading {
    margin-bottom: 10px;
}

.footer-disclaimer {
    max-width: 1050px;
    margin: 0 auto;
    color: rgba(255,255,255,.85);
    font-size: 14px;
    line-height: 1.65;
    text-align: center;
}

.footer-description {
    color: var(--fp-white);
    opacity: .95;
    line-height: 1.8;
}

.footer-description a {
    color: var(--fp-white);
}

.footer-description a:hover {
    color: var(--fp-white);
    border-bottom: 1px solid var(--fp-white);
}

.footer-nav {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-nav li {
    margin-bottom: 10px;
}

.footer-nav a {
    color: var(--fp-white);
    font-size: 17px;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all .25s ease;
}

.footer-nav a:hover {
    color: var(--fp-white);
    border-bottom: 1px solid var(--fp-white);
}

.footer-dark .social-icon-style-12 a {
    color: var(--fp-white);
}

.footer-dark .social-icon-style-12 a:hover {
    color: #f5c242;
}

/* =====================================================
   14. Responsive Overrides
   ===================================================== */

@media (min-width: 1400px) {
    .fp-why-banner {
    min-height: 430px;
    }

    .fp-why-banner-content {
    max-width: 800px;
    }

    .fp-vision-banner {
    min-height: 430px;
    }

    .fp-vision-banner-content {
    max-width: 820px;
    }
}

@media (min-width: 1200px) {
    .format-pro-hero img {
    max-height: 620px;
            object-fit: cover;
            object-position: center center;
    }
}

@media (min-width: 992px) {
    .fp-navbar {
    display: grid;
            grid-template-columns: 220px 1fr 300px;
            align-items: center;
            min-height: 72px;
            padding: 0 40px;
    }

    .fp-brand {
    justify-self: start;
    }

    .fp-menu,
        .fp-menu.collapse,
        .fp-menu.collapse:not(.show) {
    display: contents !important;
    }

    .fp-menu ul {
    grid-column: 2;
            display: flex !important;
            align-items: center;
            justify-content: center;
            gap: 32px;
            margin: 0;
            padding: 0;
            list-style: none;
    }

    .fp-menu li {
    margin: 0;
    }

    .fp-menu a {
    color: var(--fp-white);
            font-weight: 500;
            text-decoration: none;
    }

    .fp-header.fp-scrolled .fp-menu a {
    color: var(--fp-blue);
    }

    .fp-menu .fp-nav-actions {
    grid-column: 3;
            display: flex !important;
            align-items: center;
            justify-content: flex-end;
            gap: 12px;
            white-space: nowrap;
    }
}

@media (max-width: 1199px) {
    .format-pro-hero img {
    max-height: 500px;
            object-fit: cover;
            object-position: center center;
    }

    .fp-capability-tab {
    padding-right: 6px;
            padding-left: 6px;
    }

    .fp-tab-label {
    font-size: 13px;
    }

    .fp-capability-content {
    padding-right: 15px;
    }
}

@media (max-width: 991px) {
    .fp-navbar {
    padding: 0 22px;
    }

    .fp-toggler {
    display: block;
    }

    .fp-menu {
    position: absolute;
            top: 72px;
            right: 15px;
            left: 15px;
            padding: 20px;
            border-radius: 8px;
            background: var(--fp-white);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    }

    .fp-menu ul {
    display: block;
            margin: 0;
            padding: 0;
            list-style: none;
    }

    .fp-menu li {
    margin-bottom: 12px;
    }

    .fp-menu a {
    color: var(--fp-blue);
            font-weight: 500;
            text-decoration: none;
    }

    .fp-menu .fp-nav-actions {
    display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid #dddddd;
    }

    .fp-menu .fp-btn {
    width: 100%;
            padding: 12px;
            text-align: center;
    }

    .fp-scroll-link::after {
    display: none;
    }

    .fp-scroll-link.is-active {
    color: var(--fp-nav-active-gold) !important;
            font-weight: 700;
    }

    .fp-why-banner {
    min-height: 380px;
            background-position: 58% center;
    }

    .fp-why-banner-overlay {
    background:
                linear-gradient(90deg,
                    rgba(255, 255, 255, 0.98) 0%,
                    rgba(255, 255, 255, 0.92) 38%,
                    rgba(255, 255, 255, 0.60) 68%,
                    rgba(255, 255, 255, 0.18) 100%),
                linear-gradient(90deg,
                    rgba(255, 248, 222, 0.12) 0%,
                    rgba(238, 184, 30, 0.08) 100%);
    }

    .fp-why-banner-content {
    max-width: 650px;
    }

    .fp-vision-banner {
    min-height: 380px;
            background-position: 58% center;
    }

    .fp-vision-banner-overlay {
    background:
                linear-gradient(90deg,
                    rgba(255, 255, 255, 0.98) 0%,
                    rgba(255, 255, 255, 0.93) 39%,
                    rgba(255, 255, 255, 0.63) 69%,
                    rgba(255, 255, 255, 0.18) 100%),
                linear-gradient(90deg,
                    rgba(234, 242, 255, 0.10) 0%,
                    rgba(0, 61, 166, 0.02) 100%);
    }

    .fp-vision-banner-content {
    max-width: 670px;
    }

    .fp-capabilities-section {
    padding: 75px 0;
    }

    .fp-capability-tabs {
    display: flex;
            justify-content: flex-start;
            margin-bottom: 45px;
            padding-bottom: 4px;
            overflow-x: auto;
            overflow-y: hidden;
            scrollbar-width: thin;
            scroll-snap-type: x proximity;
    }

    .fp-capability-tab {
    flex: 0 0 145px;
            min-width: 145px;
            scroll-snap-align: start;
    }

    .fp-tab-label {
    overflow: visible;
            text-overflow: initial;
            white-space: normal;
    }

    .fp-capability-main-row {
    min-height: 0;
    }

    .fp-capability-content {
    min-height: 0;
            margin-bottom: 30px;
            padding-right: 0;
    }

    .fp-laptop-stage {
    max-width: 700px;
    }

    .fp-why-sections {
    padding: 50px 0 60px;
    }

    .fp-why-card {
    padding: 26px 27px;
    }

    .fp-vision-details {
    padding: 50px 0 60px;
    }

    .fp-purpose-card {
    grid-template-columns: 66px minmax(0, 1fr);
    }

    .fp-purpose-icon,
        .fp-purpose-icon svg {
    width: 60px;
            height: 60px;
    }

    .fp-tools-details {
    padding-top: 50px;
    }

    .fp-architecture {
    margin-top: 32px;
            padding: 40px 0 50px;
    }

    .fp-architecture-text {
    font-size: 18px;
            line-height: 1.75;
    }

    .fp-architecture-diagram-row {
    margin-top: 24px;
    }

    .fp-footer-top {
    padding: 32px 0 24px;
    }

    .fp-footer-logos {
    padding-bottom: 18px;
            margin-bottom: 18px;

    flex-direction: column;
            gap: 30px;
    }

    .fp-footer-logo {
    max-width: 260px;
            margin-bottom: 18px;

    width: 260px;
            max-width: 260px;
    }

    .footer-disclaimer {
    font-size: 13px;
    }

    section[id] {
    scroll-margin-top: 85px;
    }

    .fp-tools-banner {
    min-height: 380px;

            background-position: 60% center;
    }

    .fp-tools-banner-content {
    max-width: 620px;
    }
}

@media (max-width: 767px) {
    .format-pro-hero {
    padding-top: 72px;
    }

    .format-pro-hero img {
    display: block;
            width: 100%;
            height: auto;
            max-height: none;
            object-fit: contain;
            object-position: center top;
    }

    .fp-why-banner {
    min-height: 360px;
            background-position: 65% center;
    }

    .fp-why-banner-overlay {
    background:
                linear-gradient(90deg,
                    rgba(255, 255, 255, 0.97) 0%,
                    rgba(255, 255, 255, 0.90) 60%,
                    rgba(255, 255, 255, 0.54) 100%),
                linear-gradient(rgba(255, 250, 235, 0.10),
                    rgba(255, 250, 235, 0.10));
    }

    .fp-why-banner-content {
    max-width: 100%;
            padding-right: 20px;
            padding-left: 0;
    }

    .fp-why-banner-title {
    margin-bottom: 16px;
            letter-spacing: -1.5px;
    }

    .fp-why-banner-text {
    max-width: 540px;
            font-size: 20px;
            line-height: 1.5;
    }

    .fp-vision-banner {
    min-height: 365px;
            background-position: 62% center;
    }

    .fp-vision-banner-overlay {
    background:
                linear-gradient(90deg,
                    rgba(255, 255, 255, 0.97) 0%,
                    rgba(255, 255, 255, 0.91) 60%,
                    rgba(255, 255, 255, 0.58) 100%);
    }

    .fp-vision-banner-content {
    max-width: 100%;
            padding-right: 20px;
            padding-left: 0;
    }

    .fp-vision-banner-title {
    margin-bottom: 16px;
            letter-spacing: -1.5px;
    }

    .fp-vision-banner-text {
    max-width: 560px;
            font-size: 20px;
            line-height: 1.5;
    }

    .fp-banner-photo-credit {
    right: 10px;
            bottom: 8px;
            font-size: 9px;
    }

    .fp-capabilities-section {
    padding: 65px 0;
    }

    .fp-capability-tabs {
    margin-bottom: 38px;
    }

    .fp-capability-tab {
    flex-basis: 128px;
            min-width: 128px;
            padding-top: 16px;
            padding-bottom: 18px;
    }

    .fp-tab-icon {
    min-height: 32px;
            font-size: 23px;
    }

    .fp-capability-content {
    min-height: 0;
            margin-bottom: 30px;
    }

    .fp-capability-panel h3 {
    font-size: 32px;
    }

    .fp-capability-panel > p:not(.fp-key-features-label) {
    font-size: 16px;
    }

    .fp-why-sections {
    padding: 42px 0 50px;
    }

    .fp-why-card {
    padding: 24px 22px;
            border-radius: 12px;
    }

    .fp-why-card-title {
    margin-bottom: 18px;
            font-size: 27px;
    }

    .fp-why-list-card {
    grid-template-columns: 40px minmax(0, 1fr);
            gap: 12px;
            padding: 15px 0;
    }

    .fp-why-icon {
    width: 36px;
            height: 36px;
    }

    .fp-why-icon svg {
    width: 34px;
            height: 34px;
    }

    .fp-why-list-card p {
    font-size: 14px;
            line-height: 1.58;
    }

    .fp-vision-details {
    padding: 42px 0 50px;
    }

    .fp-vision-statement {
    grid-template-columns: 40px minmax(0, 1fr);
            gap: 14px;
            margin-bottom: 18px;
            padding: 19px 20px;
    }

    .fp-vision-statement-icon {
    width: 38px;
            height: 38px;
            font-size: 15px;
    }

    .fp-vision-statement p {
    font-size: 16px;
            line-height: 1.5;
    }

    .fp-purpose-heading {
    margin-bottom: 10px;
    }

    .fp-purpose-card {
    grid-template-columns: 58px minmax(0, 1fr);
            gap: 15px;
            padding: 21px 19px;
    }

    .fp-purpose-icon,
        .fp-purpose-icon svg {
    width: 54px;
            height: 54px;
    }

    .fp-purpose-card-content h3 {
    font-size: 22px;
    }

    .fp-tools-details {
    padding-top: 42px;
    }

    .fp-tool-card {
    grid-template-columns: 76px minmax(0, 1fr);
            gap: 16px;
            padding: 22px 20px;
    }

    .fp-tool-icon {
    width: 72px;
    }

    .fp-tool-icon img {
    width: 68px;
            height: 68px;
    }

    .fp-tool-card-content h3 {
    font-size: 22px;
    }

    .fp-tool-card-content p {
    font-size: 14px;
            line-height: 1.6;
    }

    .fp-tools-summary {
    grid-template-columns: 38px minmax(0, 1fr);
            gap: 13px;
            padding: 18px 19px;
    }

    .fp-tools-summary-icon {
    width: 36px;
            height: 36px;
            font-size: 13px;
    }

    .fp-tools-summary p {
    font-size: 14px;
    }

    .fp-architecture {
    margin-top: 26px;
            padding: 34px 0 42px;
    }

    .fp-architecture-title {
    font-size: 32px;
    }

    .fp-architecture-text {
    font-size: 17px;
            line-height: 1.7;
    }

    .fp-architecture-diagram-row {
    margin-top: 20px;
    }

    .fp-tools-banner {
    min-height: 355px;

            background-position: 63% center;
    }

    .fp-tools-banner-title {
    font-size: 44px;

            letter-spacing: -1px;
    }

    .fp-tools-banner-text {
    font-size: 20px;

            line-height: 1.5;
    }
}

@media (max-width: 575px) {
    .fp-why-banner {
    min-height: 340px;
            background-position: 68% center;
    }

    .fp-why-banner-title {
    font-size: 39px;
    }

    .fp-why-banner-text {
    font-size: 18px;
    }

    .fp-vision-banner {
    min-height: 350px;
            background-position: 65% center;
    }

    .fp-vision-banner-title {
    font-size: 39px;
    }

    .fp-vision-banner-text {
    font-size: 18px;
    }

    .fp-capability-content {
    min-height: 0;
            margin-bottom: 30px;
    }

    .fp-feature-list li {
    padding-left: 24px;
            font-size: 14px;
    }

    .fp-carousel-controls {
    margin-top: 8px;
    }
}

@media (max-width: 480px) {
    .fp-why-card {
    padding: 22px 18px;
    }

    .fp-why-list-card {
    grid-template-columns: 34px minmax(0, 1fr);
            gap: 10px;
    }

    .fp-why-icon,
        .fp-why-icon svg {
    width: 30px;
            height: 30px;
    }

    .fp-vision-statement {
    display: block;
    }

    .fp-vision-statement-icon {
    margin-bottom: 12px;
    }

    .fp-purpose-card {
    display: block;
    }

    .fp-purpose-icon {
    margin-bottom: 13px;
    }

    .fp-tool-card {
    display: block;
    }

    .fp-tool-icon {
    justify-content: flex-start;
            margin-bottom: 14px;
    }

    .fp-tools-summary {
    display: block;
    }

    .fp-tools-summary-icon {
    margin-bottom: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .fp-purpose-card {
    transition: none;
    }

    .fp-purpose-card:hover {
    transform: none;
    }

    .fp-tool-card {
    transition: none;
    }

    .fp-tool-card:hover {
    transform: none;
    }

    html {
    scroll-behavior: auto;
    }

    .fp-capability-panel,
        .fp-screen,
        .fp-tab-progress::before {
    animation: none !important;
            transition: none !important;
    }
}