/* SmartLink Basics - Global Styles */
/* Brand: Outfit font, Smart Navy, Clarity Blue, Momentum Green */

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

:root {
    /* Primary Brand Colors */
    --smart-navy: #0a4269;
    --clarity-blue: #7dc9ff;
    --momentum-green: #3dd377;
    
    /* Supporting Colors */
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --dark-gray: #495057;
    --text-dark: #212529;
    
    /* Semantic */
    --primary: #0a4269;
    --primary-dark: #083654;
    --accent: #7dc9ff;
    --success: #3dd377;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 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);
    
    /* Radius */
    --radius: 8px;
    --radius-lg: 12px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    line-height: 1.2;
    font-weight: 700;
    color: var(--smart-navy);
}

h1 { 
    font-size: clamp(2.25rem, 5vw, 3.25rem); 
    font-weight: 700;
    letter-spacing: -0.02em;
}
h2 { font-size: clamp(1.5rem, 4vw, 2.25rem); }
h3 { font-size: 1.375rem; }
h4 { font-size: 1.125rem; }

p { margin-bottom: 1rem; }

a {
    color: var(--smart-navy);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover { color: var(--clarity-blue); }

/* ==========================================================================
   HEADER
   ========================================================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    gap: 0.75rem;
}

.logo-icon img {
    height: 44px;
    width: auto;
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--smart-navy);
    white-space: nowrap;
}

.nav-center {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--dark-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active { color: var(--smart-navy); }

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.social-links {
    display: flex;
    gap: 0.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: var(--dark-gray);
    background: var(--light-gray);
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--white);
    background: var(--smart-navy);
}

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

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: 0.3s;
    border-radius: 2px;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--smart-navy);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-1px);
}

.btn-secondary {
    background: var(--momentum-green);
    color: var(--smart-navy);
    font-weight: 700;
}

.btn-secondary:hover {
    background: #2fc066;
    color: var(--smart-navy);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--smart-navy);
    border: 2px solid var(--smart-navy);
}

.btn-outline:hover {
    background: var(--smart-navy);
    color: var(--white);
}

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

/* ==========================================================================
   HERO SECTIONS
   ========================================================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #212529 0%, #0a4269 50%, #0a4269 100%);
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(125, 201, 255, 0.15);
    color: var(--clarity-blue);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(125, 201, 255, 0.3);
}

.hero h1 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 600px;
}

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

.hero .btn-primary {
    background: var(--white);
    color: var(--smart-navy);
}

.hero .btn-primary:hover {
    background: var(--light-gray);
    color: var(--smart-navy);
}

.hero .btn-outline {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    color: var(--white);
}

.hero-stats {
    display: flex;
    justify-content: flex-start;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

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

.hero-stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--clarity-blue);
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.hero-stat-label {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Page Header (smaller hero for inner pages) */
.page-header {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, #212529 0%, #0a4269 50%, #0a4269 100%);
    color: var(--white);
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.1;
}

.page-header p {
    font-size: 1.125rem;
    opacity: 0.9;
    max-width: 600px;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.breadcrumb a { color: var(--clarity-blue); }
.breadcrumb a:hover { text-decoration: underline; }

/* ==========================================================================
   SECTIONS
   ========================================================================== */

.section { padding: 5rem 0; }

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

.section-tag {
    display: inline-block;
    background: rgba(125, 201, 255, 0.15);
    color: var(--smart-navy);
    padding: 0.375rem 1rem;
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.section-header h2 { margin-bottom: 1rem; }

.section-header p {
    font-size: 1.125rem;
    color: var(--dark-gray);
    line-height: 1.7;
}

/* ==========================================================================
   SERVICE CARDS
   ========================================================================== */

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

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--smart-navy), var(--clarity-blue));
}

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

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: rgba(10, 66, 105, 0.1);
    color: var(--smart-navy);
}

.service-icon svg {
    width: 32px;
    height: 32px;
}

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

.service-card > p {
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
}

.service-features li svg {
    width: 20px;
    height: 20px;
    color: var(--momentum-green);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Process Section */
.process-section {
    background: var(--smart-navy);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(125, 201, 255, 0.1) 0%, transparent 50%);
}

