:root {
    --fc-navy-950: #091f38;
    --fc-navy-900: #0d2948;
    --fc-navy-800: #12345a;
    --fc-navy-700: #18375d;
    --fc-blue-600: #28659c;
    --fc-blue-500: #3c83bd;
    --fc-blue-100: #dcecf8;
    --fc-mint: #54dbb2;
    --fc-mint-soft: #e3f9f1;
    --fc-gold: #f5bf42;
    --fc-ink: #102a49;
    --fc-text: #49647f;
    --fc-muted: #7890a7;
    --fc-line: #d9e5ef;
    --fc-surface: #ffffff;
    --fc-surface-soft: #f4f8fc;
    --fc-shadow: 0 28px 70px rgba(14, 47, 80, 0.14);
    --fc-radius-xl: 34px;
    --fc-radius-lg: 25px;
    --fc-radius-md: 18px;
    --fc-header-height: 88px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--fc-header-height) + 18px);
}

body.fc-public-page {
    min-width: 320px;
    margin: 0;
    overflow-x: hidden;
    background: #f6fafe;
    color: var(--fc-ink);
    font-family: "Inter", "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body.fc-public-page.fc-menu-open {
    overflow: hidden;
}

body.fc-public-page a {
    color: inherit;
    text-decoration: none;
}

body.fc-public-page button,
body.fc-public-page a {
    -webkit-tap-highlight-color: transparent;
}

body.fc-public-page img {
    display: block;
    max-width: 100%;
}

.fc-page-view[hidden] {
    display: none !important;
}

.fc-page-view.is-active {
    animation: fcPageViewIn 560ms cubic-bezier(0.2, 0.75, 0.2, 1) both;
}

.fc-page-view h1:focus,
.fc-page-view h2:focus {
    outline: none;
}

.fc-page-shell {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 48px));
    margin-inline: auto;
}

.fc-skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1000;
    padding: 11px 16px;
    border-radius: 10px;
    background: var(--fc-navy-950);
    color: #fff !important;
    font-weight: 800;
    transform: translateY(-150%);
    transition: transform 180ms ease;
}

.fc-skip-link:focus {
    transform: translateY(0);
}

.fc-atmosphere {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.fc-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    opacity: 0.56;
    animation: fcOrbDrift 11s ease-in-out infinite alternate;
}

.fc-orb-one {
    top: 80px;
    left: -120px;
    width: 330px;
    height: 330px;
    background: radial-gradient(circle, rgba(69, 151, 207, 0.19), transparent 68%);
}

.fc-orb-two {
    top: 42%;
    right: -160px;
    width: 460px;
    height: 460px;
    background: radial-gradient(circle, rgba(84, 219, 178, 0.12), transparent 68%);
    animation-delay: -3s;
}

.fc-orb-three {
    bottom: -180px;
    left: 32%;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(38, 101, 156, 0.12), transparent 70%);
    animation-delay: -6s;
}

/* Header */
.fc-site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 100;
    height: var(--fc-header-height);
    border-bottom: 1px solid rgba(24, 55, 93, 0.08);
    background: rgba(249, 252, 255, 0.82);
    backdrop-filter: blur(18px);
    transition: height 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.fc-site-header.is-scrolled {
    height: 76px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 12px 36px rgba(12, 43, 74, 0.1);
}

.fc-nav-shell {
    display: grid;
    grid-template-columns: minmax(195px, 1fr) auto minmax(195px, 1fr);
    align-items: center;
    width: min(1240px, calc(100% - 48px));
    height: 100%;
    margin-inline: auto;
}

.fc-brand {
    width: fit-content;
    padding: 7px 12px;
    border: 1px solid rgba(24, 55, 93, 0.08);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.75);
}

.fc-brand img {
    width: 178px;
    height: 46px;
    object-fit: contain;
}

.fc-primary-nav {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px;
    border: 1px solid rgba(24, 55, 93, 0.09);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.74);
    box-shadow: 0 9px 24px rgba(15, 49, 82, 0.06);
}

