/* ============================================
   AZTEAM ERP - Homepage Styles
   Warm Workshop Design System
   ============================================ */

/* ====== CSS Variables ====== */
:root {
    /* Colors - Exact match to ERP System (01-variables.css) */
    --homepage-bg: #faf8f3;           /* --neutral-50 / --bg-primary */
    --homepage-bg-alt: #f5f2ea;       /* --bg-secondary */
    --homepage-surface: #ffffff;       /* --white */
    --homepage-primary: #6b5a4a;      /* --primary */
    --homepage-primary-hover: #5a4a3a;/* --primary-hover (FIXED) */
    --homepage-text: #3a3632;         /* --neutral-700 */
    --homepage-text-muted: #5a5650;   /* --neutral-600 (FIXED) */
    --homepage-accent: #8a847a;       /* --neutral-500 (FIXED) */
    --homepage-success: #4a6b5a;      /* --success (FIXED) */
    --homepage-danger: #8b4a47;       /* --danger (FIXED) */
    --homepage-warning: #9a7b4f;      /* --warning (FIXED) */
    --homepage-border: #c9c3b5;       /* --neutral-300 (FIXED) */
    --homepage-border-light: #ddd8cc; /* --neutral-200 */
    --homepage-shadow: rgba(45, 42, 38, 0.08); /* Uses --neutral-800 base (FIXED) */

    /* Spacing */
    --section-padding: 80px 0;
    --section-padding-mobile: 60px 0;

    /* Transitions - Match ERP system */
    --transition-fast: 150ms;         /* --transition-fast */
    --transition-base: 250ms;         /* --transition-base */
    --transition-slow: 350ms;         /* --transition-slow */
}

/* ====== Global Styles ====== */
.homepage {
    /* Match ERP System Typography - Plus Jakarta Sans for body */
    font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--homepage-bg);
    color: var(--homepage-text);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Skip Link (Accessibility) */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--homepage-primary);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    z-index: 1000;
    border-radius: 0 0 4px 0;
}

.skip-link:focus {
    top: 0;
}

/* ====== Navigation ====== */
.homepage-nav {
    background-color: transparent;
    transition: var(--transition-base);
    border-bottom: 1px solid transparent;
    padding: 1.5rem 0;
}

.homepage-nav.scrolled {
    background-color: rgba(250, 248, 243, 0.95);
    backdrop-filter: blur(10px);
    border-bottom-color: var(--homepage-border);
    padding: 0.75rem 0;
    box-shadow: 0 2px 8px var(--homepage-shadow);
}

.homepage-logo-img {
    height: 50px;
    width: auto;
    display: block;
    transition: var(--transition-base);
}

/* Slightly larger logo when scrolled (since nav is more compact) */
.homepage-nav.scrolled .homepage-logo-img {
    height: 45px;
}

.homepage-brand {
    font-weight: bold;
    font-size: 1.25rem;
    color: var(--homepage-surface); /* Cream/white for transparent nav */
    letter-spacing: -0.5px;
    font-family: "Merriweather", serif;
    transition: var(--transition-base);
}

/* When scrolled, brand text becomes dark brown */
.homepage-nav.scrolled .homepage-brand {
    color: var(--homepage-text);
}

.nav-link-custom {
    color: rgba(255, 255, 255, 0.95); /* Cream/white for transparent nav */
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-base);
}

/* When scrolled, nav links become dark brown */
.homepage-nav.scrolled .nav-link-custom {
    color: var(--homepage-text-muted);
}

.nav-link-custom:hover {
    color: var(--homepage-accent); /* Lighter accent for better visibility */
}

/* When scrolled, hover becomes darker */
.homepage-nav.scrolled .nav-link-custom:hover {
    color: var(--homepage-primary);
}

/* Mobile Menu */
.mobile-menu-toggle {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--homepage-surface); /* Cream/white for transparent nav */
    cursor: pointer;
    padding: 0.5rem;
    transition: var(--transition-base);
}

/* When scrolled, toggle becomes dark brown */
.homepage-nav.scrolled .mobile-menu-toggle {
    color: var(--homepage-text);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--homepage-border);
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu-link {
    color: var(--homepage-text); /* Always dark in mobile menu */
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--homepage-border);
    transition: var(--transition-base);
}

.mobile-menu-link:hover {
    color: var(--homepage-primary);
    padding-left: 0.5rem;
}

