:root {
    --foreground: #111827;
    --muted: #64748b;
    --border: #e2e8f0;
    --blue: #2563eb;
    --purple: #9333ea;
    --pink: #db2777;
    --slate-900: #0f172a;
    --fig-nav-height: 80px;
    --fig-nav-icon-size: 80px;
    --site-font-family: "Saira", sans-serif;
    --title-font-family: "Saira", sans-serif;
    --logo-primary-font-family: "Saira", sans-serif;
    --logo-secondary-font-family: "Saira", sans-serif;
    --logo-icon-box-height: 72px;
    --logo-icon-box-width: 72px;
    --logo-title-box-height: 72px;
    --logo-title-box-width: 92px;
    --contact-brand-box-height: 52px;
    --contact-brand-box-width: 52px;
    --contact-brand-text-box-height: 52px;
    --contact-brand-text-box-width: 300px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.site-body {
    margin: 0;
    min-height: 100vh;
    color: var(--foreground);
    background: #ffffff;
    font-family: var(--site-font-family);
    line-height: 1.5;
}

a {
    color: inherit;
}

img {
    display: block;
}

.fig-container {
    width: min(1280px, calc(100% - 2rem));
    margin-inline: auto;
}

.flash-wrap {
    position: fixed;
    top: 92px;
    left: 50%;
    z-index: 80;
    width: min(680px, calc(100% - 2rem));
    transform: translateX(-50%);
}

.flash-message {
    margin: 0;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    border: 1px solid #bfdbfe;
    background: #eff6ff;
    color: #1e40af;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}

.fig-nav {
    position: fixed;
    inset: 0 0 auto;
    z-index: 50;
    border-bottom: 1px solid rgba(147, 197, 253, 0.16);
    background:
        radial-gradient(circle at 18% 0%, rgba(59, 130, 246, 0.24), transparent 38%),
        linear-gradient(135deg, rgba(3, 13, 35, 0.98), rgba(8, 31, 70, 0.97) 52%, rgba(10, 17, 38, 0.98));
    backdrop-filter: blur(16px);
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.22);
}

.fig-nav-inner {
    height: var(--fig-nav-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.fig-brand {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    min-width: 0;
}

.fig-brand-image {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.fig-nav .fig-brand-image {
    width: var(--logo-icon-box-width);
    height: var(--logo-icon-box-height);
    flex: 0 0 var(--logo-icon-box-width);
    object-fit: cover;
}

.fig-nav .fig-brand > span {
    height: var(--logo-title-box-height);
    width: var(--logo-title-box-width);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: calc(var(--logo-title-box-height) * 0.015);
    min-width: 0;
}

.fig-brand-wide-image {
    width: auto;
    height: 50px;
    max-width: 260px;
    object-fit: contain;
}

.fig-nav .fig-brand-wide-image {
    height: calc(var(--fig-nav-height) - 18px);
    max-width: 320px;
}

.fig-brand-wide_only {
    gap: 0;
}

.fig-brand strong {
    display: block;
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 800;
    font-family: var(--logo-primary-font-family);
    line-height: 1;
}

.fig-brand small {
    display: block;
    color: #bfdbfe;
    font-size: 0.75rem;
    font-family: var(--logo-secondary-font-family);
    line-height: 1.1;
}

.fig-nav .fig-brand strong,
.fig-nav .fig-brand small {
    font-size: clamp(
        0.72rem,
        min(
            calc(var(--logo-title-box-height) * 0.24),
            calc(var(--logo-title-box-width) * 0.165)
        ),
        1.9rem
    );
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.01em;
    color: #ffffff;
    font-synthesis: none;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: clip;
}

.fig-nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.fig-nav-links a {
    text-decoration: none;
    color: #dbeafe;
    font-size: 0.94rem;
    font-weight: 700;
    transition: color 0.18s ease, box-shadow 0.18s ease;
}

.fig-nav-links a:hover {
    color: #ffffff;
}

.fig-nav-links .fig-nav-cta {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    color: #ffffff;
    background: linear-gradient(90deg, #2563eb, #9333ea);
    box-shadow: 0 14px 30px rgba(37, 99, 235, 0.28);
}

.fig-nav-links .fig-nav-cta:hover {
    color: #ffffff;
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.25);
}

.fig-menu-button {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    color: #ffffff;
}

.fig-menu-button svg {
    width: 24px;
    height: 24px;
}

.fig-mobile-nav {
    display: none;
    padding: 0.75rem 1rem 1rem;
    border-top: 1px solid rgba(147, 197, 253, 0.16);
    background: #061733;
}

.fig-mobile-nav a {
    display: block;
    padding: 0.65rem 0.85rem;
    border-radius: 0.55rem;
    color: #dbeafe;
    text-decoration: none;
}

.fig-mobile-nav a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.fig-mobile-nav.open {
    display: block;
}

.fig-hero {
    position: relative;
    overflow: hidden;
    padding: 8rem 0 5rem;
}

.fig-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #eff6ff, #faf5ff 48%, #fdf2f8);
    opacity: 0.55;
}

.fig-hero-inner {
    position: relative;
}

.fig-hero-copy {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.fig-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    color: #1d4ed8;
    background: #dbeafe;
}

.fig-pill svg {
    width: 1rem;
    height: 1rem;
}

.fig-pill span {
    font-size: 0.875rem;
    font-weight: 600;
}

.fig-hero h1 {
    margin: 0 0 1.5rem;
    font-size: clamp(3rem, 5.8vw, 4.5rem);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: 0;
    color: transparent;
    background: linear-gradient(90deg, #2563eb, #9333ea, #db2777);
    -webkit-background-clip: text;
    background-clip: text;
}

.fig-hero-copy p {
    max-width: 860px;
    margin: 0 auto;
    color: #64748b;
    font-size: 1.25rem;
}

.fig-hero-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.fig-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.85rem 1.55rem;
    border-radius: 0.75rem;
    border: 0;
    text-decoration: none;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.fig-button:hover {
    transform: translateY(-1px);
}

.fig-button-primary {
    color: #ffffff;
    background: linear-gradient(90deg, #2563eb, #9333ea);
}

.fig-button-primary:hover {
    box-shadow: 0 18px 40px rgba(37, 99, 235, 0.25);
}

.fig-button-outline {
    color: #111827;
    border: 2px solid var(--border);
    background: #ffffff;
}

.fig-button-outline:hover {
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.1);
}

.fig-button-white {
    color: #2563eb;
    background: #ffffff;
}

.fig-button-white:hover {
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
}

.fig-hero-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1024px;
    margin: 0 auto;
}

.fig-hero-card {
    padding: 2rem;
    border: 1px solid var(--border);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    transition: box-shadow 0.18s ease, transform 0.18s ease;
}

.fig-hero-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
}

.fig-hero-card svg {
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
    color: #2563eb;
}

.fig-hero-card:nth-child(2) svg {
    color: #9333ea;
}

.fig-hero-card:nth-child(3) svg {
    color: #db2777;
}

.fig-hero-card h3 {
    margin: 0 0 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.fig-hero-card p {
    margin: 0;
    color: #64748b;
}

.fig-global,
.fig-products,
.fig-footer {
    color: #ffffff;
    background: linear-gradient(135deg, #0f172a, #581c87 52%, #0f172a);
}

.fig-global {
    padding: 5rem 0;
}

.fig-section-head {
    max-width: 760px;
    margin: 0 auto 4rem;
    text-align: center;
}

.fig-section-head > span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
}

.fig-section-head h2 {
    margin: 0 0 1rem;
    font-size: clamp(2.25rem, 4vw, 3rem);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: 0;
}

.fig-section-head p {
    margin: 0;
    font-size: 1.22rem;
}

.fig-section-head-dark p {
    color: #e9d5ff;
}

.fig-section-head-dark > span {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
}

.fig-section-head-dark svg {
    width: 1rem;
    height: 1rem;
    color: #facc15;
}

.fig-section-head-light h2 {
    color: #111827;
}

.fig-section-head-light p {
    color: #64748b;
}

.fig-section-head-light > span {
    color: #1d4ed8;
    background: #dbeafe;
}

.fig-clients .fig-section-head-light > span {
    color: #7e22ce;
    background: #f3e8ff;
}

.fig-contact .fig-section-head-light > span {
    color: #1d4ed8;
    background: #dbeafe;
}

.fig-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.fig-stat {
    text-align: center;
}

.fig-stat svg {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem;
    color: #2563eb;
}

.fig-stat:nth-child(2) svg {
    color: #9333ea;
}

.fig-stat:nth-child(3) svg {
    color: #db2777;
}

.fig-stat:nth-child(4) svg {
    color: #4f46e5;
}

.fig-stat strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 2.5rem;
    line-height: 1;
    font-weight: 800;
}

.fig-stat span {
    color: #e9d5ff;
}

.fig-market-panel,
.fig-about-copy {
    max-width: 920px;
    margin: 0 auto;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
}

.fig-market-panel h3,
.fig-about-copy h3 {
    margin: 0 0 1.5rem;
    text-align: center;
    font-size: 1.5rem;
}

.fig-market-panel div {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.fig-market-panel span {
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
}

.fig-about-copy {
    margin-top: 1rem;
}

.fig-about-copy p {
    color: #e9d5ff;
}

.fig-services {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc, #eff6ff);
}

.fig-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.fig-service-card {
    --accent-a: #3b82f6;
    --accent-b: #06b6d4;
    padding: 2rem;
    border: 1px solid var(--border);
    border-radius: 1rem;
    background: #ffffff;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.fig-service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 56px rgba(15, 23, 42, 0.12);
}

.fig-card-icon {
    width: 4rem;
    height: 4rem;
    display: grid;
    place-items: center;
    margin-bottom: 1.5rem;
    border-radius: 0.75rem;
    color: #ffffff;
    background: linear-gradient(135deg, var(--accent-a), var(--accent-b));
    transition: transform 0.2s ease;
}

.fig-service-card:hover .fig-card-icon,
.fig-product-card:hover .fig-card-icon {
    transform: scale(1.08);
}

.fig-card-icon svg {
    width: 2rem;
    height: 2rem;
}

.fig-service-card h3 {
    margin: 0 0 0.75rem;
    color: #111827;
    font-size: 1.5rem;
    font-weight: 800;
}

.fig-service-card p {
    margin: 0 0 1.5rem;
    color: #64748b;
}

.fig-service-card ul,
.fig-client-card ul,
.fig-product-card ul,
.fig-footer ul,
.fig-contact-info ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.fig-service-card li {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin-top: 0.5rem;
    color: #111827;
    font-size: 0.94rem;
}

.fig-service-card li::before {
    content: "";
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent-a), var(--accent-b));
}

.fig-clients {
    padding: 5rem 0;
    background: #ffffff;
}

.fig-client-stack {
    display: grid;
    gap: 2rem;
}

.fig-client-card {
    --accent-a: #2563eb;
    --accent-b: #0891b2;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid var(--border);
    border-radius: 1rem;
    background: linear-gradient(135deg, #f8fafc, #eff6ff);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.fig-client-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 56px rgba(15, 23, 42, 0.12);
}

.fig-client-image {
    position: relative;
    min-height: 320px;
    overflow: hidden;
    background: linear-gradient(135deg, #e0f2fe, #ede9fe);
}

.fig-client-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.fig-client-card:hover .fig-client-image img {
    transform: scale(1.05);
}

.fig-client-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--accent-a), var(--accent-b));
    opacity: 0.2;
}

