:root {
    /* Enhanced Clay Color Palette */
    --primary-dark: #1a1a1a;
    --secondary-dark: #2d2d2d;
    --text-gray: #5a5a5a;
    --light-gray: #ebebeb;
    --border-light: #e5e7eb;
    --pure-white: #ffffff;
    --accent-red: #f54132;      /* Primary CTAs & alerts */
    --accent-orange: #fb9e2a;   /* Secondary CTAs & progress indicators */
    --accent-yellow: #ffcf92;   /* Success states & badges */
    --warm-beige: #fef3e5;      /* Background sections & cards */
    --surface-gray: #fafbfc;
    --hover-gray: #f1f5f9;
    --border-radius: 12px;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--primary-dark);
    line-height: 1.6;
    background: var(--pure-white);
    -webkit-font-smoothing: antialiased;
    font-feature-settings: 'cv11', 'ss01';
}

/* Typography - Enhanced Clay Style */
h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.025em;
    color: var(--primary-dark);
    margin-bottom: 2rem;
    text-align: center;
}

h2 {
    font-size: clamp(1.875rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
}

p {
    font-size: clamp(1.125rem, 2.5vw, 1.25rem);
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Strategic color placement for impact */
.highlight-revenue {
    background: linear-gradient(120deg, var(--accent-red), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-machine {
    color: var(--accent-orange);
    position: relative;
}


.rotating-text {
    position: relative;
    display: inline-block;
    min-width: 200px;
    text-align: left;
}

.text-option {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: opacity 0.5s ease-in-out;
    white-space: nowrap;
}

.text-option.active {
    opacity: 1;
    position: relative;
}

/* Golden formula styling */
.golden-formula {
    background: linear-gradient(120deg, #FFD700, #FFA500, #FF8C00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.golden-formula::before {
    content: '✨';
    position: absolute;
    left: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    -webkit-text-fill-color: #FFD700;
    font-size: 0.8em;
}

.golden-formula::after {
    content: '✨';
    position: absolute;
    right: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    -webkit-text-fill-color: #FFD700;
    font-size: 0.8em;
}

/* Lost revenue formatting */
.lost-revenue {
    color: var(--accent-red);
    font-weight: 500;
}

/* Overlooked opportunities formatting */
.overlooked-opportunities {
    color: var(--accent-orange);
    font-weight: 500;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: 400;
    color: var(--secondary-dark);
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--text-gray);
    font-weight: 400;
    margin-bottom: 2.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Hero Section Background */
.hero-background {
    background: linear-gradient(135deg, var(--pure-white) 0%, var(--warm-beige) 50%, var(--surface-gray) 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 140px;
    text-align: center;
}

/* Video Type Badge */
.video-badge {
    background: linear-gradient(45deg, var(--accent-red), var(--accent-orange));
    color: var(--pure-white);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation - Enhanced Style */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-light);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 70px;  /* Change from 100px to 70px */
    width: auto;
    object-fit: contain;
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-gray);
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all 0.2s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-dark);
    background: var(--warm-beige);
}

/* Active state indicator */
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: var(--accent-orange);
    border-radius: 50%;
}

.nav-button {
    background: var(--primary-dark);
    color: var(--pure-white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 600;
    transition: all 0.2s ease;
    border: none;
    box-shadow: 0 2px 8px rgba(26, 26, 26, 0.25);
}

.nav-button:hover {
    background: var(--secondary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(26, 26, 26, 0.35);
}

/* Status badges */
.status-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    background: var(--accent-yellow);
    color: var(--primary-dark);
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.025em;
    box-shadow: 0 2px 8px rgba(255, 207, 146, 0.3);
}

.status-badge.red {
    background: var(--accent-red);
    color: var(--pure-white);
    box-shadow: 0 2px 8px rgba(245, 65, 50, 0.3);
}

.status-badge.orange {
    background: var(--accent-orange);
    color: var(--pure-white);
    box-shadow: 0 2px 8px rgba(251, 158, 42, 0.3);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-orange));
    color: var(--pure-white);
    padding: 1rem 2.5rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-size: 1.0625rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(245, 65, 50, 0.3);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    margin-right: 1rem;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 65, 50, 0.4);
}

