/* -------------------------------------------------------------------------- */
/*                                 RESET & BASE                               */
/* -------------------------------------------------------------------------- */
:root {
    --falconx-blue: #007EE5;
    --falconx-dark: #00467F;
    --text-primary: #1a1a1a;
    --text-secondary: #555;
    --bg-light: #f0f0f0;
    --bg-white: #fafafa;
    /* Updated visual background */
    --border-color: #e5e5e5;
    --gradient-hero: linear-gradient(180deg, #D0DCEC 0%, #fafafa 100%);
    /* Blend to new bg */
    --gradient-brand: linear-gradient(270.05deg, #007EE5 0%, #00467F 100%);

    --font-main: 'Inter', sans-serif;

    --container-small: 1140px;
    /* Tighter standard container */
    --padding-section: 6rem;
    --padding-global: 15vw;
    /* Massive side padding as requested */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-main);
    color: var(--text-primary);
    background-color: var(--bg-white);
    line-height: 1.5;
    overflow-x: clip;
}

h1,
h2,
h3,
h4 {
    font-family: "Saira Extra Condensed", sans-serif;
    font-weight: 300;
    /* Clean, light weight like SIMPLIFICA */
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-wrap: balance;
    /* Improve heading line breaks */
}

h2 {
    font-size: 2.8rem;
    line-height: 1.1;
    color: #111;
}

p,
.text-size-regular,
.text-size-small {
    text-wrap: pretty;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

img,
svg {
    display: block;
    max-width: 100%;
}

/* -------------------------------------------------------------------------- */
/*                          LAYOUT UTILITIES (FALCONX)                        */
/* -------------------------------------------------------------------------- */
.page-wrapper {
    position: relative;
    overflow: clip;
}

.section {
    position: relative;
}

.padding-global {
    padding-left: var(--padding-global);
    padding-right: var(--padding-global);
}

.padding-section-medium {
    padding-top: var(--padding-section);
    padding-bottom: var(--padding-section);
}

.container-small {
    width: 100%;
    max-width: var(--container-small);
    margin-left: auto;
    margin-right: auto;
}

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

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

.spacer-regular {
    height: 2rem;
}

.spacer-medium {
    height: 4rem;
}

.spacer-xxlarge {
    height: 8rem;
}

/* -------------------------------------------------------------------------- */
/*                                COMPONENTS                                  */
/* -------------------------------------------------------------------------- */

/* Buttons */
.button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    /* Negrilla as requested */
    text-align: center;
    border-radius: 999px;
    /* Pill shape (redondeados) */
    transition: all 0.2s ease;
    cursor: pointer;
    line-height: 1.2;
    border: 1px solid transparent;
}

.button.is-navbar-button {
    background-color: transparent;
    color: var(--text-primary);
    text-transform: none;
    /* remove uppercase if it was too aggressive, or keep if stylistic */
    font-size: 0.9rem;
    padding: 0rem 1rem;
    /* Skin-tight button */
    border: 1px solid var(--falconx-blue);
    /* Finos - adding border for the "Login" button usually */
    color: var(--falconx-blue);
}

.button.is-navbar-button:hover {
    background-color: rgba(0, 126, 229, 0.05);
}

.button[data-variant="base"] {
    background-color: var(--falconx-blue);
    color: white;
}

.button[data-variant="base"]:hover {
    background-color: var(--falconx-dark);
}

/* Navbar */
/* Navbar - Dynamic Scroll Effect */
.navbar-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2005;
    background-color: transparent;
    padding: 1rem 0;
    /* padding for logo and content */
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.navbar-wrapper.scrolled {
    padding: 0.5rem 0;
    background-color: transparent;
    /* No longer a full white bar */
}

/* Navbar Layout */
.navbar_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1280px;
    /* Better alignment with new hero */
    margin: 0 auto;
    padding: 0 1.5rem;
}

.navbar_logo {
    width: 120px;
    display: block;
    transition: filter 0.3s;
}

/* Right Content Group: The Glassmorphism Pill */
.navbar_right-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    /* Gap between menu links and button */

    /* Premium Glass Pill Look */
    background: rgba(255, 255, 255, 0.05);
    /* bg-white/5 */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    /* ring-1 ring-white/10 */
    border-radius: 9999px;
    padding: 0.25rem 0.25rem 0.25rem 1rem;
    /* tighter on right to wrap button nicely */
    transition: all 0.3s ease;
}

/* Pill Look when Scrolled */
.navbar-wrapper.scrolled .navbar_right-content {
    background: rgba(255, 255, 255, 0.85);
    /* Frosty white */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05), inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}

