* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-navy: #1e3a5f;
    --accent-blue: #2d5a8f;
    --deep-navy: #1a2332;
    --light-blue: #4a7cb8;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --success: #28a745;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--white);
    color: var(--deep-navy);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Navigation */
.navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(30, 58, 95, 0.1);
    transition: all 0.3s ease;
    transform: translateY(0);
}

.navigation.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    padding: 5px 0;
}

.navigation.hidden {
    transform: translateY(-100%);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-svg {
    height: 40px;
    width: auto;
    transition: transform 0.3s;
}

.logo-svg:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-item a {
    color: var(--deep-navy);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    position: relative;
    transition: color 0.3s;
}

.nav-item a:hover {
    color: var(--primary-navy);
}

.nav-item a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-blue);
    transition: width 0.3s ease;
}

.nav-item a:hover::after {
    width: 100%;
}

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

.hamburger-line {
    width: 28px;
    height: 3px;
    background: var(--primary-navy);
    transition: all 0.3s ease;
    border-radius: 3px;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: none;
}

.floating-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.floating-cta-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    background: var(--primary-navy);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 8px 25px rgba(30, 58, 95, 0.3);
    transition: all 0.3s;
}

.floating-cta-btn:hover {
    background: var(--accent-blue);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(30, 58, 95, 0.4);
}

.floating-cta-icon {
    width: 20px;
    height: 20px;
    animation: pulse 2s infinite;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    padding: 120px 40px 80px;
    overflow: hidden;
}

.network-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.03;
    pointer-events: none;
}

/* Floating shapes in hero */
.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-navy);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--accent-blue);
    bottom: 15%;
    right: 10%;
    animation-delay: 5s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -20px) rotate(90deg); }
    50% { transform: translate(-15px, 15px) rotate(180deg); }
    75% { transform: translate(15px, 10px) rotate(270deg); }
}

