/* =====================================================
   Ondřej Klamt - Personal Professional Website
   Modern, Approachable Design with Blue Theme
   ===================================================== */

/* CSS Variables */
:root {
    /* Primary Blue Palette */
    --primary-50: #eff6ff;
    --primary-100: #dbeafe;
    --primary-200: #bfdbfe;
    --primary-300: #93c5fd;
    --primary-400: #60a5fa;
    --primary-500: #3b82f6;
    --primary-600: #2563eb;
    --primary-700: #1d4ed8;
    --primary-800: #1e40af;
    --primary-900: #1e3a8a;
    
    /* 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 */
    --text-primary: var(--gray-900);
    --text-secondary: var(--gray-600);
    --text-muted: var(--gray-500);
    --background: #ffffff;
    --background-alt: var(--gray-50);
    --border: var(--gray-200);
    
    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    
    /* Spacing */
    --section-padding: 6rem;
    --container-max: 1200px;
    
    /* Effects */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    
    --transition: 0.3s ease;
    --radius: 0.5rem;
    --radius-lg: 1rem;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    color: var(--text-primary);
    background: var(--background);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: var(--primary-600);
    text-decoration: none;
    transition: color var(--transition);
}

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

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Section */
.section {
    padding: var(--section-padding) 0;
}

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

.section-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--primary-600);
    color: white;
    box-shadow: var(--shadow-md);
}

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

.btn-secondary {
    background: transparent;
    color: var(--primary-600);
    border: 2px solid var(--primary-600);
}

.btn-secondary:hover {
    background: var(--primary-50);
    color: var(--primary-700);
}

.btn-nav {
    padding: 0.625rem 1.25rem;
    font-size: 0.9rem;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

/* =====================================================
   Navigation
   ===================================================== */
.navbar {
    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 transparent;
    transition: all var(--transition);
}

.navbar.scrolled {
    border-bottom-color: var(--border);
    box-shadow: var(--shadow-sm);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4.5rem;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.logo:hover {
    color: var(--primary-600);
}

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

.nav-menu a {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color var(--transition);
}

.nav-menu a:hover {
    color: var(--primary-600);
}

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

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--transition);
}

/* =====================================================
   Hero Section
   ===================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 6rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-50) 0%, var(--primary-100) 100%);
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: -1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-subtitle {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-600);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.hero-title .highlight {
    color: var(--primary-600);
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 540px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-600);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.hero-image {
    display: flex;
    justify-content: center;
}

.image-wrapper {
    position: relative;
    width: 400px;
    height: 480px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 3px solid var(--primary-200);
    border-radius: var(--radius-lg);
    z-index: 1;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =====================================================
   About Section
   ===================================================== */
.about {
    background: var(--background-alt);
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text .lead {
    font-size: 1.25rem;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.about-text strong {
    color: var(--primary-600);
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.value-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-100);
    color: var(--primary-600);
    border-radius: var(--radius);
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.value-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

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

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

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

.service-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-50);
    color: var(--primary-600);
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.service-card > p {
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}

.service-points {
    padding-left: 0;
}

.service-points li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.service-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 6px;
    height: 6px;
    background: var(--primary-400);
    border-radius: 50%;
}

/* =====================================================
   Track Record Section
   ===================================================== */
.track-record {
    background: linear-gradient(135deg, var(--primary-800) 0%, var(--primary-900) 100%);
    color: white;
}

.track-record .section-title {
    color: white;
}

.track-record .section-subtitle {
    color: var(--primary-200);
}

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

.achievement-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all var(--transition);
}

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

.achievement-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
}

.achievement-label {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary-300);
    margin-bottom: 1rem;
}

.achievement-card p {
    font-size: 0.9rem;
    color: var(--primary-100);
    line-height: 1.5;
}

/* =====================================================
   Who I Help Section
   ===================================================== */
.audience {
    background: var(--background-alt);
}

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

.audience-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--border);
    transition: all var(--transition);
}

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

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

.audience-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.audience-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* =====================================================
   Experience Section
   ===================================================== */
.timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    position: relative;
    padding-bottom: 2.5rem;
}

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