/* Navbar Menu */
.navbar_menu {
    display: flex;
    gap: 0;
    /* Links handle their own padding now */
    align-items: center;
}

.navbar_link,
.navbar_dummy-link {
    font-size: 0.875rem;
    /* text-sm */
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s, background-color 0.2s;
    text-decoration: none;
    position: relative;
    padding: 0.5rem 0.75rem;
    /* Pill link padding */
    border-radius: 9999px;
    color: rgba(255, 255, 255, 0.8);
    /* Starting color */
}

/* Scrolled links (Dark text) */
.navbar-wrapper.scrolled .navbar_link,
.navbar-wrapper.scrolled .navbar_dummy-link {
    color: #444;
}

/* Active/Hover non-scrolled state */
.navbar-wrapper:not(.scrolled) .navbar_link:hover,
.navbar-wrapper:not(.scrolled) .navbar_dummy-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

/* Active/Hover scrolled state */
.navbar-wrapper.scrolled .navbar_link:hover,
.navbar-wrapper.scrolled .navbar_dummy-link:hover {
    color: #111;
    background: rgba(0, 0, 0, 0.05);
}

/* Dark Hero Logo + Menu icon overrides */
.navbar-wrapper:not(.scrolled) .navbar_logo {
    filter: brightness(0) invert(1);
}

.navbar-wrapper:not(.scrolled) .menu-icon div {
    background: white;
}

/* Dropdown Chevrons */
.dropdown-icon {
    width: 10px;
    height: auto;
    color: inherit;
    transition: transform 0.2s;
}

.navbar_dropdown-wrapper:hover .dropdown-icon {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.navbar_dropdown-wrapper {
    position: relative;
    /* Removed padding, relying on link padding */
    height: 100%;
    display: flex;
    align-items: center;
}

.navbar_dropdown-list {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    /* By using a completely solid background, we avoid the nested backdrop-filter bug in Safari/Chrome which caused the hero elements to glitch and bleed through */
    background: #18181b;
    border: 1px solid rgba(255, 255, 255, 0.15);
    min-width: 220px;
    padding: 0.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);

    /* Robust Hidden State */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 100;
}

/* Transform Dropdown when Navbar is Scrolled */
.navbar-wrapper.scrolled .navbar_dropdown-list {
    background: #ffffff;
    /* Solid white */
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Bridging pseudo-element */
.navbar_dropdown-list::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background: transparent;
}

.navbar_dropdown-wrapper:hover .navbar_dropdown-list {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.dropdown-link {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.dropdown-link:hover {
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
}

/* Scrolled Dropdown Links */
.navbar-wrapper.scrolled .dropdown-link {
    color: #333;
}

.navbar-wrapper.scrolled .dropdown-link:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: #111;
}

.navbar_button-wrapper {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

/* Navbar CTA overrides for Pill layout */
.navbar-wrapper:not(.scrolled) .navbar_button-wrapper .button.cta {
    background-color: white;
    color: #111;
    border-radius: 9999px;
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.navbar-wrapper:not(.scrolled) .navbar_button-wrapper .button.cta:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

/* Scrolled Navbar CTA */
.navbar-wrapper.scrolled .navbar_button-wrapper .button.cta {
    background-color: #111;
    color: white;
    border-radius: 9999px;
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.navbar-wrapper.scrolled .navbar_button-wrapper .button.cta:hover {
    background-color: #333;
}

.menu-icon {
    display: none;
    width: 36px;
    height: 36px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    position: relative;
    z-index: 2001;
    border-radius: 50%;
    /* Subtle container for the icon */
    background: transparent;
    transition: background 0.3s ease;
}

.menu-icon:hover {
    background: rgba(255, 255, 255, 0.1);
}

.navbar-wrapper.scrolled .menu-icon:hover {
    background: rgba(0, 0, 0, 0.05);
}

.menu-icon div {
    width: 18px;
    height: 2px;
    background: currentColor;
    transition: all 0.3s linear;
    transform-origin: 1px;
}

/* Transform to X when open */
.menu-icon.open div:nth-child(1) {
    transform: rotate(45deg);
}

.menu-icon.open div:nth-child(2) {
    opacity: 0;
    visibility: hidden;
}

.menu-icon.open div:nth-child(3) {
    transform: rotate(-45deg);
}

/* -------------------------------------------------------------------------- */
/*                               HERO SECTION                                 */
/* -------------------------------------------------------------------------- */
/* New Responsive Hero Section (Tailwind Port to Vanilla CSS) */
@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.animate-fade-slide-in-1 {
    animation: fadeSlideIn 0.8s ease-out forwards;
    animation-delay: 0.1s;
    opacity: 0;
}

.animate-fade-slide-in-2 {
    animation: fadeSlideIn 0.8s ease-out forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.animate-fade-slide-in-3 {
    animation: fadeSlideIn 0.8s ease-out forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

.animate-fade-slide-in-4 {
    animation: fadeSlideIn 0.8s ease-out forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

.new-hero-section {
    width: 100%;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    display: flex;
    flex-direction: column;
}

.new-hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: blur(48px);
    transform: scale(1.1);
    /* Prevent stronger blur bleed on edges */
}

.new-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.3);
    z-index: -1;
}

.new-hero-content-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 180px 24px 64px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.new-hero-text-block {
    max-width: 768px;
    margin: 0 auto;
    text-align: center;
}

.new-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 10px;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    margin-bottom: 24px;
}

.badge-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: #111;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 9999px;
    padding: 2px 8px;
    font-family: var(--font-main);
}

.badge-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    font-family: var(--font-main);
    padding-right: 8px;
}

.new-hero-title {
    font-size: 4rem;
    line-height: 1.1;
    color: white;
    letter-spacing: -0.025em;
    font-family: "Saira Extra Condensed", sans-serif;
    text-transform: uppercase;
    font-weight: 300;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .new-hero-title {
        font-size: 4.5rem;
    }
}

@media (min-width: 1024px) {
    .new-hero-title {
        font-size: 5rem;
    }
}

.new-hero-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 672px;
    margin: 24px auto 0 auto;
}