/* ====== Buttons ====== */
.btn-primary-custom {
    background-color: var(--homepage-primary);
    border-color: var(--homepage-primary);
    color: white;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: var(--transition-base);
}

.btn-primary-custom:hover {
    background-color: var(--homepage-primary-hover);
    border-color: var(--homepage-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--homepage-shadow);
}

.btn-outline-custom {
    background-color: transparent;
    border: 2px solid var(--homepage-primary);
    color: var(--homepage-primary);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: var(--transition-base);
}

.btn-outline-custom:hover {
    background-color: var(--homepage-primary);
    color: white;
    transform: translateY(-2px);
}

/* Hero/CTA Section Button Overrides - Light buttons on dark backgrounds */
.hero-section .btn-primary-custom,
.cta-section .btn-primary-custom {
    background-color: var(--homepage-surface); /* White/cream button */
    border-color: var(--homepage-surface);
    color: var(--homepage-primary); /* Dark brown text */
}

.hero-section .btn-primary-custom:hover,
.cta-section .btn-primary-custom:hover {
    background-color: var(--homepage-bg); /* Slightly darker cream on hover */
    border-color: var(--homepage-bg);
    color: var(--homepage-primary-hover);
}

.hero-section .btn-outline-custom,
.cta-section .btn-outline-custom {
    background-color: transparent;
    border: 2px solid var(--homepage-surface); /* White/cream border */
    color: var(--homepage-surface); /* White/cream text */
}

.hero-section .btn-outline-custom:hover,
.cta-section .btn-outline-custom:hover {
    background-color: var(--homepage-surface); /* Fill with cream on hover */
    border-color: var(--homepage-surface);
    color: var(--homepage-primary); /* Dark brown text on hover */
}

/* ====== Hero Section ====== */
.hero-section {
    padding: 140px 0 100px;
    background: linear-gradient(135deg, var(--homepage-primary) 0%, var(--homepage-accent) 100%);
    position: relative;
    overflow: hidden;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    color: white;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-family: "Merriweather", serif;
}

.hero-highlight {
    color: var(--homepage-warning);
    font-style: italic;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* ====== Stats Section ====== */
.stats-section {
    padding: var(--section-padding);
    background-color: var(--homepage-surface);
}

.stat-card {
    background: var(--homepage-surface);
    border: 1px solid var(--homepage-border);
    border-radius: 12px;
    padding: 2rem;
    transition: var(--transition-base);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px var(--homepage-shadow);
    border-color: var(--homepage-primary);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--homepage-primary);
    margin-bottom: 1rem;
    opacity: 0.8;
}

.stat-value {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--homepage-primary);
    margin-bottom: 0.5rem;
    font-family: "Merriweather", serif;
}