.fc-nav-link {
    position: relative;
    min-width: 92px;
    padding: 10px 16px;
    border-radius: 11px;
    color: var(--fc-text) !important;
    font-size: 0.78rem;
    font-weight: 800;
    text-align: center;
    transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.fc-nav-link:hover {
    color: var(--fc-navy-700) !important;
    transform: translateY(-1px);
}

.fc-nav-link.is-active {
    background: var(--fc-navy-700);
    color: #fff !important;
    box-shadow: 0 8px 19px rgba(24, 55, 93, 0.2);
}

.fc-header-action {
    display: inline-flex;
    align-items: center;
    justify-self: end;
    gap: 13px;
    min-height: 48px;
    padding: 7px 8px 7px 20px;
    border: 1px solid rgba(24, 55, 93, 0.1);
    border-radius: 15px;
    background: #fff;
    color: var(--fc-navy-700) !important;
    font-size: 0.78rem;
    font-weight: 900;
    box-shadow: 0 10px 25px rgba(14, 47, 80, 0.08);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.fc-header-action i {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 10px;
    background: var(--fc-navy-700);
    color: #fff;
}

.fc-header-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(14, 47, 80, 0.14);
}

.fc-menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid var(--fc-line);
    border-radius: 13px;
    background: #fff;
}

.fc-menu-toggle span {
    display: block;
    width: 19px;
    height: 2px;
    margin: 4px auto;
    border-radius: 3px;
    background: var(--fc-navy-700);
    transition: transform 180ms ease, opacity 180ms ease;
}

.fc-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.fc-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.fc-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* Hero */
.fc-hero {
    position: relative;
    display: grid;
    min-height: 100svh;
    padding: calc(var(--fc-header-height) + 52px) 0 70px;
    overflow: hidden;
    background:
        radial-gradient(circle at 82% 32%, rgba(62, 132, 188, 0.19), transparent 30%),
        linear-gradient(135deg, #fbfdff 0%, #f2f8fd 54%, #eaf3fa 100%);
}

.fc-hero::before {
    position: absolute;
    top: 10%;
    right: -4%;
    width: min(45vw, 620px);
    aspect-ratio: 1;
    border: 1px solid rgba(24, 55, 93, 0.08);
    border-radius: 50%;
    box-shadow: 0 0 0 65px rgba(24, 55, 93, 0.025), 0 0 0 130px rgba(24, 55, 93, 0.018);
    content: "";
}

.fc-hero-grid,
.fc-contact-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(24, 55, 93, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(24, 55, 93, 0.035) 1px, transparent 1px);
    background-size: 32px 32px;
    -webkit-mask-image: linear-gradient(to bottom, #000, transparent 88%);
    mask-image: linear-gradient(to bottom, #000, transparent 88%);
}

.fc-hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(470px, 1.05fr);
    align-items: center;
    gap: 70px;
}

.fc-eyebrow,
.fc-section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    color: var(--fc-navy-700);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.fc-eyebrow {
    padding: 9px 13px;
    border: 1px solid rgba(24, 55, 93, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 9px 22px rgba(18, 52, 90, 0.06);
}

.fc-live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--fc-mint);
    box-shadow: 0 0 0 5px rgba(84, 219, 178, 0.14), 0 0 15px rgba(84, 219, 178, 0.9);
    animation: fcPulse 2s ease-in-out infinite;
}

.fc-hero-copy h1 {
    max-width: 680px;
    margin: 0;
    color: var(--fc-navy-950);
    font-size: clamp(3.5rem, 5.25vw, 5.45rem);
    font-weight: 900;
    letter-spacing: -0.065em;
    line-height: 0.98;
}