@media (min-width: 640px) {
    .new-hero-description {
        font-size: 1.125rem;
    }
}

.new-hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 40px;
    align-items: center;
    justify-content: center;
}

@media (min-width: 640px) {
    .new-hero-buttons {
        flex-direction: row;
        gap: 16px;
    }
}

.new-hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 12px 20px;
    border-radius: 9999px;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.15);
    transition: background-color 0.2s;
    font-family: var(--font-main);
}

.new-hero-btn-primary:hover {
    background: rgba(255, 255, 255, 0.15);
}

.new-hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 12px 20px;
    border-radius: 9999px;
    transition: color 0.2s;
    font-family: var(--font-main);
}

.new-hero-btn-secondary:hover {
    color: white;
}

.new-hero-partners {
    margin: 80px auto 0 auto;
    max-width: 1024px;
    width: 100%;
}

.new-hero-partners-title {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-bottom: 24px;
}

/* -------------------------------------------------------------------------- */
/*                        STATS GRID (Glowing Cards)                          */
/* -------------------------------------------------------------------------- */
.glow-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    padding: 0;
}

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

@media (min-width: 1024px) {
    .glow-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.glow-item {
    min-height: 18rem;
    list-style: none;
}

.glow-card-container {
    position: relative;
    height: 100%;
    border-radius: 1.5rem;
    border: 0.75px solid var(--border-color);
    padding: 0.5rem;
    transition: transform 0.3s;
}

.glow-card-container:hover {
    transform: translateY(-5px);
}

.glowing-effect-wrapper {
    pointer-events: none;
    position: absolute;
    inset: 0;
    border-radius: inherit;
    /* Opacity managed via active variable from JS or hover fallback */
}

.glowing-effect-blur {
    filter: blur(20px);
}

.glow-effect-glow {
    border-radius: inherit;
    position: absolute;
    inset: -2px;
    /* Border thickness */
    background: repeating-conic-gradient(from 236.84deg at 50% 50%,
            #00f2fe 0%,
            /* Cyan */
            #007EE5 calc(25% / 2),
            /* Sweif Blue */
            #9b51e0 calc(50% / 2),
            /* Purple */
            #ff2a85 calc(75% / 2),
            /* Magenta */
            #00f2fe calc(100% / 2)
            /* Cyan */
        );
    opacity: var(--active, 0);
    transition: opacity 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);

    padding: 2px;
    /* Matches inset for proper border rendering */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        conic-gradient(from calc((var(--start, 0) - 40) * 1deg), transparent 0deg, #fff, transparent calc(40 * 2deg)) border-box;
    mask:
        linear-gradient(#000 0 0) content-box,
        conic-gradient(from calc((var(--start, 0) - 40) * 1deg), transparent 0deg, #fff, transparent calc(40 * 2deg)) border-box;
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.glow-card-content {
    position: relative;
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.5rem;
    overflow: hidden;
    border-radius: 1rem;
    border: 0.75px solid var(--border-color);
    background: var(--bg-white);
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    /* Soft shadow */
    z-index: 2;
    text-align: left;
    /* Align to left to match the react component */
}

.glow-icon-wrapper {
    width: fit-content;
    border-radius: 0.5rem;
    border: 0.75px solid var(--border-color);
    background: #f4f4f5;
    /* Muted bg */
    padding: 0.5rem;
    color: #111;
    /* Changed from blue to black */
}

.glow-text-group {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.harness_text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.glow-text-group .heading-style-h2 {
    font-size: 3.5rem;
    color: #111;
    /* Changed from blue to black for the cards */
    font-weight: 300;
    font-family: "Saira Extra Condensed", sans-serif;
    text-transform: uppercase;
    line-height: 1;
}

.harness_description {
    font-size: 1rem;
    line-height: 1.4;
    color: var(--text-secondary);
}

/* -------------------------------------------------------------------------- */
/*                            SOLUTIONS GRID (Service)                        */
/* -------------------------------------------------------------------------- */
.solution_block {
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    border: 1px dashed var(--border-color);
    margin-top: 2rem;
}

@media (min-width: 640px) {
    .feature-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Solutions Split Layout */
.solutions-split-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
    align-items: stretch;
}

@media (min-width: 991px) {
    .solutions-split-layout {
        grid-template-columns: 1fr 1fr;
        /* Split features and image */
        gap: 3rem;
    }
}

.solutions-image-side {
    height: 100%;
    min-height: 400px;
}

.solutions-image-container {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

.feature-card-item {
    position: relative;
    overflow: hidden;
    padding: 2rem;
    border: 1px dashed var(--border-color);
    margin: -0.5px;
    /* Overlaps borders for perfect grid lines */
    background: transparent;
    transition: background 0.3s;
}

.feature-card-item:hover {
    background: rgba(0, 0, 0, 0.01);
}

.feature-card-pattern-wrapper {
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -50%;
    margin-top: -0.5rem;
    width: 100%;
    height: 100%;
    -webkit-mask-image: linear-gradient(white, transparent);
    mask-image: linear-gradient(white, transparent);
}

.feature-card-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(0, 0, 0, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    -webkit-mask-image: radial-gradient(farthest-side at top, white, transparent);
    mask-image: radial-gradient(farthest-side at top, white, transparent);
}

.feature-icon {
    width: 24px;
    height: 24px;
    color: var(--text-secondary);
    opacity: 0.75;
}

.feature-card-item h3 {
    font-size: 1rem;
    font-weight: 500;
    margin-top: 2.5rem;
    color: #111;
    font-family: var(--font-main);
    /* Ensure standard font */
}

.feature-card-item p {
    font-size: 0.875rem;
    font-weight: 300;
    color: var(--text-secondary);
    margin-top: 0.5rem;
    position: relative;
    z-index: 20;
    line-height: 1.5;
}

/* Scroll Animation Utilities (Framer Motion feel) */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

/* -------------------------------------------------------------------------- */
/*                                SECTORS GRID                                */
/* -------------------------------------------------------------------------- */
/* Fix for Scroll Anchor Offsets (Navbar overlap) */
section[id],
.solution_item[id] {
    scroll-margin-top: 120px;
}

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

@media (max-width: 991px) {
    .sector_grid {
        grid-template-columns: 1fr 1fr;
        /* 2x2 on tablet */
    }
}

@media (max-width: 479px) {
    .sector_grid {
        grid-template-columns: 1fr;
        /* Stack on mobile */
    }
}

.sector_item {
    border-top: 1px solid #e5e5e5;
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.sector_item:hover {
    border-color: var(--falconx-blue);
}

.sector_item h3 {
    font-size: 1.25rem;
    font-weight: 500;
    color: #111;
    margin: 0;
}

.sector_item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    text-wrap: pretty;
}

.solution_content-wrap {
    z-index: 2;
}

/* -------------------------------------------------------------------------- */
/*                                TRUST GRID                                  */
/* -------------------------------------------------------------------------- */
.trust_grid {
    display: flex;
    flex-direction: column;
    margin-top: 3rem;
    position: relative;
}

@media (max-width: 768px) {
    .trust_grid {
        margin-top: 2rem;
    }
}

.trust_item {
    background: transparent;
    border: none;
    padding: 2rem 0;
    border-radius: 0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 0;
    /* Let elastic line handle spacing or margin */
    text-align: left;
}

.trust-title {
    font-size: 3.5rem;
    /* Big title like "FANCY COMPONENTS" */
    font-weight: 300;
    font-family: "Saira Extra Condensed", sans-serif;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: #111;
    margin-bottom: -10px;
    /* Pull the elastic line closer */
    position: relative;
    z-index: 2;
    pointer-events: none;
    /* Let pointer events pass to elastic line */
}

.trust_item elastic-line {
    margin-bottom: 1.5rem;
}

.trust-content-row {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 3rem;
    width: 100%;
}

.trust-icon-box {
    width: 80px;
    flex-shrink: 0;
    display: flex;
}

.trust-text-box {
    flex-grow: 1;
}

.trust-text-box p {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.6;
    color: var(--text-secondary);
}

.trust_item:hover {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
}

@media (max-width: 768px) {
    .trust-title {
        font-size: 2.25rem;
    }

    .trust-content-row {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* -------------------------------------------------------------------------- */
/*                                PROCESS STEP                                */
/* -------------------------------------------------------------------------- */
.process_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
}

@media (max-width: 768px) {
    .process_grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.process_step {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Aligned left for editorial look */
    gap: 1rem;
    position: relative;
    padding-top: 1.5rem;
    transition: all 0.3s ease;
    overflow: hidden;
    /* Contains the glowing tracer */
}

/* The solid base line */
.process_step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #e5e5e5;
    border-radius: 2px;
}

/* The gradient tracing animation */
.process_step::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #2EB9DF 50%, #9E00FF 100%);
    opacity: 0.8;
    transform: translateX(-100%);
    animation: gradientTracing 3s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    border-radius: 2px;
}

/* Slightly offset animations for visual variety */
.process_step:nth-child(2)::after {
    animation-delay: 1s;
}

.process_step:nth-child(3)::after {
    animation-delay: 2s;
}

@keyframes gradientTracing {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        transform: translateX(300%);
        opacity: 0;
    }
}

.process_step:hover::after {
    background: linear-gradient(90deg, transparent 0%, var(--falconx-blue) 50%, var(--falconx-blue) 100%);
    width: 100%;
    transform: translateX(0);
    animation: none;
    opacity: 1;
    transition: all 0.3s ease;
}

.process_number {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--falconx-blue);
    background: rgba(0, 126, 229, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.process_step h3 {
    font-size: 1.25rem;
    color: #111;
    margin: 0;
}

.process_step p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.text-size-tiny {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.solution_divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    margin: 8px 0;
}

.solution_icon {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    width: 24px;
    height: 24px;
    color: var(--falconx-blue);
    opacity: 0.5;
    transition: all 0.3s;
}

.solution_item:hover .solution_icon {
    opacity: 1;
    transform: rotate(45deg);
}

/* -------------------------------------------------------------------------- */
/*                               MARQUEE                                      */
/* -------------------------------------------------------------------------- */
.logo-marquee {
    overflow: hidden;
    padding: 2rem 0;
    background: white;
    white-space: nowrap;
    position: relative;
}

.logo-marquee_container {
    display: inline-flex;
    animation: marquee 40s linear infinite;
}

.logo-marquee_item {
    margin: 0 3rem;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.logo-marquee_item:hover {
    opacity: 1;
}

.logo-marquee_item img {
    height: 32px;
    width: auto;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* -------------------------------------------------------------------------- */
/*                                RESPONSIVE                                  */
/* -------------------------------------------------------------------------- */
@media (max-width: 991px) {
    .navbar_menu {
        display: none;
    }

    /* Native structure hides desktop menu */
    .menu-icon {
        display: flex;
        z-index: 2001;
        position: relative;
    }

    /* Navbar Pill spacing for hamburger in mobile */
    .navbar_right-content {
        padding: 0.5rem !important;
        /* Make pill perfectly circular around the hamburger */
    }

    /* Hide the navbar button on mobile since it's in the menu */
    .navbar_button-wrapper .button {
        display: none;
    }

    .home-header_content h1 {
        font-size: 2.5rem;
    }

    .solution_top-grid {
        grid-template-columns: 1fr;
    }
}

/* -------------------------------------------------------------------------- */
/*                           MOBILE OPTIMIZATIONS                             */
/* -------------------------------------------------------------------------- */

/* 1. PREMIUM MOBILE MENU */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 15, 0.95);
    /* Deep dark tech glass */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateY(-20px);
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 90%;
    max-width: 400px;
    text-align: center;
}

.mobile-nav-link {
    font-size: 2rem;
    /* Larger */
    font-weight: 300;
    /* Matching new typography */
    font-family: "Saira Extra Condensed", sans-serif;
    text-transform: uppercase;
    /* Elegant font */
    color: white;
    /* White text for dark overlay */
    text-decoration: none;
    transition: color 0.2s, transform 0.2s;
    letter-spacing: 0.02em;
    border-bottom: none;
    padding: 0;
}

.mobile-nav-link:hover {
    color: #00f2fe;
    /* Cyber cyan hover */
    transform: scale(1.05);
    /* Slight grow */
}

/* Premium Mobile Menu Button */
.mobile-menu-overlay .button.cta {
    background-color: white;
    color: #111;
    border-radius: 9999px;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border: none;
}

.mobile-menu-overlay .button.cta:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: scale(1.02);
}

/* 2. HIDE HERO IMAGE ON MOBILE */
@media (max-width: 767px) {
    .home-header_visual {
        display: none !important;
    }

    .home-header_content {
        text-align: center;
        margin: 0 auto;
    }

    .home-header_content h1 {
        font-size: 2.75rem;
    }

    .button-group {
        justify-content: center;
    }
}

/* 3. MOBILE CARDS CONFIGURATION */
@media (max-width: 767px) {

    /* "Excelencia operativa" (Stats): Force 2 cols */
    .harness_component {
        grid-template-columns: 1fr 1fr !important;
        gap: 1rem !important;
    }

    /* "Impulsamos industrias" (Sectors): Force 2 cols */
    .sector_grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 1rem !important;
    }

    /* "Soluciones" (Services): Force 1 col */
    .solution_grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    /* Adjust Card Padding for tightness */
    .sector_item,
    .solution_item,
    .harness_item {
        padding: 1.5rem 1rem !important;
        /* Slightly more vertical padding */
    }

    .solution_item h3,
    .sector_item h3 {
        font-size: 1.1rem;
    }

    /* Make the blue stats BIG */
    .harness_item h3 {
        font-size: 2.5rem !important;
        margin: 0.5rem 0;
    }

    .solution_item p,
    .sector_item p,
    .harness_text {
        font-size: 0.85rem;
    }
}

/* 4. FOOTER RESPONSIVE */
@media (max-width: 767px) {
    .footer_grid {
        grid-template-columns: 1fr !important;
        /* Stack vertically */
        gap: 3rem !important;
        text-align: center;
    }

    .footer_col {
        align-items: center;
        /* Center flex items if any are column */
    }

    .footer_col img {
        margin-left: auto;
        margin-right: auto;
    }
}

/* -------------------------------------------------------------------------- */
/*                           LEAD CAPTURE FORM                                */
/* -------------------------------------------------------------------------- */

.form-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 3000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Full Screen Form Card */
.form-card {
    background: white;
    width: 600px;
    max-width: 100%;
    max-height: 90vh;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    transform: translateY(20px);
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.form-card.full-screen {
    width: 100vw;
    height: 100vh;
    max-width: none;
    max-height: none;
    border-radius: 0;
    padding: 4rem 2rem;
    justify-content: flex-start;
    /* Better for scrolling on mobile */
    align-items: center;
}

.form-overlay.active .form-card {
    transform: translateY(0);
}

/* Constraint Content Width */
.form-progress,
#multiStepForm {
    width: 100%;
    max-width: 500px;
}

/* Close Button Position */
.form-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    cursor: pointer;
    color: #999;
    transition: color 0.2s;
    padding: 1rem;
    z-index: 10;
}

.form-close:hover {
    color: #333;
    transform: scale(1.1);
}

/* Mobile Tweaks */
@media (max-width: 767px) {
    .form-card {
        padding: 4rem 1.5rem;
        /* More top padding for mobile status bar/close button */
        justify-content: flex-start;
        /* Align top on mobile for keyboard space */
    }

    .form-close {
        top: 1rem;
        right: 1rem;
    }

    #multiStepForm {
        margin-top: 2rem;
        /* Push down a bit */
    }
}

.form-progress-wrapper {
    margin-bottom: 3rem;
    position: relative;
}

.form-dots {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    margin-bottom: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #eee;
    transition: all 0.3s ease;
    cursor: pointer;
}

.dot.active {
    background: var(--falconx-blue);
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(0, 126, 229, 0.4);
}

.dot.completed {
    background: var(--falconx-blue);
}

.form-progress-bg {
    width: 100%;
    height: 2px;
    background: #eee;
    position: absolute;
    top: 5px;
    left: 0;
    z-index: 1;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: var(--falconx-blue);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-step {
    display: none;
    animation: fadeIn 0.4s ease;
}

.form-step.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

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

.form-header {
    margin-bottom: 2rem;
    text-align: center;
}

.form-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #111;
}

.form-header p {
    color: #666;
    font-size: 0.95rem;
}

.input-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.input-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #333;
}

.input-group input,
.input-group textarea,
.form-select {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 1px solid #eee;
    border-radius: 12px;
    font-size: 1rem;
    background-color: #fcfcfc;
    transition: all 0.2s ease;
    font-family: inherit;
    outline: none;
}

.input-group input:focus,
.input-group textarea:focus,
.form-select:focus {
    border-color: var(--falconx-blue);
    background-color: white;
    box-shadow: 0 0 0 4px rgba(0, 126, 229, 0.05);
}

/* Radio Card Group */
.radio-card-group {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.radio-card-group.horizontal {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.radio-card {
    position: relative;
    cursor: pointer;
    display: block;
}

.radio-card input {
    position: absolute;
    opacity: 0;
}

.radio-card-content {
    display: block;
    padding: 1rem 1.2rem;
    border: 1px solid #eee;
    border-radius: 12px;
    background: #fcfcfc;
    font-size: 0.95rem;
    color: #444;
    transition: all 0.2s ease;
    text-align: center;
}

.radio-card input:checked+.radio-card-content {
    border-color: var(--falconx-blue);
    background: rgba(0, 126, 229, 0.03);
    color: var(--falconx-blue);
    font-weight: 500;
}

/* Checkbox Grid */
.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.8rem 1rem;
    border: 1px solid #eee;
    border-radius: 12px;
    background: #fcfcfc;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.checkbox-item input {
    width: 18px;
    height: 18px;
    accent-color: var(--falconx-blue);
}

.checkbox-item:hover {
    border-color: var(--falconx-blue);
    background: white;
}

.success-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(0, 126, 229, 0.1);
    color: var(--falconx-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.input-group input:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--falconx-blue);
    box-shadow: 0 0 0 3px rgba(0, 126, 229, 0.1);
}

.form-actions {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
}

.form-actions button {
    flex: 1;
}

/* Privacy Checkbox */
.privacy-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-top: 5rem;
    text-align: left;
}

