/* ===== CORE RESET & VARIABLES ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --midnight: #0A0E27;
    --midnight-light: #151B3B;
    --navy: #1E3A8A;
    --navy-light: #2563EB;
    --navy-lighter: #3B82F6;
    --amber: #F59E0B;
    --amber-light: #FBBF24;
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition: 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== TYPOGRAPHY ===== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--midnight);
    letter-spacing: -0.02em;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-200);
    transition: all var(--transition);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--midnight);
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
}

.logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-lighter) 100%);
    color: var(--white);
    border-radius: var(--radius-lg);
    font-weight: 900;
    font-size: 1.125rem;
}

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

.nav-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gray-600);
    text-decoration: none;
    transition: color var(--transition);
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--navy);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--midnight);
    transition: all var(--transition);
}

/* ===== MOBILE NAV ===== */
@media (max-width: 768px) {
    .header-content {
        height: 60px;
    }
    
    .logo {
        font-size: 1.125rem;
    }
    
    .logo-mark {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: var(--white);
        padding: 0;
        box-shadow: var(--shadow-lg);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition);
    }
    
    .nav.active {
        max-height: 400px;
        opacity: 1;
        visibility: visible;
        padding: 1rem 0;
    }
    
    .nav-link {
        width: 100%;
        padding: 1rem 1.5rem;
        border-bottom: 1px solid var(--gray-100);
    }
    
    .nav .btn {
        margin: 1rem 1.5rem;
        width: calc(100% - 3rem);
    }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-lighter) 100%);
    color: var(--white);
    border-radius: var(--radius-xl);
    padding: 0.875rem 1.75rem;
    box-shadow: 0 4px 14px 0 rgba(30, 58, 138, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px 0 rgba(30, 58, 138, 0.35);
}

.btn-secondary {
    background: var(--white);
    color: var(--navy);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 0.875rem 1.75rem;
}

.btn-secondary:hover {
    background: var(--gray-50);
    border-color: var(--navy);
}

.btn-sm {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.0625rem;
}

.btn-full {
    width: 100%;
}

@media (max-width: 768px) {
    .btn-lg {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

/* ===== HERO ===== */
.hero {
    position: relative;
    padding: calc(70px + 4rem) 0 4rem;
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, 
        var(--white) 0%, 
        var(--gray-50) 100%
    );
}

.hero-mesh {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(30, 58, 138, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(245, 158, 11, 0.05) 0%, transparent 50%);
    opacity: 0.6;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(30, 58, 138, 0.08);
    color: var(--navy);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(30, 58, 138, 0.15);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--navy);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-title {
    font-size: clamp(2rem, 8vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(135deg, var(--navy) 0%, var(--amber) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: clamp(1rem, 3vw, 1.25rem);
    color: var(--gray-600);
    margin-bottom: 2rem;
    max-width: 600px;
    line-height: 1.7;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
    max-width: 500px;
}

.stat-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 1.25rem;
    text-align: center;
    transition: all var(--transition);
}

.stat-card:hover {
    border-color: var(--navy);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.stat-value {
    font-size: clamp(1.75rem, 5vw, 2.25rem);
    font-weight: 800;
    color: var(--navy);
    font-family: 'Outfit', sans-serif;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.8125rem;
    color: var(--gray-600);
    line-height: 1.4;
}

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

@media (max-width: 768px) {
    .hero {
        padding: calc(60px + 2rem) 0 2rem;
        min-height: auto;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
        max-width: 100%;
    }
    
    .stat-card {
        padding: 1rem 0.75rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
}

/* ===== SECTIONS ===== */
section {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(30, 58, 138, 0.08);
    color: var(--navy);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(30, 58, 138, 0.15);
}

.section-title {
    font-size: clamp(1.75rem, 5vw, 3rem);
    margin-bottom: 1rem;
}

.section-description {
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    color: var(--gray-600);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    section {
        padding: 3rem 0;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
}

/* ===== SERVICES ===== */
.services {
    background: var(--gray-50);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    transition: all var(--transition);
}

.service-card:hover {
    border-color: var(--navy);
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.service-card-featured {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-lighter) 100%);
    border: none;
    color: var(--white);
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(30, 58, 138, 0.08);
    color: var(--navy);
    border-radius: var(--radius-xl);
    margin-bottom: 1.5rem;
}

.service-card-featured .service-icon {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.service-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.service-card-featured .service-title {
    color: var(--white);
}

.service-description {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 0.9375rem;
}

.service-card-featured .service-description {
    color: rgba(255, 255, 255, 0.9);
}

.service-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: opacity var(--transition);
}

.service-link:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
}

/* ===== CALCULATOR ===== */
.calculator-section {
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
}

.calculator {
    max-width: 800px;
    margin: 0 auto;
}

.calculator-inputs {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-2xl);
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-lg);
}

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

.input-label {
    display: block;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
}

.input-field {
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
    font-family: 'Inter', sans-serif;
}

.input-field:focus {
    outline: none;
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.calculator-result {
    background: var(--white);
    border: 2px solid var(--navy);
    border-radius: var(--radius-2xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-xl);
    animation: slideIn 0.4s ease-out;
}

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

.result-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.result-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--gray-200);
}

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