.fig-client-image div {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 2rem;
    color: #1e3a8a;
    font-size: 1.5rem;
    font-weight: 800;
    text-align: center;
}

.fig-client-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem;
}

.fig-client-body > span {
    width: fit-content;
    margin-bottom: 1rem;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    color: #111827;
    background: #ffffff;
    font-size: 0.875rem;
    font-weight: 600;
}

.fig-client-body h3 {
    margin: 0 0 0.5rem;
    color: #111827;
    font-size: 2rem;
    line-height: 1.1;
    font-weight: 800;
}

.fig-client-body small {
    margin-bottom: 1rem;
    color: #64748b;
}

.fig-client-body p {
    margin: 0 0 1.5rem;
    color: #64748b;
}

.fig-client-body li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #111827;
    font-weight: 600;
}

.fig-client-body li svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--accent-a);
}

.fig-client-body a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: fit-content;
    margin-top: 0.75rem;
    color: #111827;
    text-decoration: none;
    font-weight: 700;
}

.fig-client-body a svg {
    width: 1rem;
    height: 1rem;
}

.fig-products {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0f172a, #1e3a8a 52%, #0f172a);
}

.fig-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.fig-product-card {
    --accent-a: #2563eb;
    --accent-b: #0891b2;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
}

.fig-product-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.fig-product-top .fig-card-icon {
    margin: 0;
}