.privacy-wrapper input[type="checkbox"] {
    margin-top: 0.15rem;
    width: 16px;
    height: 16px;
    min-width: 16px;
    cursor: pointer;
    accent-color: var(--falconx-blue);
}

.privacy-text {
    font-size: 0.75rem;
    color: #666;
    line-height: 1.4;
    cursor: pointer;
}

.privacy-text a {
    color: var(--falconx-blue);
    text-decoration: underline;
    transition: color 0.2s;
}

.privacy-text a:hover {
    color: var(--falconx-dark);
}

/* Success State */
.success-content svg {
    display: block;
    margin: 0 auto;
}

/* -------------------------------------------------------------------------- */
/*                        ECOSISTEMA OPERATIVO (MARQUEE)                      */
/* -------------------------------------------------------------------------- */
.s-marquee-dark {
    background-color: #0d0d0d;
    /* Casi negro */
    color: white;
    overflow: hidden;
    position: relative;
    padding: 3rem 0;
    /* Reduced height */
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    /* Gradient Fade Edges - Ultra Tightened */
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.marquee-track {
    display: flex;
    gap: 4rem;
    /* Espacio entre logos */
    width: max-content;
    animation: scroll-marquee 30s linear infinite;
    align-items: center;
    /* Center items vertically */
}

.marquee-logo {
    height: auto;
    max-height: 32px;
    /* Base height for most logos */
    width: auto;
    max-width: 130px;
    /* Limit very wide logos */
    object-fit: contain;
    /* Ensure aspect ratio */
    filter: brightness(0) invert(1);
    /* Volver blancos si no lo son */
    opacity: 0.7;
    transition: opacity 0.3s, transform 0.3s;
}

/* Adjust individual logos that have different visual weight/density */
.marquee-logo[src*="Asset 3.png"] {
    max-height: 24px;
}

/* SAGRILAF - very wide */
.marquee-logo[src*="Asset 4.png"] {
    max-height: 38px;
}

/* TradingView - very thin lines, needs more height */
.marquee-logo[src*="Asset 6.png"] {
    max-height: 22px;
}

/* Bloomberg/Visa - blocky and dense, needs less height */
.marquee-logo[src*="Asset 7.png"] {
    max-height: 26px;
}

/* Visa/Bloomberg - dense */
.marquee-logo[src*="Asset 8.png"] {
    max-height: 28px;
}

/* Compliance Group */
.marquee-logo[src*="Asset 10.png"] {
    max-height: 24px;
}

/* Wide partner logo */
.marquee-logo[src*="Asset 5.png"] {
    max-height: 30px;
}

/* Global Network */




.marquee-logo:hover {
    opacity: 1;
}

@keyframes scroll-marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
        /* Asumiendo duplicación para loop infinito */
    }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .marquee-track {
        gap: 2rem;
        animation-duration: 20s;
    }

    .marquee-logo {
        max-height: 24px;
        max-width: 100px;
    }

    .marquee-logo[src*="Asset 4.png"] {
        max-height: 28px;
    }
}