.process-section .section-tag {
    background: rgba(125, 201, 255, 0.15);
    color: var(--clarity-blue);
}

.process-section .section-header h2 { color: var(--white); }
.process-section .section-header p { color: rgba(255, 255, 255, 0.8); }

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.process-step { text-align: center; }

.step-number {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    background: rgba(125, 201, 255, 0.1);
    border: 2px solid var(--clarity-blue);
    border-radius: 50%;
    color: var(--clarity-blue);
    font-size: 1.75rem;
    font-weight: 700;
}

.process-step h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--white);
}

.process-step p {
    font-size: 0.9375rem;
    opacity: 0.8;
    line-height: 1.6;
}

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

.benefit-card {
    text-align: center;
    padding: 2rem;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--smart-navy), var(--clarity-blue));
    color: var(--white);
}

.benefit-icon svg {
    width: 36px;
    height: 36px;
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.benefit-card p {
    font-size: 0.9375rem;
    color: var(--dark-gray);
    line-height: 1.6;
}

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--light-gray);
    border-radius: var(--radius-lg);
    padding: 1.5rem 2rem;
}

.faq-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.faq-item p {
    font-size: 0.9375rem;
    color: var(--dark-gray);
    line-height: 1.7;
    margin: 0;
}

/* ==========================================================================
   BLOG STYLES
   ========================================================================== */

/* Filter Bar */
.filter-bar {
    background: var(--white);
    border-bottom: 1px solid var(--medium-gray);
    padding: 1.25rem 0;
    position: sticky;
    top: 80px;
    z-index: 100;
}

.blog-filters {
    background: var(--white);
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--medium-gray);
}

.filter-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.625rem 1.25rem;
    border: 2px solid var(--medium-gray);
    border-radius: var(--radius);
    background: var(--white);
    font-family: 'Outfit', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--dark-gray);
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-btn:hover {
    border-color: var(--smart-navy);
    color: var(--smart-navy);
}

.filter-btn.active {
    background: var(--smart-navy);
    border-color: var(--smart-navy);
    color: var(--white);
}

/* Blog Listing */
.blog-listing {
    padding: 3rem 0;
    background: var(--light-gray);
}

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

.post-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.post-card-header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.75rem;
    min-height: 180px;
    color: var(--white);
    text-decoration: none;
    position: relative;
}

.post-card-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M20 20h20v20H20z'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.post-card-category {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: var(--clarity-blue);
    padding: 0.375rem 0.75rem;
    border-radius: 100px;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    align-self: flex-start;
    position: relative;
    z-index: 1;
}

.post-card-title {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--white);
    margin: 0;
    position: relative;
    z-index: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-card-content {
    padding: 1.25rem 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.post-excerpt {
    font-size: 0.875rem;
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--medium-gray);
}

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

.read-more {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--smart-navy);
}

.read-more:hover { color: var(--clarity-blue); }

/* Legacy category badge (for other uses) */
.post-category {
    background: rgba(125, 201, 255, 0.15);
    color: var(--smart-navy);
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.post-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.8125rem;
    color: var(--dark-gray);
}

/* Load More */
.load-more-container {
    text-align: center;
    padding: 2rem 0;
}

/* Loading Spinner */
.loading-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    grid-column: 1 / -1;
}