.stat-label {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--homepage-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

.stat-description {
    color: var(--homepage-text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ====== Transformation Section ====== */
.transformation-section {
    padding: var(--section-padding);
    background-color: var(--homepage-bg-alt);
}

.section-badge {
    display: inline-block;
    background-color: var(--homepage-border);
    color: var(--homepage-text);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}

.section-badge-light {
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 600;
    color: var(--homepage-text);
    line-height: 1.2;
    margin-bottom: 1rem;
    font-family: "Merriweather", serif;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--homepage-text-muted);
    line-height: 1.7;
}

.transformation-card {
    background: var(--homepage-surface);
    border: 1px solid var(--homepage-border);
    border-radius: 16px;
    padding: 2.5rem;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.transformation-before {
    background-color: rgba(188, 71, 73, 0.05);
    border-color: rgba(188, 71, 73, 0.2);
}

.transformation-after {
    background-color: rgba(74, 93, 79, 0.05);
    border-color: rgba(74, 93, 79, 0.2);
    border-left: 4px solid var(--homepage-success);
}

.transformation-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.transformation-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.transformation-before .transformation-indicator {
    background-color: var(--homepage-danger);
}

.transformation-after .transformation-indicator {
    background-color: var(--homepage-success);
}

.transformation-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
}

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

.transformation-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.875rem 0;
}

.transformation-list li i {
    font-size: 1.25rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

/* ====== Feature Pillar Sections ====== */
.feature-pillar-section {
    padding: var(--section-padding);
}

.feature-pillar-alt {
    background-color: var(--homepage-bg-alt);
}

.feature-pillar-dark {
    background: linear-gradient(135deg, #2d2a26 0%, var(--homepage-primary) 100%);
    color: white;
}

.feature-pillar-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 600;
    color: var(--homepage-text);
    margin-bottom: 1.5rem;
    font-family: "Merriweather", serif;
}

.feature-pillar-dark .feature-pillar-title {
    color: white;
}

.feature-pillar-description {
    font-size: 1.125rem;
    color: var(--homepage-text-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.feature-pillar-dark .feature-pillar-description {
    color: rgba(255, 255, 255, 0.85);
}

.feature-highlight-card {
    background: var(--homepage-surface);
    border: 1px solid var(--homepage-border);
    border-radius: 12px;
    padding: 1.5rem;
    transition: var(--transition-base);
}

.feature-highlight-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px var(--homepage-shadow);
}

.feature-highlight-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-highlight-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--homepage-text);
}

.feature-highlight-card p {
    font-size: 0.9rem;
    color: var(--homepage-text-muted);
    line-height: 1.6;
    margin: 0;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
}

.feature-list li i {
    font-size: 1.125rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

/* ====== Phone Mockup ====== */
.phone-mockup-container {
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 280px;
    background-color: #2d2a26;
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 24px;
    background-color: #2d2a26;
    border-radius: 0 0 20px 20px;
    z-index: 10;
}

.phone-screen {
    background-color: var(--homepage-bg);
    border-radius: 32px;
    overflow: hidden;
    height: 560px;
}

.phone-content {
    padding: 3rem 1.5rem 1.5rem;
    overflow-y: auto;
    height: 100%;
}

.phone-stage-card {
    background: white;
    border: 1px solid var(--homepage-border);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.phone-stage-icon {
    width: 60px;
    height: 60px;
    background-color: var(--homepage-bg-alt);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    color: var(--homepage-primary);
    font-size: 1.5rem;
}

.progress-step {
    height: 4px;
    flex: 1;
    background-color: var(--homepage-border);
    border-radius: 2px;
}

.progress-step.completed {
    background-color: var(--homepage-success);
}

.phone-timeline {
    position: relative;
    padding-left: 1.5rem;
    border-left: 2px solid var(--homepage-border);
}

.phone-timeline-item {
    position: relative;
    padding-bottom: 1.5rem;
}

.phone-timeline-item.active {
    opacity: 1;
}

.phone-timeline-item:not(.active) {
    opacity: 0.5;
}

.phone-timeline-dot {
    position: absolute;
    left: -1.875rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--homepage-border);
}

.phone-timeline-item.active .phone-timeline-dot {
    background-color: var(--homepage-success);
}

/* ====== Kanban Mockup ====== */
.kanban-mockup {
    background: var(--homepage-surface);
    border: 1px solid var(--homepage-border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px var(--homepage-shadow);
}

.kanban-header {
    background-color: var(--homepage-bg-alt);
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--homepage-border);
}

.kanban-window-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.kanban-body {
    padding: 1.5rem;
}

.kanban-column {
    background-color: var(--homepage-bg-alt);
    border-radius: 8px;
    padding: 1rem;
}

.kanban-column-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--homepage-text-muted);
    margin-bottom: 0.75rem;
}

.kanban-card {
    background: white;
    border: 1px solid var(--homepage-border);
    border-radius: 8px;
    padding: 0.75rem;
    margin-bottom: 0.75rem;
    position: relative;
    cursor: pointer;
    transition: var(--transition-base);
}

.kanban-card:hover {
    box-shadow: 0 4px 12px var(--homepage-shadow);
    transform: translateY(-2px);
}

.kanban-card-priority {
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    border-radius: 8px 0 0 8px;
}

.kanban-card-priority.high {
    background-color: var(--homepage-warning);
}

.kanban-card-priority.urgent {
    background-color: var(--homepage-danger);
}

.kanban-card-priority.normal {
    background-color: var(--homepage-success);
}

.kanban-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background-color: var(--homepage-danger);
    color: white;
    font-size: 0.625rem;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
}

/* ====== Tech Feature Cards ====== */
.tech-feature-card {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    transition: var(--transition-base);
}