/* -------------------------------------------------------------------------- */
/*                        STACKING CARDS                                      */
/* -------------------------------------------------------------------------- */

.stacking-cards-container {
    position: relative;
    padding-bottom: 5vh;
    margin-top: 3rem;
}

.stacking-card {
    position: sticky;
    top: calc(15vh + (var(--card-index) * 20px));
    height: 480px;
    width: 100%;
    max-width: 900px;
    margin: 0 auto 20vh auto;
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.05), 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform-origin: top center;
}

/* Optional smooth scale via CSS Scroll Driven Animations if supported */
@supports (animation-timeline: view()) {
    .stacking-card {
        animation: scaleDownCard linear both;
        animation-timeline: view();
        animation-range: exit-crossing 0% exit 100%;
    }
}

@keyframes scaleDownCard {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(0.92);
    }
}

.stacking-title {
    font-size: 3rem;
    text-align: center;
    font-weight: 300;
    font-family: "Saira Extra Condensed", sans-serif;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
    color: #111;
}

.stacking-body {
    display: flex;
    gap: 3rem;
    height: 100%;
}

.stacking-text-block {
    width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 1rem;
}

.stacking-text-block p {
    color: #444;
    line-height: 1.6;
}

.stacking-image-block {
    width: 55%;
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stacking-image-block img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.stacking-card:hover .stacking-image-block img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .stacking-card {
        height: auto;
        min-height: 500px;
        top: calc(10vh + (var(--card-index) * 10px));
        margin-bottom: 10vh;
        padding: 1.5rem;
    }

    .stacking-body {
        flex-direction: column;
        gap: 1.5rem;
    }

    .stacking-text-block {
        width: 100%;
        padding-top: 0;
    }

    .stacking-image-block {
        width: 100%;
        height: 250px;
    }

    .stacking-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
}