.timeline-item::before {
    content: '';
    position: absolute;
    left: 11px;
    top: 24px;
    bottom: 0;
    width: 2px;
    background: var(--primary-200);
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-marker {
    width: 24px;
    height: 24px;
    min-width: 24px;
    background: white;
    border: 3px solid var(--primary-400);
    border-radius: 50%;
    z-index: 1;
}

.timeline-marker.current {
    background: var(--primary-500);
    border-color: var(--primary-500);
    box-shadow: 0 0 0 4px var(--primary-100);
}

.timeline-content {
    background: white;
    padding: 1.5rem 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    flex: 1;
    transition: all var(--transition);
}

.timeline-content:hover {
    border-color: var(--primary-200);
    box-shadow: var(--shadow-md);
}

.timeline-date {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-600);
    margin-bottom: 0.5rem;
}

.timeline-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.timeline-company {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.timeline-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* =====================================================
   Contact Section
   ===================================================== */
.contact {
    background: var(--background);
}

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

.contact-info h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
}

.contact-item svg {
    color: var(--primary-500);
    min-width: 24px;
}

.contact-item a {
    color: var(--text-secondary);
}

.contact-item a:hover {
    color: var(--primary-600);
}

.cta-card {
    background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-700) 100%);
    padding: 3rem;
    border-radius: var(--radius-lg);
    text-align: center;
    color: white;
    box-shadow: var(--shadow-xl);
}

.cta-card h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.cta-card > p {
    color: var(--primary-100);
    margin-bottom: 2rem;
}

.cta-card .btn-primary {
    background: white;
    color: var(--primary-700);
}

.cta-card .btn-primary:hover {
    background: var(--primary-50);
    transform: translateY(-2px);
}

.cta-note {
    font-size: 0.875rem;
    color: var(--primary-200);
    margin-top: 1rem;
}

/* =====================================================
   Footer
   ===================================================== */
.footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding: 2rem 0;
}

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

.footer-content p {
    font-size: 0.9rem;
}

.footer-tagline {
    margin-top: 0.5rem;
    color: var(--gray-500);
}

/* =====================================================
   Responsive Design
   ===================================================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.75rem;
    }
    
    .image-wrapper {
        width: 350px;
        height: 420px;
    }
    
    .services-grid,
    .achievements-grid,
    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 4rem;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 4.5rem;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-lg);
        transform: translateY(-150%);
        opacity: 0;
        transition: all var(--transition);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .hero {
        padding-top: 5rem;
        min-height: auto;
        padding-bottom: 4rem;
    }
    
    .hero-bg {
        width: 100%;
        height: 50%;
        top: auto;
        bottom: 0;
        clip-path: polygon(0 30%, 100% 0, 100% 100%, 0% 100%);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-image {
        order: -1;
        margin-bottom: 2rem;
    }
    
    .image-wrapper {
        width: 280px;
        height: 340px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-values {
        display: grid;
        grid-template-columns: 1fr;
    }
    
    .services-grid,
    .achievements-grid,
    .audience-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        gap: 1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.875rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat {
        flex-direction: row;
        align-items: baseline;
        gap: 0.5rem;
    }
    
    .btn {
        width: 100%;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .cta-card {
        padding: 2rem;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Smooth reveal on scroll */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =====================================================
   Logo Bar Section
   ===================================================== */
.logo-bar {
    padding: 3rem 0;
    background: var(--background);
    border-bottom: 1px solid var(--border);
}

.logo-bar-title {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

.logo-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-item img {
    max-height: 40px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all var(--transition);
}

.logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-400);
    transition: color var(--transition);
}

.logo-item:hover .logo-text {
    color: var(--gray-600);
}

/* =====================================================
   About Section - Story Version
   ===================================================== */
.about-story {
    grid-column: 1;
}

.about-story .lead {
    font-size: 1.25rem;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-story p {
    margin-bottom: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.about-story .philosophy {
    background: var(--primary-50);
    padding: 1.5rem;
    border-radius: var(--radius);
    border-left: 4px solid var(--primary-500);
    margin-top: 1.5rem;
}

.about-story .philosophy strong {
    color: var(--primary-700);
}

.values-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.value-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

/* =====================================================
   Services Section - Primary/Secondary Layout
   ===================================================== */
.services-primary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-card-primary {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--primary-100);
    transition: all var(--transition);
}

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

.services-secondary {
    background: var(--background-alt);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
}

.services-secondary-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.service-card-secondary {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.service-card-secondary:hover {
    border-color: var(--primary-200);
    box-shadow: var(--shadow-md);
}

.service-card-secondary h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.service-card-secondary p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* =====================================================
   Case Study Section
   ===================================================== */
.case-study {
    background: var(--background-alt);
}

.case-study-content {
    display: grid;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.case-study-challenge,
.case-study-approach {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.case-study-challenge h3,
.case-study-approach h3,
.case-study-results h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-600);
    margin-bottom: 1rem;
}

.case-study-challenge p,
.case-study-approach p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.case-study-approach ul {
    padding-left: 0;
    list-style: none;
}

.case-study-approach li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
}

.case-study-approach li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-500);
    font-weight: bold;
}

