/* ============================================
   ASH SYSTEMS - PROFESSIONAL CSS FRAMEWORK
   ============================================ */

/* ========== CSS VARIABLES ========== */
:root {
    /* Primary Colors */
    --primary-blue: #1E3A8A;
    --primary-dark: #0B1220;
    --primary-light: #3B82F6;
    --accent-blue: #0EA5E9;
    --accent-cyan: #06B6D4;
    /* Neutral Colors */
    --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;
    --gray-900: #111827;
    /* Semantic Colors */
    --success: #10B981;
    --warning: #F59E0B;
    --error: #EF4444;
    --info: #3B82F6;
    /* Background */
    --bg-primary: #FFFFFF;
    --bg-secondary: #F9FAFB;
    --bg-tertiary: #F3F4F6;
    /* 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);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 0.75rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Space Grotesk', var(--font-sans);
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--bg-primary);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: all var(--transition-fast);
}

    a:hover {
        color: var(--primary-light);
    }

/* ========== PRELOADER ========== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

    .preloader.hidden {
        opacity: 0;
        visibility: hidden;
    }

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

.preloader-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    animation: pulse 2s ease-in-out infinite;
}

.preloader-spinner {
    width: 50px;
    height: 50px;
    margin: 0 auto;
    border: 4px solid var(--gray-200);
    border-top-color: var(--primary-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ========== LAYOUT ========== */
.container {
    width: min(1200px, 94%);
    margin: 0 auto;
    padding: 0 1rem;
}

.section {
    padding: var(--spacing-3xl) 0;
}

/* ========== NAVIGATION ========== */
nav {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
    z-index: 1000;
    transition: all var(--transition-base);
}

    nav.scrolled {
        box-shadow: var(--shadow-md);
    }

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 2rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    color: var(--primary-dark);
    transition: all var(--transition-fast);
}

    .brand:hover {
        transform: translateY(-2px);
    }

    .brand img {
        width: 40px;
        height: 40px;
        object-fit: contain;
    }

    .brand .name {
        font-size: 1.25rem;
        font-family: var(--font-display);
        font-weight: 700;
        letter-spacing: -0.5px;
    }

.menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

    .menu a {
        font-weight: 500;
        font-size: 0.95rem;
        color: var(--gray-700);
        padding: 0.5rem 0.75rem;
        border-radius: var(--radius-md);
        transition: all var(--transition-fast);
    }

        .menu a:hover {
            color: var(--primary-blue);
            background: var(--gray-50);
        }

        .menu a.cta {
            background: var(--primary-blue);
            color: white;
            padding: 0.625rem 1.25rem;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-md);
            font-weight: 600;
        }

            .menu a.cta:hover {
                background: var(--primary-light);
                transform: translateY(-2px);
                box-shadow: var(--shadow-lg);
            }

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

    .mobile-toggle span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--gray-700);
        border-radius: 2px;
        transition: all var(--transition-fast);
    }

/* ========== HERO SECTION ========== */
.hero-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #EEF2FF 0%, #F9FAFB 100%);
    padding: 4rem 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
    filter: blur(60px);
}

    .hero-shape.shape-1 {
        width: 500px;
        height: 500px;
        background: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 100%);
        top: -200px;
        right: -100px;
        animation: float 20s ease-in-out infinite;
    }

    .hero-shape.shape-2 {
        width: 400px;
        height: 400px;
        background: linear-gradient(135deg, #06B6D4 0%, #3B82F6 100%);
        bottom: -150px;
        left: -100px;
        animation: float 15s ease-in-out infinite reverse;
    }

    .hero-shape.shape-3 {
        width: 300px;
        height: 300px;
        background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        animation: float 25s ease-in-out infinite;
    }

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }

    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

.hero {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
    min-height: calc(100vh - 200px);
}

.hero-content {
    max-width: 600px;
}

.hero-image {
    position: relative;
}

    .hero-image img {
        width: 100%;
        border-radius: var(--radius-2xl);
        box-shadow: var(--shadow-2xl);
    }