/* Secondary CTA with orange theme */
.cta-secondary {
    display: inline-flex;
    align-items: center;
    background: var(--pure-white);
    color: var(--accent-orange);
    padding: 1rem 2.5rem;
    border: 2px solid var(--accent-orange);
    border-radius: var(--border-radius);
    text-decoration: none;
    font-size: 1.0625rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(251, 158, 42, 0.15);
}

.cta-secondary:hover {
    background: var(--accent-orange);
    color: var(--pure-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(251, 158, 42, 0.3);
}

.cta-group {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

/* Section styling */
.section {
    padding: 5rem 0;
    position: relative;
}

.section-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-yellow), transparent);
    margin: 3rem 0;
    opacity: 0.6;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: background 0.2s ease;
}

.mobile-menu-toggle:hover {
    background: var(--warm-beige);
}

.mobile-menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--primary-dark);
    border-radius: 1px;
    transition: all 0.3s ease;
}

/* Enhanced Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    color: var(--pure-white);
    padding: 4rem 0 2rem;
    position: relative;
}

.footer-logo-img {
    height: 75px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1rem;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-red), var(--accent-orange), var(--accent-yellow));
}

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

.footer-section:first-child h4 {
    color: var(--accent-orange);
    margin-bottom: 1rem;
    font-size: 1.375rem;
    font-weight: 600;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
}

.footer-section a:hover {
    color: var(--accent-orange);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--pure-white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link:hover {
    background: var(--accent-orange);
    transform: translateY(-2px);
}

.footer-made-with {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.heart {
    color: var(--accent-yellow);
    font-size: 1rem;
}

.footer-section h4 {
    color: var(--accent-orange);
    margin-bottom: 1rem;
    font-size: 1.125rem;
    font-weight: 600;
}

/* Blog-specific styles - Add these to your styles.css file */

/* Compact Blog Header */
.blog-header {
    padding: 140px 0 3rem 0;
    background: linear-gradient(135deg, var(--pure-white) 0%, var(--warm-beige) 50%, var(--surface-gray) 100%);
    border-bottom: 1px solid var(--border-light);
}

.blog-header-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.blog-title-section h1 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 0.75rem;
    color: var(--primary-dark);
}

.blog-title-section p {
    color: var(--text-gray);
    font-size: 1.125rem;
    margin: 0;
}

/* Modern Newsletter Signup */
.newsletter-section {
    background: var(--warm-beige);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    border: 2px solid var(--accent-yellow);
    position: relative;
    overflow: hidden;
    min-height: fit-content;
}

/* ADD this to your newsletter CSS section in src/styles.css: */

.newsletter-input {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 1.5rem auto 0;
    align-items: stretch;
    position: relative;
    z-index: 1;
}

.newsletter-input input {
    flex: 1;
    padding: 0.875rem;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    font-size: 1rem;
    min-width: 0; /* Prevents flex item from overflowing */
}

.newsletter-input button {
    background: var(--accent-orange);
    color: var(--pure-white);
    border: none;
    padding: 0.875rem 1.25rem; /* Fixed padding instead of stretching */
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap; /* Prevents text wrapping */
    flex-shrink: 0; /* Prevents button from shrinking */
    min-width: auto; /* Override any min-width */
    width: auto; /* Override any fixed width */
}

.newsletter-input button:hover {
    background: var(--accent-red);
}

.newsletter-input button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .newsletter-input {
        flex-direction: column;
        max-width: 280px;
    }
    
    .newsletter-input button {
        padding: 0.875rem 1rem;
    }
}

.newsletter-message {
    margin-top: 1rem;
    font-size: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    transition: background 0.3s, color 0.3s;
}

.newsletter-message.success {
    background: var(--accent-yellow);
    color: var(--primary-dark);
    border: 1px solid var(--accent-yellow);
}