.fig-status {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    color: #bbf7d0;
    background: rgba(34, 197, 94, 0.2);
    font-size: 0.75rem;
    font-weight: 700;
}

.fig-product-card h3 {
    margin: 0 0 0.5rem;
    font-size: 1.5rem;
    line-height: 1.2;
    font-weight: 800;
}

.fig-product-card > strong {
    margin-bottom: 1rem;
    color: var(--accent-b);
    font-size: 0.94rem;
}

.fig-product-card > p {
    margin: 0 0 1.5rem;
    color: #dbeafe;
}

.fig-product-card ul {
    display: grid;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.fig-product-card li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: #dbeafe;
    font-size: 0.94rem;
}

.fig-product-card li svg {
    width: 1rem;
    height: 1rem;
    flex: 0 0 auto;
    margin-top: 0.2rem;
    color: #facc15;
}

.fig-product-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.fig-product-bottom span {
    color: #bfdbfe;
    font-size: 0.9rem;
}

.fig-product-bottom a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
}

.fig-product-bottom svg {
    width: 1rem;
    height: 1rem;
}

.fig-beta {
    padding: 3rem;
    border-radius: 1rem;
    text-align: center;
    background: linear-gradient(90deg, #2563eb, #9333ea);
}

.fig-beta h3 {
    margin: 0 0 1rem;
    font-size: 2rem;
    font-weight: 800;
}

.fig-beta p {
    max-width: 700px;
    margin: 0 auto 1.5rem;
    color: #dbeafe;
}

.fig-contact {
    padding: 5rem 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(37, 99, 235, 0.09), transparent 34%),
        radial-gradient(circle at 88% 5%, rgba(147, 51, 234, 0.12), transparent 32%),
        linear-gradient(135deg, #f8fafc, #eef5ff);
}

.fig-contact-grid {
    display: grid;
    grid-template-columns: 0.86fr 1.14fr;
    gap: 2rem;
    align-items: stretch;
}

.fig-contact-info,
.fig-contact-form {
    position: relative;
    overflow: hidden;
    padding: 2rem;
    border: 1px solid var(--border);
    border-radius: 1rem;
    background: #ffffff;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
}

.fig-contact-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 520px;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.18);
    background:
        linear-gradient(135deg, rgba(37, 99, 235, 0.95), rgba(88, 28, 135, 0.92)),
        #1e3a8a;
}