/* ========== ANIMATIONS ========== */
.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

    .animate-fade-in-up:nth-child(2) {
        animation-delay: 0.1s;
    }

    .animate-fade-in-up:nth-child(3) {
        animation-delay: 0.2s;
    }

    .animate-fade-in-up:nth-child(4) {
        animation-delay: 0.3s;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

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

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

/* ========== BADGES & TAGS ========== */
.badge {
    display: inline-block;
    background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
    color: var(--primary-blue);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    border: 1px solid #C7D2FE;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.tag {
    display: inline-block;
    background: var(--gray-100);
    color: var(--gray-700);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-md);
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    letter-spacing: -1px;
}

h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    letter-spacing: -0.5px;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

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

.large-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--gray-700);
}

.small {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.highlight {
    color: var(--primary-blue);
    position: relative;
}

/* ========== BUTTONS ========== */
.cta, .btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-lg);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
}

.cta, .btn-primary {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-light) 100%);
    color: white;
    box-shadow: var(--shadow-lg);
}

    .cta:hover, .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-xl);
        color: white;
    }

    .cta.secondary, .btn-secondary {
        background: white;
        color: var(--primary-blue);
        border: 2px solid var(--primary-blue);
    }

        .cta.secondary:hover, .btn-secondary:hover {
            background: var(--primary-blue);
            color: white;
            transform: translateY(-2px);
        }

.btn-submit {
    width: 100%;
    background: var(--primary-blue);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

    .btn-submit:hover {
        background: var(--primary-light);
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }

.btn-arrow {
    font-size: 1.25rem;
    transition: transform var(--transition-fast);
}

.btn-submit:hover .btn-arrow {
    transform: translateX(4px);
}

/* ========== CARDS ========== */
.card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

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

    .card h3 {
        color: var(--primary-blue);
        margin-bottom: 0.75rem;
    }

/* ========== GRIDS ========== */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

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

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* ========== STATS ========== */
.stats {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.stat {
    background: white;
    border: 1px solid var(--gray-200);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-xl);
    min-width: 180px;
    box-shadow: var(--shadow-sm);
}

    .stat strong {
        display: block;
        font-size: 1.75rem;
        color: var(--primary-blue);
        font-family: var(--font-display);
        margin-bottom: 0.25rem;
    }

/* ========== SERVICES ========== */
.service-card {
    position: relative;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    transition: all var(--transition-base);
    overflow: hidden;
}

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, var(--primary-blue), var(--accent-cyan));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform var(--transition-base);
    }

    .service-card:hover::before {
        transform: scaleX(1);
    }

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-2xl);
        border-color: var(--primary-blue);
    }

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.service-card h3 {
    margin-bottom: 1rem;
}

/* ========== PAGE HEADERS ========== */
.page-header {
    background: linear-gradient(135deg, #EEF2FF 0%, #F9FAFB 100%);
    padding: 4rem 0 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .page-header::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
        border-radius: 50%;
    }

    .page-header h1 {
        margin-bottom: 1rem;
    }

/* ========== SECTION HEADERS ========== */
.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-title {
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--gray-600);
}

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

.feature-item {
    display: flex;
    gap: 1rem;
}

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
    color: white;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-md);
}

.feature-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

/* ========== TESTIMONIALS ========== */
.testimonial-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary-blue);
}

.author-info strong {
    display: block;
    color: var(--primary-dark);
}

.author-info .small {
    color: var(--gray-500);
}

/* ========== CTA SECTION ========== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-light) 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .cta-section::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
        animation: rotate 30s linear infinite;
    }

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section .lead {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .cta {
    background: white;
    color: var(--primary-blue);
}

    .cta-section .cta:hover {
        background: var(--gray-100);
        color: var(--primary-blue);
    }

    .cta-section .cta.secondary {
        background: transparent;
        color: white;
        border: 2px solid white;
    }

        .cta-section .cta.secondary:hover {
            background: white;
            color: var(--primary-blue);
        }

/* ========== FOOTER ========== */
footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

.footer-content {
    padding: 0 1rem;
}

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

.footer-brand .brand {
    margin-bottom: 1rem;
}

    .footer-brand .brand img {
        filter: brightness(0) invert(1);
    }

    .footer-brand .brand .name {
        color: white;
    }