.spinner {
    width: 48px;
    height: 48px;
    border: 3px solid var(--medium-gray);
    border-top-color: var(--smart-navy);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

.loading-spinner p {
    margin-top: 1rem;
    color: var(--dark-gray);
}

/* ==========================================================================
   SINGLE POST STYLES
   ========================================================================== */

.post-container { min-height: 60vh; }

.post-header {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, #212529 0%, #0a4269 50%, #0a4269 100%);
    color: var(--white);
}

.post-meta-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.back-link {
    color: var(--clarity-blue);
    font-weight: 500;
}

.back-link:hover { text-decoration: underline; }

.post-category-tag {
    background: rgba(125, 201, 255, 0.2);
    color: var(--clarity-blue);
    padding: 0.375rem 1rem;
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.post-title {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 2rem;
    font-size: 0.9375rem;
    opacity: 0.9;
}

.post-content {
    padding: 3rem 0 4rem;
}

.post-content h2 {
    font-size: 1.75rem;
    margin: 2.5rem 0 1.25rem;
}

.post-content h3 {
    font-size: 1.375rem;
    margin: 2rem 0 1rem;
}

.post-content p {
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.post-content ul,
.post-content ol {
    margin: 0 0 1.5rem 1.5rem;
    line-height: 1.8;
}

.post-content li { margin-bottom: 0.5rem; }

.post-content blockquote {
    border-left: 4px solid var(--clarity-blue);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--dark-gray);
}

.post-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.9375rem;
}

.post-content th,
.post-content td {
    padding: 1rem;
    text-align: left;
    border: 1px solid var(--medium-gray);
}

.post-content th {
    background: var(--smart-navy);
    color: var(--white);
    font-weight: 600;
}

.post-content tr:nth-child(even) { background: var(--light-gray); }

.post-footer {
    padding: 2rem 0;
    border-top: 1px solid var(--medium-gray);
}

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

.tag {
    background: var(--light-gray);
    color: var(--dark-gray);
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius);
    font-size: 0.8125rem;
    font-weight: 500;
}

.post-share {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.post-share span {
    font-weight: 600;
    color: var(--smart-navy);
}

.share-btn {
    padding: 0.5rem 1rem;
    background: var(--light-gray);
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 500;
}

.share-btn:hover {
    background: var(--smart-navy);
    color: var(--white);
}

/* Related Posts */
.related-posts {
    padding: 4rem 0;
    background: var(--light-gray);
}

.related-posts h2 {
    text-align: center;
    margin-bottom: 2rem;
}

/* ==========================================================================
   FORMS
   ========================================================================== */

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

.form-label {
    display: block;
    font-weight: 600;
    color: var(--smart-navy);
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--medium-gray);
    border-radius: var(--radius);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    transition: border-color 0.2s ease;
    background: var(--white);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--smart-navy);
}

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

/* ==========================================================================
   CTA SECTION
   ========================================================================== */

.cta-section {
    padding: 5rem 0;
    background: var(--light-gray);
}

.cta-card {
    background: linear-gradient(135deg, #0a4269 0%, #3dd377 100%);
    border-radius: var(--radius-lg);
    padding: 4rem;
    text-align: center;
    color: var(--white);
}

.cta-card h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-card p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-card .btn-primary {
    background: var(--white);
    color: var(--smart-navy);
    padding: 1rem 2rem;
    font-size: 1rem;
}

.cta-card .btn-primary:hover {
    background: var(--light-gray);
    color: var(--smart-navy);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
    background: var(--smart-navy);
    color: var(--white);
    padding: 4rem 0 2rem;
}

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

.footer-brand .logo-text { color: var(--white); }

.footer-brand p {
    margin-top: 1rem;
    opacity: 0.8;
    font-size: 0.9375rem;
    line-height: 1.7;
}

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

.footer-links { list-style: none; }

.footer-links li { margin-bottom: 0.75rem; }

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
    transition: color 0.3s ease;
}

.footer-links a:hover { color: var(--momentum-green); }

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    opacity: 0.8;
}

.footer-bottom a {
    color: inherit;
    margin-left: 1.5rem;
}

.footer-bottom a:hover { color: var(--momentum-green); }

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */

.bg-light { background: var(--light-gray); }
.text-center { text-align: center; }

.no-posts,
.error-message {
    text-align: center;
    padding: 4rem 2rem;
    grid-column: 1 / -1;
}

.error-page {
    text-align: center;
    padding: 8rem 2rem;
}

.error-page h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1024px) {
    .services-grid { grid-template-columns: 1fr; }
    .posts-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-center { display: none; }
    .mobile-menu-btn { display: flex; }
    .nav-right .social-links { display: none; }
    .posts-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
    
    .hero {
        min-height: auto;
        padding: 140px 0 60px;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .hero-stat { flex: 0 0 calc(50% - 0.75rem); }
    
    .cta-card { padding: 2.5rem 1.5rem; }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-bottom a {
        margin-left: 0;
        margin: 0 0.75rem;
    }
}

@media (max-width: 640px) {
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-stat { flex: none; }
    
    .post-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .filter-buttons { justify-content: center; }
}