.result-label {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

.result-value {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
}

.result-detail {
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin-top: 0.25rem;
}

.result-item-employee .result-value {
    color: var(--gray-500);
}

.result-item-markport .result-value {
    color: var(--navy);
}

.result-arrow {
    font-size: 2rem;
    color: var(--gray-400);
}

.result-savings {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.savings-item {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.05) 0%, rgba(245, 158, 11, 0.05) 100%);
    border: 2px solid rgba(30, 58, 138, 0.15);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    text-align: center;
}

.savings-label {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

.savings-value {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
    color: var(--navy);
    font-family: 'Outfit', sans-serif;
}

.result-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.benefit-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(30, 58, 138, 0.08);
    color: var(--navy);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .calculator-inputs {
        padding: 1.5rem;
    }
    
    .calculator-result {
        padding: 1.5rem;
    }
    
    .result-comparison {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .result-arrow {
        transform: rotate(90deg);
    }
    
    .result-savings {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .benefit-badge {
        font-size: 0.75rem;
        padding: 0.5rem 0.875rem;
    }
}

/* ===== CASES ===== */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.case-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    transition: all var(--transition);
}

.case-card:hover {
    border-color: var(--navy);
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.case-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.case-industry {
    padding: 0.375rem 0.875rem;
    background: rgba(30, 58, 138, 0.08);
    color: var(--navy);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
}

.case-date {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

.case-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.case-description {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
}

.case-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--gray-200);
}

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

.case-stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--navy);
    font-family: 'Outfit', sans-serif;
    margin-bottom: 0.25rem;
}

.case-stat-label {
    font-size: 0.75rem;
    color: var(--gray-600);
}

.case-result {
    color: var(--gray-700);
    line-height: 1.7;
    font-size: 0.9375rem;
}

.case-result strong {
    color: var(--navy);
}

@media (max-width: 768px) {
    .cases-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .case-card {
        padding: 1.5rem;
    }
    
    .case-stats {
        gap: 0.75rem;
    }
}

/* ===== PRICING ===== */
.pricing {
    background: var(--gray-50);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.pricing-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-2xl);
    padding: 2.5rem;
    transition: all var(--transition);
    position: relative;
}

.pricing-card:hover {
    border-color: var(--navy);
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.pricing-card-featured {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-lighter) 100%);
    border: none;
    color: var(--white);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    right: 2rem;
    padding: 0.375rem 0.875rem;
    background: var(--amber);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 700;
}

.pricing-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.pricing-card-featured .pricing-title {
    color: var(--white);
}

.pricing-description {
    color: var(--gray-600);
    font-size: 0.9375rem;
    margin-bottom: 2rem;
}