.tech-feature-card:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.tech-feature-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--homepage-warning);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.tech-feature-card h5 {
    color: white;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.tech-feature-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* ====== Architecture Diagram ====== */
.architecture-diagram {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 2rem;
}

.architecture-layer {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    position: relative;
    transition: var(--transition-base);
}

.architecture-layer:hover {
    transform: scale(1.02);
    background-color: rgba(255, 255, 255, 0.15);
}

.layer-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.architecture-layer h5 {
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.architecture-layer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
}

.layer-orchestration {
    background: linear-gradient(135deg, var(--homepage-success) 0%, #5a7a64 100%);
}

.layer-domain {
    background: linear-gradient(135deg, var(--homepage-primary) 0%, #7d6a58 100%);
}

.layer-core {
    background: linear-gradient(135deg, var(--homepage-accent) 0%, #a38970 100%);
}

.architecture-connector {
    width: 2px;
    height: 24px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.2), rgba(255,255,255,0.05));
    margin: 0 auto;
}

/* ====== Modules Section ====== */
.modules-section {
    padding: var(--section-padding);
    background-color: var(--homepage-surface);
}

.module-card {
    background: var(--homepage-surface);
    border: 1px solid var(--homepage-border);
    border-radius: 12px;
    padding: 1.5rem;
    transition: var(--transition-base);
    height: 100%;
    text-align: center;
}

.module-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px var(--homepage-shadow);
    border-color: var(--homepage-primary);
}

.module-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--homepage-primary) 0%, var(--homepage-accent) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    margin: 0 auto 1rem;
}

.module-card h5 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--homepage-text);
    margin-bottom: 0.75rem;
}

.module-card p {
    font-size: 0.875rem;
    color: var(--homepage-text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ====== Design System Section ====== */
.design-system-section {
    padding: var(--section-padding);
    background-color: var(--homepage-bg-alt);
}

.color-swatch {
    aspect-ratio: 1;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 1.5rem;
    box-shadow: 0 4px 12px var(--homepage-shadow);
}

.color-label {
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    font-family: "Merriweather", serif;
}

.color-hex {
    font-size: 0.875rem;
    opacity: 0.8;
    text-transform: uppercase;
    font-family: monospace;
}

/* ====== CTA Section ====== */
.cta-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--homepage-primary) 0%, var(--homepage-accent) 100%);
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    font-family: "Merriweather", serif;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ====== Footer ====== */
.homepage-footer {
    padding: 2.5rem 0;
    background-color: var(--homepage-surface);
    border-top: 1px solid var(--homepage-border);
}

.footer-link {
    color: var(--homepage-text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-base);
}

.footer-link:hover {
    color: var(--homepage-primary);
}

/* ====== Responsive Styles ====== */
@media (max-width: 991px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .hero-section {
        padding: 120px 0 80px;
    }
    
    .phone-mockup {
        width: 240px;
    }
    
    .phone-screen {
        height: 480px;
    }
}

@media (max-width: 767px) {
    :root {
        --section-padding: 50px 0;
    }
    
    .hero-section {
        padding: 100px 0 60px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .stat-value {
        font-size: 2.5rem;
    }
    
    .phone-mockup-container {
        margin-top: 3rem;
    }
    
    .feature-pillar-title {
        font-size: 1.75rem;
    }
    
    .kanban-column-title {
        font-size: 0.7rem;
    }
    
    .kanban-card {
        padding: 0.5rem;
        font-size: 0.875rem;
    }
    
    .module-icon {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
    }
    
    .color-swatch {
        padding: 1rem;
    }
}

@media (max-width: 575px) {
    .stat-card {
        padding: 1.5rem;
    }
    
    .transformation-card {
        padding: 1.5rem;
    }
    
    .architecture-layer {
        padding: 1rem;
    }
    
    .module-card {
        padding: 1.25rem;
    }
}

/* ====== Utility Classes ====== */
.text-light {
    color: rgba(255, 255, 255, 0.85) !important;
}

/* ====== Smooth Animations ====== */
@media (prefers-reduced-motion: no-preference) {
    .stat-card,
    .module-card,
    .transformation-card,
    .feature-highlight-card,
    .kanban-card {
        animation: fadeInUp 0.6s ease-out;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ====== Focus Styles (Accessibility) ====== */
a:focus,
button:focus,
.nav-link-custom:focus,
.btn:focus {
    outline: 3px solid var(--homepage-primary);
    outline-offset: 2px;
}

/* ====== Print Styles ====== */
@media print {
    .homepage-nav,
    .homepage-footer,
    .mobile-menu {
        display: none;
    }
    
    .hero-section,
    .cta-section {
        background: white !important;
        color: black !important;
    }
}