/* -------------------------------------------------------------------------- */
/*                        INTERACTIVE HOVER BUTTON                            */
/* -------------------------------------------------------------------------- */

.interactive-hover-btn {
    position: relative;
    width: auto;
    min-width: 16rem;
    cursor: pointer;
    overflow: hidden;
    border-radius: 9999px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: white;
    padding: 0.8rem 2rem 0.8rem 2.5rem;
    text-align: center;
    font-weight: 600;
    color: #111;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1rem;
    font-family: inherit;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.interactive-hover-btn .btn-text-default {
    display: inline-block;
    transform: translateX(0.25rem);
    transition: all 0.3s ease;
}

.interactive-hover-btn:hover .btn-text-default {
    transform: translateX(3rem);
    opacity: 0;
}

.interactive-hover-btn .btn-text-hover {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    display: flex;
    height: 100%;
    width: 100%;
    transform: translateX(3rem);
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: white;
    opacity: 0;
    transition: all 0.3s ease;
}

.interactive-hover-btn:hover .btn-text-hover {
    transform: translateX(-0.1rem);
    opacity: 1;
}

.interactive-hover-btn .btn-hover-bg {
    position: absolute;
    left: 1rem;
    top: calc(50% - 0.25rem);
    height: 0.5rem;
    width: 0.5rem;
    transform: scale(1);
    border-radius: 9999px;
    background-color: #111;
    /* Expands to black */
    transition: all 0.3s ease;
    z-index: 1;
    /* Below text */
}

.interactive-hover-btn:hover .btn-hover-bg {
    left: 0%;
    top: 0%;
    height: 100%;
    width: 100%;
    transform: scale(2);
    border-radius: 0;
}

/* Dark Mode Variation (For the footer section) */
.interactive-hover-btn.dark-cta {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.interactive-hover-btn.dark-cta .btn-hover-bg {
    background-color: white;
}

.interactive-hover-btn.dark-cta .btn-text-hover {
    color: #000;
}

/* -------------------------------------------------------------------------- */
/*                          STACKED CIRCULAR FOOTER                           */
/* -------------------------------------------------------------------------- */
.footer-nav-link {
    color: #999;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s ease;
}

.footer-nav-link:hover {
    color: var(--falconx-blue);
}

.circular-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #333;
    color: #999;
    background-color: transparent;
    transition: all 0.2s ease;
}

.circular-icon-btn:hover {
    color: white;
    background-color: var(--falconx-blue);
    border-color: var(--falconx-blue);
}

.circular-input {
    flex-grow: 1;
    height: 44px;
    border-radius: 9999px;
    border: 1px solid #333;
    background-color: transparent;
    padding: 0 1.5rem;
    color: white;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s ease;
}

.circular-input:focus {
    border-color: var(--falconx-blue);
}

.circular-input::placeholder {
    color: #666;
}

.circular-btn {
    height: 44px;
    border-radius: 9999px;
    background-color: white;
    color: black;
    padding: 0 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.circular-btn:hover {
    background-color: #ddd;
}