.fc-hero-copy h1 span {
    display: block;
    background: linear-gradient(95deg, var(--fc-navy-700), var(--fc-blue-500));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.fc-hero-copy > p {
    max-width: 620px;
    margin: 28px 0 0;
    color: var(--fc-text);
    font-size: 1.03rem;
    font-weight: 500;
    line-height: 1.8;
}

.fc-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.fc-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 56px;
    padding: 12px 22px;
    border: 1px solid transparent;
    border-radius: 15px;
    font-size: 0.82rem;
    font-weight: 900;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.fc-button-primary {
    min-width: 220px;
    background: linear-gradient(110deg, var(--fc-navy-900), #276496);
    color: #fff !important;
    box-shadow: 0 17px 34px rgba(16, 51, 87, 0.22);
}

.fc-button-ghost {
    border-color: rgba(24, 55, 93, 0.13);
    background: rgba(255, 255, 255, 0.73);
    color: var(--fc-navy-700) !important;
}

.fc-button:hover {
    transform: translateY(-3px);
}

.fc-button-primary:hover {
    box-shadow: 0 21px 42px rgba(16, 51, 87, 0.28);
}

.fc-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 34px;
    color: var(--fc-muted);
    font-size: 0.7rem;
    font-weight: 800;
}

.fc-hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.fc-hero-trust i {
    color: var(--fc-blue-500);
    font-size: 1rem;
}

.fc-hero-visual {
    position: relative;
    display: grid;
    min-height: 560px;
    place-items: center;
}

.fc-visual-orbit {
    position: absolute;
    border: 1px solid rgba(40, 101, 156, 0.13);
    border-radius: 50%;
    pointer-events: none;
    animation: fcOrbitSpin 22s linear infinite;
}

.fc-visual-orbit::after {
    position: absolute;
    top: 14%;
    left: 8%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--fc-mint);
    box-shadow: 0 0 16px rgba(84, 219, 178, 0.8);
    content: "";
}

.fc-visual-orbit-one {
    width: 540px;
    height: 540px;
}

.fc-visual-orbit-two {
    width: 430px;
    height: 430px;
    border-style: dashed;
    animation-direction: reverse;
    animation-duration: 27s;
}

.fc-command-card {
    position: relative;
    z-index: 2;
    width: min(100%, 500px);
    min-height: 470px;
    padding: 31px;
    overflow: hidden;
    border: 1px solid rgba(124, 177, 216, 0.3);
    border-radius: var(--fc-radius-xl);
    background:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(145deg, var(--fc-navy-950), #163d68 65%, #286a9f);
    background-size: 28px 28px, 28px 28px, auto;
    color: #fff;
    box-shadow: 0 38px 70px rgba(9, 31, 56, 0.29);
    animation: fcCardFloat 5.5s ease-in-out infinite;
}

.fc-command-card::before,
.fc-command-card::after {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    content: "";
}

.fc-command-card::before {
    top: -130px;
    right: -90px;
    width: 300px;
    height: 300px;
}

.fc-command-card::after {
    right: -60px;
    bottom: -90px;
    width: 190px;
    height: 190px;
}

.fc-command-card-header,
.fc-command-card-footer {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fc-command-icon {
    display: grid;
    width: 51px;
    height: 51px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.19);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.09);
    color: #fff;
    font-size: 1.3rem;
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.17);
}

.fc-system-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 11px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    color: #d9e9f5;
    font-size: 0.6rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.fc-system-badge i,
.fc-command-card-footer i {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--fc-mint);
    box-shadow: 0 0 12px rgba(84, 219, 178, 0.8);
}

.fc-command-card-copy {
    position: relative;
    z-index: 1;
    margin-top: 56px;
}

.fc-command-card-copy > span {
    color: #8fb2cf;
    font-size: 0.64rem;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.fc-command-card-copy h2 {
    max-width: 390px;
    margin: 13px 0 14px;
    color: #fff;
    font-size: 2.35rem;
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 1.06;
}

.fc-command-card-copy p {
    max-width: 370px;
    margin: 0;
    color: #b9ccdc;
    font-size: 0.82rem;
}

.fc-command-services {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
    margin-top: 37px;
}

.fc-command-services > div {
    display: grid;
    min-height: 112px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.055);
    backdrop-filter: blur(8px);
}

.fc-command-services > div > span {
    color: var(--fc-mint);
    font-size: 1.05rem;
}

.fc-command-services strong {
    align-self: end;
    font-size: 0.78rem;
}

.fc-command-services small {
    color: #8faec7;
    font-size: 0.59rem;
}