.newsletter-message.error {
    background: var(--accent-red);
    color: var(--pure-white);
    border: 1px solid var(--accent-red);
}

/* Newsletter Layout Variants */
.newsletter-compact {
    background: var(--pure-white);
    border: 1px solid var(--border-light);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
    clear: both;
    contain: layout style;
}

.newsletter-compact .newsletter-section {
    background: none;
    padding: 0;
    border: none;
    margin: 0;
}

.newsletter-compact .newsletter-section h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    text-align: left;
    color: var(--primary-dark);
}

.newsletter-compact .newsletter-section p {
    font-size: 0.9375rem;
    text-align: left;
    margin-bottom: 1rem;
    color: var(--text-gray);
}

.newsletter-compact .newsletter-input {
    margin: 0;
    max-width: none;
}

.newsletter-inline {
    background: var(--warm-beige);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-orange);
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
    clear: both;
    contain: layout style;
}

.newsletter-inline .newsletter-section {
    background: none;
    padding: 0;
    border: none;
    margin: 0;
    text-align: left;
}

.newsletter-inline .newsletter-section h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.newsletter-inline .newsletter-section p {
    font-size: 0.875rem;
    margin-bottom: 1rem;
    color: var(--text-gray);
}

.newsletter-inline .newsletter-input {
    margin: 0;
    max-width: none;
}

/* Enhanced message styling */
.newsletter-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 500;
    text-align: center;
    animation: slideIn 0.3s ease;
    position: relative;
    z-index: 10;
    width: 100%;
    box-sizing: border-box;
    clear: both;
}

/* Hide form inputs when newsletter is in success state */
form.newsletter-success.newsletter-input input:not([type="hidden"]):not([name="website"]),
form.newsletter-success.newsletter-input button[type="submit"],
.newsletter-success input:not([type="hidden"]):not([name="website"]),
.newsletter-success button[type="submit"] {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
}

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

@keyframes slideOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}

.newsletter-message.success {
    background: rgba(255, 207, 146, 0.2);
    color: var(--primary-dark);
    border: 1px solid var(--accent-yellow);
}

.newsletter-message.success::before {
    content: '🎉 ';
}

.newsletter-message.error {
    background: rgba(245, 65, 50, 0.1);
    color: var(--accent-red);
    border: 1px solid rgba(245, 65, 50, 0.3);
}

.newsletter-message.error::before {
    content: '⚠️ ';
}

/* Library CTA Section */
.library-cta-section {
    padding: 3rem 0;
    background: var(--surface-gray);
}

.library-cta-banner {
    background: linear-gradient(135deg, var(--warm-beige), rgba(255, 207, 146, 0.3));
    border: 2px solid var(--accent-yellow);
    border-radius: 16px;
    padding: 2rem;
}

.library-cta-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.5rem;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.library-cta-icon {
    font-size: 2.5rem;
    background: var(--accent-yellow);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.library-cta-text h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
    font-size: 1.25rem;
}

.library-cta-text p {
    margin: 0;
    color: var(--text-gray);
    font-size: 0.9375rem;
}

.library-cta-button {
    background: var(--accent-orange);
    color: var(--pure-white);
    padding: 0.875rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-size: 0.9375rem;
}

.library-cta-button:hover {
    background: var(--accent-red);
    transform: translateY(-2px);
}

/* Featured Post */
.featured-post-section {
    padding: 4rem 0;
    background: var(--pure-white);
}

.featured-post {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: var(--surface-gray);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid var(--border-light);
}

.featured-post-content h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.featured-post-content p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.featured-post-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.featured-post-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 16px;
}

.post-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.post-category {
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.post-category.revops {
    background: var(--accent-red);
    color: var(--pure-white);
}

.post-category.automation {
    background: var(--accent-orange);
    color: var(--pure-white);
}

.post-category.optimization {
    background: var(--accent-yellow);
    color: var(--primary-dark);
}

.post-category.tools {
    background: var(--primary-dark);
    color: var(--pure-white);
}

.post-date {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 500;
}

.post-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.reading-time, .post-value {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 500;
}

.read-more-btn {
    background: linear-gradient(135deg, var(--accent-red), var(--accent-orange));
    color: var(--pure-white);
    padding: 0.875rem 1.75rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.read-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 65, 50, 0.4);
}