.footer-brand .small {
    color: var(--gray-400);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-contact {
    margin-top: 1rem;
}

    .footer-contact a {
        color: var(--accent-cyan);
    }

        .footer-contact a:hover {
            color: white;
        }

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

    .footer-column strong {
        color: white;
        font-size: 1.05rem;
        margin-bottom: 0.5rem;
        font-family: var(--font-display);
    }

    .footer-column a {
        color: var(--gray-400);
        transition: all var(--transition-fast);
    }

        .footer-column a:hover {
            color: white;
            padding-left: 4px;
        }

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: 1.5rem;
    text-align: center;
}

/* ========== SCROLL TO TOP ========== */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-xl);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    z-index: 999;
}

    .scroll-to-top.visible {
        opacity: 1;
        visibility: visible;
    }

    .scroll-to-top:hover {
        background: var(--primary-light);
        transform: translateY(-4px);
    }

/* ========== CONTACT FORM ========== */
.contact-section {
    padding: 3rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
}

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

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

    .form-header h2 {
        margin-bottom: 0.5rem;
    }

    .form-header p {
        color: var(--gray-600);
    }

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

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

    .form-group label {
        display: block;
        font-weight: 500;
        color: var(--gray-700);
        margin-bottom: 0.5rem;
    }

.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-lg);
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: all var(--transition-fast);
    background: white;
}

    .form-input:focus, .form-select:focus, .form-textarea:focus {
        outline: none;
        border-color: var(--primary-blue);
        box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
    }

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.925rem;
    color: var(--gray-600);
    cursor: pointer;
}

    .checkbox-label input[type="checkbox"] {
        margin-top: 4px;
        cursor: pointer;
    }

.form-note {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
}

/* ========== CONTACT INFO ========== */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

    .contact-info-card h3 {
        margin-bottom: 1.5rem;
        color: var(--primary-blue);
    }

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

    .info-item:last-child {
        margin-bottom: 0;
    }

.info-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.info-item strong {
    display: block;
    color: var(--gray-700);
    margin-bottom: 0.25rem;
}

.info-item a {
    color: var(--primary-blue);
    font-weight: 500;
}

/* ========== PROCESS STEPS ========== */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.process-step {
    display: flex;
    gap: 1rem;
}

.step-number {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.process-step strong {
    display: block;
    color: var(--gray-800);
    margin-bottom: 0.25rem;
}

.process-step p {
    font-size: 0.925rem;
    color: var(--gray-600);
}

/* ========== QUICK LINKS ========== */
.quick-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    color: var(--gray-700);
    font-weight: 500;
    transition: all var(--transition-fast);
}

    .quick-link:hover {
        background: var(--primary-blue);
        color: white;
        border-color: var(--primary-blue);
        transform: translateX(4px);
    }

.link-icon {
    font-size: 1.25rem;
}

/* ========== FAQ ========== */
.faq-section {
    background: var(--gray-50);
    margin-top: 3rem;
    border-radius: var(--radius-2xl);
    padding: 3rem;
}

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

.faq-item {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
}

    .faq-item h3 {
        font-size: 1.125rem;
        color: var(--primary-blue);
        margin-bottom: 0.75rem;
    }

    .faq-item p {
        color: var(--gray-600);
        line-height: 1.6;
    }

/* ========== DOCS PAGE ========== */
.docs-section {
    padding: 3rem 0;
}

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

.doc-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

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

    .doc-card.featured {
        border: 2px solid var(--primary-blue);
    }

.doc-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.doc-type {
    display: inline-block;
    background: var(--gray-100);
    color: var(--gray-700);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-md);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.doc-content h3 {
    margin-bottom: 0.75rem;
}

.doc-highlights {
    list-style: none;
    margin: 1rem 0;
    padding: 0;
}

    .doc-highlights li {
        padding-left: 1.5rem;
        position: relative;
        margin-bottom: 0.5rem;
        color: var(--gray-600);
    }

        .doc-highlights li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--success);
            font-weight: 700;
        }

.doc-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 1.5rem 0;
    font-size: 0.875rem;
    color: var(--gray-500);
}

    .doc-meta span {
        display: flex;
        align-items: center;
        gap: 0.25rem;
    }

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-blue);
    color: white;
    padding: 0.875rem 1.5rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    transition: all var(--transition-base);
    margin-top: 1rem;
}

    .btn-download:hover {
        background: var(--primary-light);
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
        color: white;
    }