.fig-contact-glow {
    position: absolute;
    right: -110px;
    top: -110px;
    width: 270px;
    height: 270px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
}

.fig-contact-info-head,
.fig-contact-methods,
.fig-contact-proof {
    position: relative;
    z-index: 1;
}

.fig-contact-brand-row {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    min-height: var(--contact-brand-box-height);
}

.fig-contact-mark {
    width: var(--contact-brand-box-width);
    height: var(--contact-brand-box-height);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 var(--contact-brand-box-width);
    padding: 0.35rem;
    border-radius: 0.9rem;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.fig-contact-mark[data-mode="icon_logo"] {
    justify-content: space-between;
    gap: 0.35rem;
    padding-inline: 0.45rem;
}

.fig-contact-mark svg {
    width: 1.45rem;
    height: 1.45rem;
}

.fig-contact-mark-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.fig-contact-mark[data-mode="icon_logo"] .fig-contact-mark-icon {
    width: 1rem;
    height: 1rem;
    flex: 0 0 auto;
}

.fig-contact-mark[data-mode="icon_logo"] .fig-contact-mark-image {
    width: auto;
    max-width: calc(100% - 1.4rem);
}

.fig-contact-brand-title {
    margin: 0;
    color: #ffffff;
    font-size: 1.85rem;
    line-height: 1.12;
    font-weight: 800;
    width: min(100%, var(--contact-brand-text-box-width));
    height: var(--contact-brand-box-height);
    min-height: var(--contact-brand-box-height);
    display: flex;
    align-items: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fig-contact-brand-tagline {
    margin: 0.8rem 0 0;
    color: #dbeafe;
    font-size: 0.98rem;
    line-height: 1.35;
}

.fig-contact-methods {
    display: grid;
    gap: 0.9rem;
    margin-top: 2rem;
}

.fig-contact-methods li {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    backdrop-filter: blur(10px);
}

.fig-contact-methods li > span {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 0.7rem;
    background: rgba(255, 255, 255, 0.16);
}

.fig-contact-methods li > div {
    min-height: 38px;
    min-width: 0;
    display: flex;
    align-items: center;
}

.fig-contact-methods small {
    display: block;
    margin-bottom: 0.12rem;
    color: #bfdbfe;
    font-size: 0.78rem;
    font-weight: 600;
}

.fig-contact-methods strong {
    display: block;
    color: #ffffff;
    font-size: 0.97rem;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.fig-contact-methods svg {
    width: 1.1rem;
    height: 1.1rem;
}

.fig-contact-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.65rem;
    margin-top: 2rem;
}

.fig-contact-proof div {
    min-height: 92px;
    padding: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
}

.fig-contact-proof strong {
    display: block;
    margin-bottom: 0.25rem;
    color: #ffffff;
    font-size: 1.35rem;
    line-height: 1;
}

.fig-contact-proof span {
    display: block;
    color: #dbeafe;
    font-size: 0.76rem;
    line-height: 1.3;
}

.fig-contact-form {
    padding: 2.25rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 250, 252, 0.98)),
        #ffffff;
}

.fig-form-head {
    margin-bottom: 1.35rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid #e2e8f0;
}