/* Category Filters */
.blog-filter-section {
    padding: 2rem 0;
    background: var(--pure-white);
    border-bottom: 1px solid var(--border-light);
}

.category-filters {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    color: var(--text-gray);
    border: 2px solid var(--border-light);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: var(--accent-orange);
    color: var(--accent-orange);
}

.filter-btn.active {
    background: var(--accent-orange);
    color: var(--pure-white);
    border-color: var(--accent-orange);
}

/* Blog Posts Grid */
.blog-posts-section {
    padding: 4rem 0;
    background: var(--surface-gray);
}

.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-post-card {
    background: var(--pure-white);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.blog-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.post-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-post-card:hover .post-image img {
    transform: scale(1.05);
}

.post-category-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.post-content {
    padding: 1.5rem;
}

.post-content h3 {
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    line-height: 1.3;
}

.post-content p {
    color: var(--text-gray);
    margin-bottom: 1rem;
    font-size: 0.9375rem;
    line-height: 1.5;
}

.post-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.tag {
    background: var(--warm-beige);
    color: var(--text-gray);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

.post-link {
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: color 0.3s ease;
}

.post-link:hover {
    color: var(--accent-red);
}

/* Blog CTA Section */
.blog-cta-section {
    padding: 4rem 0;
    background: var(--pure-white);
    text-align: center;
}

.blog-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.blog-cta-content h2 {
    margin-bottom: 1rem;
}

.blog-cta-content p {
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

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

/* Individual Blog Post Styles */
.blog-post-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--pure-white) 0%, var(--warm-beige) 50%, var(--surface-gray) 100%);
    padding-top: 140px;
    text-align: center;
    position: relative;
}

.blog-post-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: var(--pure-white);
}

.article-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-light);
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
    font-weight: 600;
    font-size: 1rem;
}

.author-details h4 {
    margin: 0;
    font-size: 0.9375rem;
    color: var(--primary-dark);
}

.author-details p {
    margin: 0;
    font-size: 0.8125rem;
    color: var(--text-gray);
}

.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-red), var(--accent-orange));
    z-index: 1001;
    transition: width 0.1s ease;
}

.table-of-contents {
    background: var(--surface-gray);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    border-left: 4px solid var(--accent-orange);
}

.table-of-contents h4 {
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.table-of-contents ul {
    list-style: none;
    padding: 0;
}

.table-of-contents li {
    margin-bottom: 0.5rem;
}

.table-of-contents a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.3s ease;
}

.table-of-contents a:hover {
    color: var(--accent-orange);
}

.article-content {
    line-height: 1.8;
    font-size: 1.125rem;
}

.article-content h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
    font-size: 1.875rem;
}

.article-content h3 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
    font-size: 1.5rem;
}

.article-content h4 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--primary-dark);
    font-size: 1.25rem;
}

.article-content p {
    margin-bottom: 1.5rem;
    color: var(--text-gray);
}

.article-content ul, .article-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.article-content li {
    margin-bottom: 0.5rem;
    color: var(--text-gray);
}

.article-content blockquote {
    background: var(--warm-beige);
    border-left: 4px solid var(--accent-orange);
    padding: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    border-radius: 0 8px 8px 0;
}

.article-content blockquote p {
    margin: 0;
    color: var(--primary-dark);
}