.download-icon {
    font-size: 1.25rem;
}

/* ========== DOCS TABLE ========== */
.docs-library {
    margin: 4rem 0;
}

    .docs-library h2 {
        margin-bottom: 2rem;
    }

.docs-table-wrapper {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.docs-table {
    width: 100%;
    border-collapse: collapse;
}

    .docs-table thead {
        background: var(--gray-50);
    }

    .docs-table th {
        padding: 1rem 1.5rem;
        text-align: left;
        font-weight: 600;
        color: var(--gray-700);
        border-bottom: 1px solid var(--gray-200);
    }

    .docs-table td {
        padding: 1.25rem 1.5rem;
        border-bottom: 1px solid var(--gray-200);
    }

    .docs-table tr:last-child td {
        border-bottom: none;
    }

    .docs-table tr:hover {
        background: var(--gray-50);
    }

.table-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.table-icon {
    font-size: 1.5rem;
}

.type-badge {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

    .type-badge.overview {
        background: #EEF2FF;
        color: var(--primary-blue);
    }

    .type-badge.whitepaper {
        background: #F0FDF4;
        color: var(--success);
    }

    .type-badge.guide {
        background: #FFF7ED;
        color: var(--warning);
    }

    .type-badge.tool {
        background: #F5F3FF;
        color: #8B5CF6;
    }

    .type-badge.blueprint {
        background: #ECFDF5;
        color: #059669;
    }

.btn-table-download, .btn-table-request {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    font-size: 0.875rem;
    transition: all var(--transition-fast);
}

.btn-table-download {
    background: var(--primary-blue);
    color: white;
}

    .btn-table-download:hover {
        background: var(--primary-light);
        color: white;
    }

.btn-table-request {
    background: var(--gray-100);
    color: var(--gray-700);
    border: 1px solid var(--gray-300);
}

    .btn-table-request:hover {
        background: var(--gray-200);
        color: var(--gray-900);
    }

/* ========== DOCS REQUEST & NOTE ========== */
.docs-request {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-cyan) 100%);
    color: white;
    padding: 3rem;
    border-radius: var(--radius-2xl);
    text-align: center;
    margin: 3rem 0;
}

    .docs-request h2 {
        color: white;
        margin-bottom: 1rem;
    }

    .docs-request p {
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 2rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

.docs-note {
    display: flex;
    gap: 1rem;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    margin-top: 3rem;
}

.note-icon {
    flex-shrink: 0;
    font-size: 1.5rem;
}

.docs-note strong {
    display: block;
    color: var(--gray-800);
    margin-bottom: 0.25rem;
}

.docs-note p {
    color: var(--gray-600);
    font-size: 0.925rem;
}

/* ========== ABOUT PAGE SPECIFIC ========== */
.grid-2-about {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.about-content-block {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
}

.content-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.mission-vision-section {
    margin-bottom: 4rem;
}

/* ========== VALUES ========== */
.values-section {
    background: var(--gray-50);
    border-radius: var(--radius-2xl);
    padding: 4rem 3rem;
    margin: 4rem 0;
}

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

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

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

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    margin-bottom: 0.75rem;
}

.value-card p {
    color: var(--gray-600);
    line-height: 1.7;
}

/* ========== DIFFERENTIATORS ========== */
.differentiators-section {
    padding: 4rem 0;
}

.grid-2-diff {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 3rem;
    align-items: start;
}

.diff-visual {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.diff-stat-card {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-cyan) 100%);
    color: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    font-family: var(--font-display);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
}

.diff-content h2 {
    margin-bottom: 2rem;
}

.diff-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.diff-item {
    display: flex;
    gap: 1.5rem;
}

.diff-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
    color: white;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: var(--shadow-md);
}

.diff-item h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.diff-item p {
    color: var(--gray-600);
    line-height: 1.7;
}

.featured-quote {
    background: var(--gray-50);
    border-left: 4px solid var(--primary-blue);
    padding: 1.5rem 2rem;
    margin-top: 2rem;
    border-radius: var(--radius-md);
    font-size: 1.125rem;
    font-style: italic;
    color: var(--gray-700);
}

/* ========== APPROACH TIMELINE ========== */
.approach-section {
    background: var(--gray-50);
    border-radius: var(--radius-2xl);
    padding: 4rem 3rem;
    margin: 4rem 0;
}