.pricing-card-featured .pricing-description {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-price {
    margin-bottom: 1.5rem;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    color: var(--navy);
}

.pricing-card-featured .price-value {
    color: var(--white);
}

.price-unit {
    font-size: 1rem;
    color: var(--gray-600);
}

.pricing-card-featured .price-unit {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-economy {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
}

.pricing-features {
    margin-bottom: 2rem;
}

.pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--gray-700);
    font-size: 0.9375rem;
}

.pricing-card-featured .pricing-feature {
    color: var(--white);
}

.pricing-feature svg {
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.pricing-card-featured .btn-primary {
    background: var(--white);
    color: var(--navy);
}

.pricing-card-featured .btn-primary:hover {
    background: var(--gray-100);
}

.pricing-note {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(30, 58, 138, 0.05);
    border: 2px solid rgba(30, 58, 138, 0.15);
    border-radius: var(--radius-xl);
    max-width: 900px;
    margin: 0 auto;
}

.pricing-note svg {
    flex-shrink: 0;
    color: var(--navy);
}

.pricing-note p {
    color: var(--gray-700);
    line-height: 1.7;
    font-size: 0.9375rem;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
    }
    
    .pricing-note {
        padding: 1.25rem;
    }
}

/* ===== FAQ ===== */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-xl);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all var(--transition);
}

.faq-item:hover {
    border-color: var(--navy);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--midnight);
    transition: all var(--transition);
}

.faq-question:hover {
    color: var(--navy);
}

.faq-question svg {
    flex-shrink: 0;
    color: var(--navy);
    transition: transform var(--transition);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 0.9375rem;
}

@media (max-width: 768px) {
    .faq-question {
        padding: 1rem 1.25rem;
        font-size: 0.9375rem;
    }
    
    .faq-answer p {
        padding: 0 1.25rem 1.25rem;
    }
}

/* ===== CONTACT ===== */
.contact {
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info {
    position: sticky;
    top: 120px;
}

.contact-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-xl);
    text-decoration: none;
    transition: all var(--transition);
}

.contact-method:hover {
    border-color: var(--navy);
    transform: translateX(4px);
    box-shadow: var(--shadow-lg);
}

.contact-method-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(30, 58, 138, 0.08);
    color: var(--navy);
    border-radius: var(--radius-lg);
    flex-shrink: 0;
}

.contact-method-label {
    font-size: 0.8125rem;
    color: var(--gray-600);
}

.contact-method-value {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--navy);
}

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

.contact-stat {
    text-align: center;
    padding: 1.25rem;
    background: rgba(30, 58, 138, 0.05);
    border-radius: var(--radius-xl);
}

.contact-stat-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--navy);
    font-family: 'Outfit', sans-serif;
    margin-bottom: 0.25rem;
}

.contact-stat-label {
    font-size: 0.8125rem;
    color: var(--gray-600);
}

.contact-form-wrapper {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-2xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-xl);
}

.contact-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.cta-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info {
        position: static;
    }
    
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .contact-method {
        padding: 1rem;
    }
    
    .contact-method-icon {
        width: 40px;
        height: 40px;
    }
}

/* ===== FOOTER ===== */
.footer {
    background: var(--midnight);
    color: var(--white);
    padding: 3rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9375rem;
}

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

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-link {
    display: block;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
    transition: color var(--transition);
}

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

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.8125rem;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ===== FLOATING BUTTON ===== */
.floating-btn {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-lighter) 100%);
    color: var(--white);
    border-radius: var(--radius-full);
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(30, 58, 138, 0.35);
    transition: all var(--transition);
    font-weight: 600;
    font-size: 0.9375rem;
}

.floating-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(30, 58, 138, 0.45);
}

@media (max-width: 768px) {
    .floating-btn {
        bottom: 1rem;
        right: 1rem;
        padding: 0.875rem 1.25rem;
    }
    
    .floating-btn-label {
        display: none;
    }
}

/* ===== ANIMATIONS ===== */
@media (prefers-reduced-motion: no-preference) {
    [data-animate] {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    }
    
    [data-animate].animated {
        opacity: 1;
        transform: translateY(0);
    }
}