.highlight-box {
    background: var(--surface-gray);
    border: 2px solid var(--accent-yellow);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.highlight-box h4 {
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
}

.highlight-box p {
    margin: 0;
    color: var(--text-gray);
}

.external-link {
    color: var(--accent-orange);
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.3s ease;
}

.external-link:hover {
    color: var(--accent-red);
}

.external-link::after {
    content: " ↗";
    font-size: 0.875em;
    opacity: 0.7;
}

.social-share {
    position: sticky;
    top: 50%;
    left: 2rem;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    z-index: 100;
}

.share-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.share-button.linkedin {
    background: #0077b5;
    color: white;
}

.share-button.twitter {
    background: #1da1f2;
    color: white;
}

.share-button.copy {
    background: var(--accent-orange);
    color: white;
}

.share-button:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.article-cta {
    background: var(--warm-beige);
    border: 2px solid var(--accent-yellow);
    border-radius: 16px;
    padding: 2rem;
    margin: 3rem 0;
    text-align: center;
}

.article-cta h4 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.article-cta p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.article-cta-button {
    background: linear-gradient(135deg, var(--accent-red), var(--accent-orange));
    color: var(--pure-white);
    padding: 1rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.article-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 65, 50, 0.4);
}

/* Responsive Design for Blog Header */
@media (max-width: 768px) {
    .blog-header {
        padding-top: 120px;
    }

    .blog-header-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .newsletter-input {
        flex-direction: column;
        gap: 0.75rem;
        padding: 0.75rem;
    }

    .newsletter-input input,
    .newsletter-input button {
        width: 100%;
    }

    .library-cta-content {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }

    .library-cta-icon {
        margin: 0 auto;
    }

    .library-cta-button {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }

    .container {
        padding: 0 1rem;
    }

    .nav-container {
        padding: 1rem;
        position: relative;
    }

    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: calc(100% + 1px);
        left: 0;
        right: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem 1rem;
        gap: 1rem;
        border-bottom: 1px solid var(--border-light);
        border-radius: 0 0 16px 16px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    .nav-menu.active {
        display: flex;
        animation: slideDown 0.3s ease-out;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav-link {
        padding: 1rem;
        width: 100%;
        text-align: center;
        border-radius: 8px;
        font-size: 1rem;
    }

    .nav-button {
        margin: 1rem auto 0;
        width: fit-content;
    }

    .featured-post {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    .featured-post-image {
        order: -1;
    }

    .category-filters {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }

    .blog-posts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button,
    .cta-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .blog-post-content {
        padding: 2rem 1rem;
    }

    .article-meta {
        flex-direction: column;
        gap: 1rem;
    }

    .social-share {
        position: fixed;
        bottom: 2rem;
        right: 2rem;
        left: auto;
        top: auto;
        transform: none;
        flex-direction: row;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
        padding: 0.75rem;
        border-radius: 25px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    }

    .share-button {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .table-of-contents {
        padding: 1rem;
        margin: 1.5rem 0;
    }

    .article-content {
        font-size: 1rem;
    }

    .article-content h2 {
        font-size: 1.5rem;
        margin-top: 2rem;
    }

    .article-content h3 {
        font-size: 1.25rem;
        margin-top: 1.5rem;
    }
}

@media (max-width: 480px) {
    .newsletter-input {
        flex-direction: column;
        max-width: 250px;
    }

    .newsletter-input input,
    .newsletter-input button {
        width: 100%;
    }

    .post-meta {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }

    .post-stats {
        flex-direction: column;
        gap: 0.5rem;
    }

    .social-share {
        bottom: 1rem;
        right: 1rem;
        padding: 0.5rem;
    }

    .share-button {
        width: 30px;
        height: 30px;
        font-size: 0.875rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-hero {
        padding-top: 120px;
        min-height: 60vh;
    }

    .blog-newsletter-section {
        padding: 1.5rem;
        margin: 1.5rem auto;
    }

    .featured-post {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    .featured-post-image {
        order: -1;
    }

    .category-filters {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }

    .blog-posts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .blog-quick-links {
        flex-direction: column;
        align-items: center;
    }

    .quick-link-button {
        width: 100%;
        max-width: 300px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button,
    .cta-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .blog-post-content {
        padding: 2rem 1rem;
    }

    .article-meta {
        flex-direction: column;
        gap: 1rem;
    }

    .social-share {
        position: fixed;
        bottom: 2rem;
        right: 2rem;
        left: auto;
        top: auto;
        transform: none;
        flex-direction: row;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
        padding: 0.75rem;
        border-radius: 25px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    }

    .share-button {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .table-of-contents {
        padding: 1rem;
        margin: 1.5rem 0;
    }

    .article-content {
        font-size: 1rem;
    }

    .article-content h2 {
        font-size: 1.5rem;
        margin-top: 2rem;
    }

    .article-content h3 {
        font-size: 1.25rem;
        margin-top: 1.5rem;
    }
}

@media (max-width: 480px) {
    .newsletter-input {
        flex-direction: column;
        max-width: 250px;
    }

    .newsletter-input input,
    .newsletter-input button {
        width: 100%;
    }

    .post-meta {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }

    .post-stats {
        flex-direction: column;
        gap: 0.5rem;
    }

    .social-share {
        bottom: 1rem;
        right: 1rem;
        padding: 0.5rem;
    }

    .share-button {
        width: 30px;
        height: 30px;
        font-size: 0.875rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .nav-container {
        padding: 1rem;
        position: relative;
    }

    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: calc(100% + 1px);
        left: 0;
        right: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem 1rem;
        gap: 1rem;
        border-bottom: 1px solid var(--border-light);
        border-radius: 0 0 16px 16px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    .nav-menu.active {
        display: flex;
        animation: slideDown 0.3s ease-out;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav-link {
        padding: 1rem;
        width: 100%;
        text-align: center;
        border-radius: 8px;
        font-size: 1rem;
    }

    .nav-button {
        margin: 1rem auto 0;
        width: fit-content;
    }

    .cta-group {
        flex-direction: column;
        align-items: center;
    }

    .cta-button,
    .cta-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        margin-right: 0;
    }

    .status-badges {
        gap: 0.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .logo-img {
        height: 35px;
    }
    
    .footer-logo-img {
        height: 40px;
    }
}

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

    .nav-container {
        padding: 0.75rem 1rem;
    }

    .cta-button,
    .cta-secondary {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .status-badges {
        flex-direction: column;
        align-items: center;
    }
}

/* =====================================
   FAQ STYLES
   ===================================== */

.faq-item {
    border: 1px solid var(--border-light);
    border-radius: 12px;
    margin-bottom: 1rem;
    background: var(--pure-white);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.faq-item:hover {
    border-color: var(--accent-orange);
    box-shadow: 0 4px 12px rgba(251, 158, 42, 0.1);
    transform: translateY(-1px);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--pure-white);
    transition: all 0.2s ease;
    user-select: none;
}

.faq-question:hover {
    background: var(--warm-beige);
}

.faq-question span:first-child {
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--primary-dark);
    line-height: 1.4;
    padding-right: 1rem;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--accent-orange);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--warm-beige);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item:hover .faq-toggle {
    background: var(--accent-orange);
    color: var(--pure-white);
    transform: rotate(90deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: var(--surface-gray);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem 2rem;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background: var(--accent-orange);
    color: var(--pure-white);
}

.faq-item.active {
    border-color: var(--accent-orange);
    box-shadow: 0 6px 20px rgba(251, 158, 42, 0.15);
}

.faq-answer p {
    margin-bottom: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* FAQ Page Specific Improvements */
.faq-page-header {
    padding: 8rem 0 4rem 0;
    background: linear-gradient(135deg, var(--warm-beige) 0%, var(--surface-gray) 100%);
}

.faq-content-section {
    padding: 4rem 0 6rem 0;
}

.faq-cta-section {
    padding: 4rem 0;
    background: var(--warm-beige);
    margin-top: 4rem;
}

/* Mobile Responsiveness for FAQ */
@media (max-width: 768px) {
    .faq-question {
        padding: 1.25rem 1.5rem;
    }
    
    .faq-question span:first-child {
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.25rem 1.5rem;
    }
    
    .faq-toggle {
        width: 20px;
        height: 20px;
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .faq-question {
        padding: 1rem 1.25rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.25rem 1rem 1.25rem;
    }
    
    .faq-page-header {
        padding: 6rem 0 3rem 0;
    }
    
    .faq-content-section {
        padding: 3rem 0 4rem 0;
    }
}