.approach-timeline {
    position: relative;
    padding-left: 3rem;
}

    .approach-timeline::before {
        content: '';
        position: absolute;
        left: 1rem;
        top: 0;
        bottom: 0;
        width: 2px;
        background: linear-gradient(180deg, var(--primary-blue) 0%, var(--accent-cyan) 100%);
    }

.timeline-item {
    position: relative;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
}

    .timeline-item:last-child {
        margin-bottom: 0;
    }

.timeline-number {
    position: absolute;
    left: -3rem;
    top: 2rem;
    width: 42px;
    height: 42px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    box-shadow: 0 0 0 6px white;
    z-index: 1;
}

.timeline-content h3 {
    margin-bottom: 0.75rem;
    color: var(--primary-blue);
}

.timeline-content p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1rem;
}

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

    .timeline-list li {
        padding-left: 1.5rem;
        position: relative;
        margin-bottom: 0.5rem;
        color: var(--gray-600);
        font-size: 0.925rem;
    }

        .timeline-list li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--accent-cyan);
            font-weight: 700;
        }

/* ========== TECH STACK ========== */
.tech-stack-section {
    padding: 4rem 0;
}

.tech-categories {
    display: grid;
    gap: 2rem;
}

.tech-category {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

    .tech-category h3 {
        margin-bottom: 1.5rem;
        color: var(--primary-blue);
    }

.tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tech-badge, .tech-badge-sm {
    display: inline-block;
    background: var(--gray-100);
    color: var(--gray-700);
    padding: 0.625rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid var(--gray-200);
    transition: all var(--transition-fast);
}

.tech-badge-sm {
    padding: 0.5rem 0.875rem;
    font-size: 0.8rem;
}

    .tech-badge:hover, .tech-badge-sm:hover {
        background: var(--primary-blue);
        color: white;
        border-color: var(--primary-blue);
        transform: translateY(-2px);
    }

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 2rem;
        min-height: auto;
    }

    .hero-content {
        max-width: 100%;
    }

    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-4 {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

    .grid-2-diff {
        grid-template-columns: 1fr;
    }

    .diff-visual {
        position: static;
    }
}

@media (max-width: 768px) {
    .menu {
        position: fixed;
        top: 73px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
        box-shadow: var(--shadow-xl);
        display: none;
        gap: 0.5rem;
    }

        .menu.active {
            display: flex;
        }

        .menu a {
            padding: 1rem;
            text-align: center;
            border-radius: var(--radius-md);
        }

    .mobile-toggle {
        display: flex;
    }

        .mobile-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .mobile-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }

    .stats {
        justify-content: center;
    }

    .stat {
        min-width: 150px;
    }

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

    .hero-shape {
        display: none;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .docs-featured {
        grid-template-columns: 1fr;
    }

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

    .grid-2-about {
        grid-template-columns: 1fr;
    }

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

    .approach-timeline {
        padding-left: 2rem;
    }

    .timeline-number {
        left: -2rem;
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

        .cta-buttons .cta {
            width: 100%;
            justify-content: center;
        }
}

@media (max-width: 480px) {
    .container {
        width: 100%;
        padding: 0 1rem;
    }

    .section {
        padding: 2rem 0;
    }

    .page-header {
        padding: 2rem 0 1.5rem;
    }

    h1 {
        font-size: 1.75rem;
    }

    .lead {
        font-size: 1.05rem;
    }

    .card {
        padding: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .docs-table th,
    .docs-table td {
        padding: 0.875rem;
        font-size: 0.875rem;
    }

    .scroll-to-top {
        width: 44px;
        height: 44px;
        bottom: 1rem;
        right: 1rem;
    }
}

/* ========== PRINT STYLES ========== */
@media print {
    nav, .scroll-to-top, .cta-section, footer {
        display: none;
    }

    .page-header {
        background: none;
        padding: 1rem 0;
    }

    * {
        box-shadow: none !important;
    }
}
.footer-brand .brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-brand .brand img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: brightness(1) invert(1); /* Inverts black logo to white */
}

.footer-brand .brand .name {
    font-size: 1.25rem;
    color: white;
    font-family: var(--font-display);
    font-weight: 600;
}
