/*
 * REFLEXIVITY CSS - MODULAR ARCHITECTURE
 * =====================================
 * 
 * This is the main CSS file that imports all modular components.
 * 
 * ARCHITECTURE:
 * - Base: Foundation styles (variables, reset, typography)
 * - Components: Reusable UI components (buttons, grids, navigation)
 * - Sections: Page-specific sections (hero, capabilities, footer)
 * - Utilities: Helper classes (responsive, animations)
 */

/* ========================================
   BASE STYLES
   ======================================== */
@import url("base/variables.css");
@import url("base/reset.css");
@import url("base/typography.css");

/* ========================================
   COMPONENTS
   ======================================== */
@import url("components/buttons.css");
@import url("components/grids.css");
@import url("components/navigation.css");

/* ========================================
   SECTIONS
   ======================================== */
@import url("sections/hero.css");
@import url("sections/capabilities.css");
@import url("sections/page-sections.css");
@import url("sections/modal-content.css");
@import url("sections/footer.css");

/* ========================================
   UTILITIES
   ======================================== */
@import url("utilities/animations.css");
@import url("utilities/responsive.css");

/* HubSpot Form Modal */
.hubspot-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.hubspot-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hubspot-modal-content {
    position: relative;
    background: var(--background-default);
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 16px 64px rgba(0, 0, 0, 0.3);
}

.hubspot-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 24px 16px 24px;
    border-bottom: 1px solid var(--border-soft);
}

.hubspot-modal-header h2 {
    margin: 0;
    color: var(--text-default);
    font-size: 24px;
    font-weight: 600;
}

.hubspot-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-soft);
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hubspot-modal-close:hover {
    color: var(--text-default);
}

.hubspot-modal-body {
    padding: 24px;
}