.case-study-results {
    text-align: center;
}

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

.result {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--primary-100);
}

.result-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-600);
    margin-bottom: 0.25rem;
}

.result-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* =====================================================
   Testimonials Section
   ===================================================== */
.testimonials {
    background: var(--background);
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.testimonial-card:hover {
    border-color: var(--primary-200);
    box-shadow: var(--shadow-lg);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.7;
}

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

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-100);
    color: var(--primary-600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
}

.testimonial-info strong {
    display: block;
    color: var(--text-primary);
    font-weight: 600;
}

.testimonial-info span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* =====================================================
   Blog Section
   ===================================================== */
.blog {
    background: var(--background-alt);
}

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

.blog-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all var(--transition);
}

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

.blog-date {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: var(--primary-50);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    margin-bottom: 1rem;
}

.blog-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.blog-card h3 a {
    color: var(--text-primary);
}

.blog-card h3 a:hover {
    color: var(--primary-600);
}

.blog-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.read-more {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-600);
}

.read-more:hover {
    color: var(--primary-700);
}

.blog-cta {
    text-align: center;
    margin-top: 3rem;
}

/* =====================================================
   FAQ Section
   ===================================================== */
.faq {
    background: var(--background);
}

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

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

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

.faq-item[open] {
    border-color: var(--primary-300);
    box-shadow: var(--shadow-md);
}

.faq-item summary {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-500);
    transition: transform var(--transition);
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* =====================================================
   Social Proof Section
   ===================================================== */
.social-proof {
    background: var(--primary-50);
    padding: 4rem 0;
}

.social-proof-content {
    text-align: center;
}

.social-proof h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.social-proof p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.linkedin-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #0077b5;
    color: white;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius);
    font-weight: 500;
    transition: all var(--transition);
}

.linkedin-button:hover {
    background: #006097;
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.linkedin-button svg {
    width: 20px;
    height: 20px;
}

/* =====================================================
   Additional Responsive Styles
   ===================================================== */
@media (max-width: 1024px) {
    .services-primary {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-secondary-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .logo-grid {
        gap: 2rem;
    }
    
    .logo-item img {
        max-height: 30px;
    }
    
    .services-primary {
        grid-template-columns: 1fr;
    }
    
    .services-secondary-grid {
        grid-template-columns: 1fr;
    }
    
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .result-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .logo-grid {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   Blog Page Styles
   ===================================================== */
.blog-header {
    background: linear-gradient(135deg, var(--primary-800) 0%, var(--primary-900) 100%);
    color: white;
    padding: 8rem 0 4rem;
    text-align: center;
}

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

.blog-header-subtitle {
    color: var(--primary-200);
    font-size: 1.25rem;
}

.blog-listing {
    background: var(--background-alt);
}

.blog-grid-full {
    display: grid;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.blog-card-large {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.blog-card-large:hover {
    border-color: var(--primary-200);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.blog-card-large h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-card-large h2 a {
    color: var(--text-primary);
}

.blog-card-large h2 a:hover {
    color: var(--primary-600);
}

.blog-card-large p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.blog-cta-section {
    padding: 4rem 0;
    background: var(--background);
}

.blog-cta-card {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: var(--primary-50);
    padding: 3rem;
    border-radius: var(--radius-lg);
}

.blog-cta-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.blog-cta-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* Blog Post Page */
.blog-post {
    padding: 8rem 0 4rem;
    min-height: 80vh;
}

.post-header {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.back-link {
    display: inline-block;
    color: var(--primary-600);
    font-weight: 500;
    margin-bottom: 2rem;
}

.back-link:hover {
    color: var(--primary-700);
}

.post-header h1 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.post-excerpt {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

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

.coming-soon-notice {
    background: var(--background-alt);
    padding: 3rem;
    border-radius: var(--radius-lg);
    text-align: center;
}

.coming-soon-notice h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.coming-soon-notice p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.coming-soon-notice ul {
    text-align: left;
    max-width: 500px;
    margin: 1.5rem auto;
    padding-left: 1.5rem;
    list-style: disc;
}

.coming-soon-notice li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.coming-soon-notice .linkedin-button {
    margin-top: 1.5rem;
}

/* Nav active state */
.nav-menu a.active {
    color: var(--primary-600);
}