.fc-command-card-footer {
    margin-top: 26px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #829fba;
    font-size: 0.57rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.fc-command-card-footer span:last-child {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.fc-floating-chip {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 11px;
    min-width: 164px;
    padding: 11px 14px;
    border: 1px solid rgba(24, 55, 93, 0.1);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 40px rgba(11, 39, 68, 0.16);
    backdrop-filter: blur(14px);
}

.fc-floating-chip > i {
    display: grid;
    width: 35px;
    height: 35px;
    place-items: center;
    border-radius: 10px;
    background: var(--fc-mint-soft);
    color: #25866a;
}

.fc-floating-chip span {
    display: grid;
}

.fc-floating-chip strong {
    color: var(--fc-navy-800);
    font-size: 0.68rem;
}

.fc-floating-chip small {
    color: var(--fc-muted);
    font-size: 0.54rem;
}

.fc-floating-chip-one {
    top: 45px;
    right: -26px;
    animation: fcChipFloat 4.8s ease-in-out infinite;
}

.fc-floating-chip-two {
    bottom: 33px;
    left: -38px;
    animation: fcChipFloat 5.5s ease-in-out -2s infinite;
}

.fc-scroll-cue {
    position: absolute;
    bottom: 22px;
    left: 50%;
    z-index: 4;
    display: grid;
    justify-items: center;
    gap: 1px;
    color: var(--fc-muted) !important;
    font-size: 0.53rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transform: translateX(-50%);
}

.fc-scroll-cue i {
    color: var(--fc-blue-500);
    font-size: 1.05rem;
    animation: fcScrollCue 1.8s ease-in-out infinite;
}

/* About */
.fc-about {
    position: relative;
    padding: 130px 0;
    background:
        linear-gradient(rgba(24, 55, 93, 0.028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(24, 55, 93, 0.028) 1px, transparent 1px),
        #fff;
    background-size: 34px 34px;
}

.fc-section-heading {
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    align-items: end;
    gap: 90px;
    margin-bottom: 58px;
}

.fc-section-kicker {
    margin-bottom: 16px;
}

.fc-section-heading h2,
.fc-contact-copy h2 {
    margin: 0;
    color: var(--fc-navy-950);
    font-size: clamp(2.55rem, 4.1vw, 4.45rem);
    font-weight: 900;
    letter-spacing: -0.055em;
    line-height: 1.03;
}

.fc-section-heading > p {
    margin: 0 0 7px;
    color: var(--fc-text);
    font-size: 0.98rem;
    font-weight: 500;
    line-height: 1.82;
}

.fc-about-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.91fr) minmax(0, 1.09fr);
    gap: 18px;
}

.fc-about-story {
    position: relative;
    min-height: 500px;
    padding: 42px;
    overflow: hidden;
    border: 1px solid rgba(122, 169, 204, 0.25);
    border-radius: var(--fc-radius-xl);
    background: linear-gradient(145deg, var(--fc-navy-950), var(--fc-navy-700) 66%, #286a9f);
    color: #fff;
    box-shadow: 0 25px 54px rgba(11, 38, 66, 0.2);
}

.fc-about-story::after {
    position: absolute;
    right: -100px;
    bottom: -105px;
    width: 280px;
    height: 280px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    box-shadow: 0 0 0 60px rgba(255, 255, 255, 0.025);
    content: "";
}

.fc-card-number {
    position: absolute;
    top: 28px;
    right: 32px;
    color: rgba(255, 255, 255, 0.12);
    font-size: 3.4rem;
    font-weight: 900;
    line-height: 1;
}

.fc-story-mark,
.fc-value-icon {
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border-radius: 17px;
}

.fc-story-mark {
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.08);
    color: var(--fc-mint);
    font-size: 1.35rem;
}

.fc-story-label,
.fc-value-card > span,
.fc-value-card > div + div > span {
    display: block;
    margin-top: 68px;
    color: #8fb2cf;
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.fc-about-story h3 {
    max-width: 460px;
    margin: 13px 0 17px;
    color: #fff;
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 900;
    letter-spacing: -0.045em;
    line-height: 1.08;
}

.fc-about-story p {
    position: relative;
    z-index: 1;
    max-width: 470px;
    margin: 0;
    color: #b7ccdc;
    font-size: 0.84rem;
    line-height: 1.75;
}

.fc-about-story > a {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
    color: #fff !important;
    font-size: 0.73rem;
    font-weight: 900;
}

.fc-value-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.fc-value-card {
    min-height: 240px;
    padding: 29px;
    border: 1px solid var(--fc-line);
    border-radius: var(--fc-radius-lg);
    background: var(--fc-surface-soft);
    box-shadow: 0 15px 36px rgba(15, 48, 80, 0.07);
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.fc-value-card:hover {
    border-color: rgba(40, 101, 156, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 22px 45px rgba(15, 48, 80, 0.12);
}

.fc-value-icon {
    background: #e8f2fa;
    color: var(--fc-blue-600);
    font-size: 1.22rem;
}

.fc-value-card > span,
.fc-value-card > div + div > span {
    margin-top: 26px;
    color: var(--fc-blue-600);
}

.fc-value-card h3 {
    margin: 9px 0 10px;
    color: var(--fc-navy-900);
    font-size: 1.12rem;
    font-weight: 900;
    letter-spacing: -0.025em;
    line-height: 1.3;
}

.fc-value-card p {
    margin: 0;
    color: var(--fc-text);
    font-size: 0.75rem;
    line-height: 1.65;
}

.fc-value-card-wide {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 24px;
    min-height: 240px;
    background: linear-gradient(125deg, #edf6fc, #f8fbfd);
}

.fc-value-card-wide > div + div > span {
    margin-top: 0;
}

.fc-value-card-wide h3 {
    max-width: 490px;
    font-size: 1.35rem;
}

.fc-service-rail {
    display: grid;
    grid-template-columns: 1.2fr repeat(3, 1fr);
    margin-top: 22px;
    overflow: hidden;
    border: 1px solid var(--fc-line);
    border-radius: var(--fc-radius-lg);
    background: #fff;
    box-shadow: 0 18px 40px rgba(15, 48, 80, 0.07);
}

.fc-service-rail > div {
    min-height: 125px;
    padding: 27px;
}

.fc-service-rail > div + div {
    border-left: 1px solid var(--fc-line);
}

.fc-service-intro {
    display: grid;
    align-content: center;
    background: var(--fc-navy-700);
    color: #fff;
}

.fc-service-intro span {
    color: #91b5d1;
    font-size: 0.59rem;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.fc-service-intro strong {
    margin-top: 5px;
    font-size: 1.18rem;
    font-weight: 900;
}

.fc-service-step {
    display: flex;
    align-items: center;
    gap: 14px;
}

.fc-service-step > span {
    color: #abc4d8;
    font-size: 1.25rem;
    font-weight: 900;
}

.fc-service-step div {
    display: grid;
}

.fc-service-step strong {
    color: var(--fc-navy-800);
    font-size: 0.74rem;
}

.fc-service-step small {
    margin-top: 3px;
    color: var(--fc-muted);
    font-size: 0.62rem;
    line-height: 1.4;
}

/* Contact */
.fc-contact {
    position: relative;
    padding: 125px 0;
    overflow: hidden;
    background: linear-gradient(132deg, var(--fc-navy-950), var(--fc-navy-700) 58%, #286a9f);
}

.fc-contact::before {
    position: absolute;
    top: -230px;
    left: 44%;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    box-shadow: 0 0 0 85px rgba(255, 255, 255, 0.02), 0 0 0 170px rgba(255, 255, 255, 0.014);
    content: "";
}

.fc-contact-grid {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    -webkit-mask-image: linear-gradient(90deg, #000, transparent 85%);
    mask-image: linear-gradient(90deg, #000, transparent 85%);
}

.fc-contact-layout {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    align-items: center;
    gap: 100px;
}

.fc-section-kicker-light {
    color: var(--fc-mint);
}

.fc-contact-copy h2 {
    color: #fff;
}

.fc-contact-copy > p {
    max-width: 530px;
    margin: 23px 0 0;
    color: #b7ccdc;
    font-size: 0.95rem;
    line-height: 1.8;
}

.fc-contact-status {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-top: 34px;
    padding: 13px 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.055);
}

.fc-contact-status > span:last-child {
    display: grid;
}

.fc-contact-status strong {
    color: #fff;
    font-size: 0.69rem;
}

.fc-contact-status small {
    color: #8fabbe;
    font-size: 0.58rem;
}

.fc-contact-cards {
    display: grid;
    gap: 12px;
}

.fc-contact-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 17px;
    min-height: 100px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.07);
    color: #fff !important;
    backdrop-filter: blur(15px);
    transition: border-color 190ms ease, background 190ms ease, transform 190ms ease;
}

.fc-contact-card:hover {
    border-color: rgba(84, 219, 178, 0.4);
    background: rgba(255, 255, 255, 0.11);
    transform: translateX(6px);
}

.fc-contact-icon {
    display: grid;
    width: 57px;
    height: 57px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--fc-mint);
    font-size: 1.2rem;
}

.fc-contact-card > span:nth-child(2) {
    display: grid;
}

.fc-contact-card small {
    color: #8fadc4;
    font-size: 0.6rem;
    font-weight: 900;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.fc-contact-card strong {
    margin-top: 3px;
    color: #fff;
    font-size: 0.9rem;
}

.fc-contact-arrow {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
}

/* Footer */
.fc-site-footer {
    padding: 35px 0;
    border-top: 1px solid rgba(24, 55, 93, 0.08);
    background: #f7fafd;
}

.fc-footer-layout {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 30px;
}

.fc-footer-brand img {
    width: 145px;
    height: 42px;
    object-fit: contain;
}

.fc-footer-layout p,
.fc-footer-layout small {
    margin: 0;
    color: var(--fc-muted);
    font-size: 0.67rem;
}

.fc-footer-links {
    display: flex;
    align-items: center;
    gap: 22px;
}

.fc-footer-links a {
    color: var(--fc-text) !important;
    font-size: 0.67rem;
    font-weight: 800;
}

.fc-back-to-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 50;
    display: grid;
    width: 47px;
    height: 47px;
    padding: 0;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 14px;
    background: var(--fc-navy-700);
    color: #fff;
    box-shadow: 0 15px 32px rgba(9, 31, 56, 0.25);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 180ms ease, transform 180ms ease;
}

.fc-back-to-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* Motion */
.fc-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 680ms ease var(--reveal-delay, 0ms), transform 680ms cubic-bezier(0.2, 0.75, 0.2, 1) var(--reveal-delay, 0ms);
}

.fc-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fcPulse {
    0%,
    100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.65; transform: scale(0.78); }
}

@keyframes fcPageViewIn {
    from {
        opacity: 0;
        transform: translateY(14px) scale(0.995);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes fcOrbDrift {
    from { transform: translate3d(0, 0, 0) scale(1); }
    to { transform: translate3d(28px, -24px, 0) scale(1.08); }
}

@keyframes fcOrbitSpin {
    to { transform: rotate(360deg); }
}

@keyframes fcCardFloat {
    0%,
    100% { transform: translateY(0) rotate(-0.35deg); }
    50% { transform: translateY(-10px) rotate(0.35deg); }
}

@keyframes fcChipFloat {
    0%,
    100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes fcScrollCue {
    0%,
    100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

/* Responsive */
@media (max-width: 1100px) {
    .fc-hero-layout {
        grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
        gap: 40px;
    }

    .fc-floating-chip-one { right: -4px; }
    .fc-floating-chip-two { left: -12px; }

    .fc-command-card { width: min(100%, 460px); }

    .fc-about-layout,
    .fc-contact-layout {
        gap: 48px;
    }

    .fc-footer-layout {
        grid-template-columns: auto 1fr auto;
    }

    .fc-footer-layout small {
        grid-column: 1 / -1;
        text-align: center;
    }
}

@media (max-width: 960px) {
    :root { --fc-header-height: 80px; }

    .fc-nav-shell {
        grid-template-columns: 1fr auto;
    }

    .fc-primary-nav {
        position: fixed;
        top: 92px;
        right: 24px;
        left: 24px;
        display: grid;
        gap: 6px;
        padding: 13px;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.97);
        box-shadow: 0 25px 60px rgba(9, 31, 56, 0.18);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-12px);
        transition: opacity 180ms ease, transform 180ms ease;
    }

    .fc-primary-nav.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .fc-nav-link {
        width: 100%;
        padding: 13px 16px;
        text-align: left;
    }

    .fc-header-action { display: none; }

    .fc-menu-toggle {
        display: block;
        justify-self: end;
    }

    .fc-hero {
        min-height: auto;
        padding-top: calc(var(--fc-header-height) + 72px);
    }

    .fc-hero-layout {
        grid-template-columns: 1fr;
        gap: 58px;
    }

    .fc-hero-copy {
        max-width: 750px;
        text-align: center;
        justify-self: center;
    }

    .fc-hero-copy > p {
        margin-inline: auto;
    }

    .fc-hero-actions,
    .fc-hero-trust {
        justify-content: center;
    }

    .fc-hero-visual {
        width: min(100%, 680px);
        justify-self: center;
    }

    .fc-scroll-cue { display: none; }

    .fc-section-heading,
    .fc-about-layout,
    .fc-contact-layout {
        grid-template-columns: 1fr;
    }

    .fc-section-heading { gap: 25px; }

    .fc-section-heading > p { max-width: 720px; }

    .fc-about-story { min-height: 460px; }

    .fc-contact-layout { gap: 50px; }

    .fc-contact-copy { max-width: 760px; }

    .fc-service-rail {
        grid-template-columns: 1fr 1fr;
    }

    .fc-service-rail > div:nth-child(3) { border-left: 0; }
    .fc-service-rail > div:nth-child(n + 3) { border-top: 1px solid var(--fc-line); }
}

@media (max-width: 680px) {
    .fc-page-shell,
    .fc-nav-shell {
        width: min(100% - 30px, 1180px);
    }

    .fc-brand { padding: 4px 9px; }

    .fc-brand img {
        width: 145px;
        height: 40px;
    }

    .fc-hero {
        padding-top: calc(var(--fc-header-height) + 52px);
        padding-bottom: 65px;
    }

    .fc-hero-copy h1 {
        font-size: clamp(2.75rem, 13.5vw, 4rem);
    }

    .fc-hero-copy > p {
        font-size: 0.92rem;
        line-height: 1.72;
    }

    .fc-hero-actions {
        display: grid;
    }

    .fc-button { width: 100%; }

    .fc-hero-trust { gap: 12px 16px; }

    .fc-hero-visual { min-height: 500px; }

    .fc-command-card {
        min-height: 450px;
        padding: 25px;
        border-radius: 27px;
    }

    .fc-command-card-copy { margin-top: 42px; }

    .fc-command-card-copy h2 { font-size: 2rem; }

    .fc-command-services { margin-top: 30px; }

    .fc-command-services > div { padding: 11px; }

    .fc-floating-chip { display: none; }

    .fc-visual-orbit-one { width: 460px; height: 460px; }
    .fc-visual-orbit-two { width: 350px; height: 350px; }

    .fc-about,
    .fc-contact { padding: 90px 0; }

    .fc-section-heading h2,
    .fc-contact-copy h2 {
        font-size: clamp(2.35rem, 10.5vw, 3.4rem);
    }

    .fc-about-story {
        min-height: 0;
        padding: 31px;
    }

    .fc-story-label { margin-top: 48px; }

    .fc-value-grid { grid-template-columns: 1fr; }

    .fc-value-card-wide {
        grid-column: auto;
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .fc-value-card { min-height: 220px; }

    .fc-service-rail { grid-template-columns: 1fr; }

    .fc-service-rail > div + div,
    .fc-service-rail > div:nth-child(3) {
        border-top: 1px solid var(--fc-line);
        border-left: 0;
    }

    .fc-service-rail > div { min-height: 105px; }

    .fc-contact-card {
        grid-template-columns: auto minmax(0, 1fr);
        gap: 13px;
        min-height: 92px;
        padding: 15px;
    }

    .fc-contact-arrow { display: none; }

    .fc-contact-card strong {
        overflow-wrap: anywhere;
        font-size: 0.78rem;
    }

    .fc-footer-layout {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 18px;
        text-align: center;
    }

    .fc-footer-links { gap: 18px; }
}

@media (max-width: 390px) {
    .fc-hero-trust span:last-child { display: none; }

    .fc-command-card-copy h2 { font-size: 1.75rem; }

    .fc-command-services {
        grid-template-columns: 1fr;
        gap: 7px;
    }

    .fc-command-services > div {
        grid-template-columns: auto 1fr;
        align-items: center;
        column-gap: 10px;
        min-height: 64px;
    }

    .fc-command-services strong { align-self: center; }
    .fc-command-services small { grid-column: 2; }

    .fc-command-card-footer { font-size: 0.49rem; }

    .fc-contact-status { align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .fc-reveal {
        opacity: 1;
        transform: none;
    }
}