.hero-content {
    max-width: 1200px;
    text-align: center;
    z-index: 10;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

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

.hero-subtitle {
    font-family: 'Space Mono', monospace;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-blue);
    margin-bottom: 20px;
    font-weight: 700;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

.hero-title {
    font-size: clamp(48px, 8vw, 80px);
    font-weight: 700;
    color: var(--deep-navy);
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -2px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.7s forwards;
}

.hero-title .highlight {
    color: var(--primary-navy);
    position: relative;
    display: inline-block;
}

.hero-description {
    font-size: 20px;
    color: #666;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.7;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.9s forwards;
}

.cta-button {
    display: inline-block;
    padding: 18px 40px;
    background: var(--primary-navy);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(30, 58, 95, 0.2);
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.1s forwards;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    background: var(--accent-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(30, 58, 95, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    opacity: 0.7;
    cursor: pointer;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.scroll-indicator svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary-navy);
}

/* Scroll reveal */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

/* About Section */
.about {
    padding: 120px 40px;
    background: var(--white);
    position: relative;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-label {
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-blue);
    margin-bottom: 15px;
    font-weight: 700;
}

.section-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    color: var(--deep-navy);
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.about-text {
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.stat-item {
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    border: 1px solid rgba(30, 58, 95, 0.08);
    transition: all 0.3s;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(30, 58, 95, 0.1);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 10px;
    font-family: 'Space Mono', monospace;
}

.stat-label {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Process Timeline Section */
.process-timeline {
    padding: 120px 40px;
    background: linear-gradient(135deg, var(--light-gray) 0%, #ffffff 100%);
    position: relative;
}

/* Background pattern */
.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(30, 58, 95, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(45, 90, 143, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.process-header {
    text-align: center;
    margin-bottom: 80px;
}

.timeline {
    position: relative;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, 
        transparent 0%, 
        var(--accent-blue) 10%, 
        var(--accent-blue) 90%, 
        transparent 100%);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: calc(50% + 50px);
    position: relative;
    margin-bottom: 80px;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-left: calc(50% + 50px);
    padding-right: 0;
}

.timeline-content {
    max-width: 450px;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(30, 58, 95, 0.08);
    position: relative;
    transition: all 0.3s;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(30, 58, 95, 0.12);
}

.timeline-number {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-navy), var(--accent-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 22px;
    font-family: 'Space Mono', monospace;
    box-shadow: 0 0 0 8px white, 0 4px 15px rgba(30, 58, 95, 0.2);
    z-index: 10;
}

.timeline-item:nth-child(even) .timeline-number {
    left: 50%;
}

.timeline-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--deep-navy);
    margin-bottom: 12px;
}

.timeline-description {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

.timeline-icon {
    font-size: 32px;
    margin-bottom: 15px;
}

/* Services Section */
.services {
    padding: 120px 40px;
    background: var(--white);
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

.services-header {
    text-align: center;
    margin-bottom: 80px;
}

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

.service-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-navy), var(--accent-blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(30, 58, 95, 0.12);
    border-color: rgba(30, 58, 95, 0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-navy), var(--accent-blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 28px;
    transition: transform 0.3s;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--deep-navy);
    margin-bottom: 15px;
}

.service-description {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-link {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}

.service-link:hover {
    gap: 12px;
}

.service-link svg {
    width: 16px;
    height: 16px;
}

/* Testimonials Section */
.testimonials {
    padding: 120px 40px;
    background: linear-gradient(135deg, var(--light-gray) 0%, #ffffff 100%);
    overflow: hidden;
    position: relative;
}

/* Decorative quote marks */
.testimonials::before {
    content: '"';
    position: absolute;
    top: 80px;
    left: 40px;
    font-size: 200px;
    color: var(--primary-navy);
    opacity: 0.02;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-item {
    display: none;
    text-align: center;
    padding: 40px;
    animation: slideIn 0.5s ease-out;
}

.testimonial-item.active {
    display: block;
}

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

.testimonial-quote {
    font-size: 22px;
    line-height: 1.7;
    color: var(--deep-navy);
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
}

.testimonial-quote::before {
    content: '"';
    font-size: 80px;
    position: absolute;
    top: -20px;
    left: -30px;
    color: var(--light-blue);
    opacity: 0.3;
    font-family: Georgia, serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-navy), var(--accent-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 22px;
}

.author-info {
    text-align: left;
}

.author-name {
    font-weight: 600;
    color: var(--deep-navy);
    font-size: 16px;
}

.author-role {
    font-size: 14px;
    color: #666;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

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

.nav-dot.active {
    background: var(--primary-navy);
    width: 30px;
    border-radius: 6px;
}

/* FAQ Section */
.faq {
    padding: 120px 40px;
    background: var(--white);
    position: relative;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #e5e5e5;
    transition: all 0.3s;
}

.faq-item.active {
    border-color: var(--primary-navy);
    box-shadow: 0 4px 20px rgba(30, 58, 95, 0.1);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: white;
    transition: background 0.3s;
    user-select: none;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--deep-navy);
    flex: 1;
}

.faq-icon {
    width: 30px;
    height: 30px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
    margin-left: 20px;
}

.faq-icon svg {
    width: 16px;
    height: 16px;
    stroke: var(--primary-navy);
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    background: var(--primary-navy);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.faq-answer-content {
    padding: 0 30px 25px 30px;
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}

/* Contact Section */
.contact {
    padding: 120px 40px;
    background: var(--deep-navy);
    color: white;
    position: relative;
    overflow: hidden;
}

/* Animated gradient background */
.contact::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(45, 90, 143, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

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

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header .section-label {
    color: var(--light-blue);
}

.contact-header .section-title {
    color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.9);
    transition: transform 0.3s;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-item svg {
    width: 24px;
    height: 24px;
    stroke: var(--light-blue);
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: white;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--light-blue);
    transform: translateY(-2px);
}

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

.submit-button {
    width: 100%;
    padding: 16px;
    background: white;
    color: var(--deep-navy);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--light-blue);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.submit-button:hover::before {
    width: 400px;
    height: 400px;
}

.submit-button:hover {
    color: white;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #0d1117;
    color: rgba(255, 255, 255, 0.6);
    padding: 40px;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    color: white;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 1px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

/* Responsive */
@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(even) {
        justify-content: flex-start;
        padding-left: 80px;
        padding-right: 0;
    }
    
    .timeline-number {
        left: 30px !important;
        transform: translateY(-50%);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .floating-cta {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-cta-btn {
        padding: 14px 24px;
        font-size: 14px;
    }
    
    .shape-1, .shape-2 {
        display: none;
    }
}

/* Generic Page Content */
.page-content-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 40px 100px;
}
.page-content {
    font-size: 18px;
    line-height: 1.8;
}

/* Blog Grid */
.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px 100px;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}
.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.blog-card-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.blog-card-content {
    padding: 25px;
}
.blog-card-category {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-blue);
    margin-bottom: 10px;
}
.blog-card-title {
    font-size: 20px;
    margin-bottom: 10px;
    line-height: 1.3;
}
.blog-card-title a {
    color: var(--deep-navy);
    transition: color 0.3s;
}
.blog-card-title a:hover {
    color: var(--accent-blue);
}
.blog-card-excerpt {
    color: #666;
    font-size: 15px;
    margin-bottom: 15px;
}
.blog-card-meta {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: #999;
}
.no-posts {
    text-align: center;
    padding: 60px;
    color: #666;
    font-size: 18px;
}