.fig-form-head span {
    display: inline-flex;
    margin-bottom: 0.65rem;
    padding: 0.32rem 0.75rem;
    border-radius: 999px;
    color: #1d4ed8;
    background: #dbeafe;
    font-size: 0.82rem;
    font-weight: 700;
}

.fig-form-head h3 {
    margin: 0 0 0.35rem;
    color: #111827;
    font-size: 1.65rem;
    line-height: 1.15;
    font-weight: 800;
}

.fig-form-head p {
    margin: 0;
    color: #64748b;
}

.fig-form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.fig-field {
    margin-top: 0.85rem;
}

.fig-contact-form label {
    display: block;
    margin: 0 0 0.35rem;
    color: #111827;
    font-weight: 700;
    font-size: 0.9rem;
}

.fig-contact-form input,
.fig-contact-form textarea {
    width: 100%;
    min-height: 50px;
    border: 1px solid #d4e0f0;
    border-radius: 0.75rem;
    background: #f8fbff;
    color: #111827;
    font: inherit;
    padding: 0.78rem 0.95rem;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.fig-contact-form textarea {
    min-height: 148px;
    resize: vertical;
}

.fig-contact-form input:focus,
.fig-contact-form textarea:focus {
    outline: none;
    border-color: #60a5fa;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.22);
}

.fig-contact-submit {
    width: 100%;
    gap: 0.55rem;
    margin-top: 1.25rem;
    min-height: 54px;
}

.fig-contact-submit svg {
    width: 1rem;
    height: 1rem;
}

.form-error {
    margin: 0.25rem 0 0;
    color: #dc2626;
    font-size: 0.9rem;
}

.fig-footer {
    padding: 5rem 0 2.5rem;
    background: #0f172a;
}

.fig-footer .fig-brand strong,
.fig-footer h4 {
    color: #ffffff;
}

.fig-footer .fig-brand small {
    color: #93c5fd;
}

.fig-footer-grid {
    display: grid;
    grid-template-columns: 1.3fr repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.fig-footer-brand {
    margin-bottom: 1.5rem;
}

.fig-footer p,
.fig-footer li,
.fig-footer a {
    color: #bfdbfe;
    text-decoration: none;
}

.fig-footer h4 {
    margin: 0 0 1rem;
    font-size: 1rem;
}

.fig-footer li + li {
    margin-top: 0.5rem;
}

.fig-footer a:hover {
    color: #ffffff;
}

.fig-socials {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.fig-socials a {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
}

.fig-socials svg {
    width: 1.2rem;
    height: 1.2rem;
}

.fig-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.fig-footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
}

.fig-footer-bottom div {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.9rem;
}

.accent-blue {
    --accent-a: #3b82f6;
    --accent-b: #06b6d4;
}

.accent-purple {
    --accent-a: #8b5cf6;
    --accent-b: #ec4899;
}

.accent-green {
    --accent-a: #22c55e;
    --accent-b: #10b981;
}

.accent-orange {
    --accent-a: #f97316;
    --accent-b: #ef4444;
}

.accent-pink {
    --accent-a: #ec4899;
    --accent-b: #f43f5e;
}

.accent-indigo {
    --accent-a: #6366f1;
    --accent-b: #8b5cf6;
}

@media (max-width: 1024px) {
    .fig-nav-links {
        display: none;
    }

    .fig-menu-button {
        display: grid;
        place-items: center;
    }

    .fig-hero-cards,
    .fig-service-grid,
    .fig-stats,
    .fig-product-grid,
    .fig-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fig-client-card,
    .fig-contact-grid {
        grid-template-columns: 1fr;
    }

    .fig-contact-info {
        min-height: auto;
    }
}

@media (max-width: 720px) {
    .fig-container {
        width: min(1280px, calc(100% - 1.25rem));
    }

    .fig-hero {
        padding: 7rem 0 3.5rem;
    }

    .fig-hero h1 {
        font-size: 2.65rem;
    }

    .fig-hero-copy p,
    .fig-section-head p {
        font-size: 1rem;
    }

    .fig-hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .fig-button {
        width: 100%;
    }

    .fig-hero-cards,
    .fig-service-grid,
    .fig-stats,
    .fig-product-grid,
    .fig-footer-grid {
        grid-template-columns: 1fr;
    }

    .fig-client-body,
    .fig-beta,
    .fig-market-panel,
    .fig-about-copy,
    .fig-contact-info,
    .fig-contact-form {
        padding: 1.25rem;
    }

    .fig-form-row,
    .fig-contact-proof {
        grid-template-columns: 1fr;
    }

    .fig-footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}
