/* Import Gruppo Font - must be at the top */
@import url('https://fonts.googleapis.com/css2?family=Gruppo&display=swap');

:root {
    --primary: #2563eb;
    --primary-dark: #1e40af;
    --secondary: #64748b;
    --accent: #fbbf24;
    --success: #10b981;
    --surface: #ffffff;
    --background: #f8fafc;
    --border: #e2e8f0;
    --text-primary: #6b7280;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --blog-primary: #4f46e5;
    --blog-primary-dark: #4338ca;
    --blog-text-primary: #0f172a;
    --blog-text-secondary: #475569;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: var(--accent);
}

/* Hobet Font for Headers */
@font-face {
    font-family: 'Hobet';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/fonts/Hobet.woff2') format('woff2');
}

@font-face {
    font-family: 'Hobet';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('/fonts/Hobet.woff2') format('woff2');
}

@font-face {
    font-family: 'Hobet';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('/fonts/Hobet.woff2') format('woff2');
}

body {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--background);
    color: var(--text-primary);
    line-height: 1.6;
    padding-bottom: 150px; /* Reasonable space for CTA bar */
    margin: 0;
    width: 100%;
    box-sizing: border-box;
}

.blog-page {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.08), transparent 40%), var(--background);
    color: var(--blog-text-primary);
    -webkit-font-smoothing: antialiased;
}

.blog-page main {
    flex: 1;
    padding: 0 0 4rem;
}

.blog-page .breadcrumbs {
    padding: 0.8rem 0 0;
    background: transparent;
}

.blog-page .breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--blog-text-secondary);
}

.blog-page .breadcrumb-current {
    color: var(--blog-text-primary);
    font-weight: 700;
}

.blog-page .content-container {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 1.5rem 3.5rem;
}

.article {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: 0 16px 32px -26px rgba(15, 23, 42, 0.3);
    overflow: hidden;
}

.article-header {
    padding: clamp(2.1rem, 5vw, 2.7rem) clamp(1.8rem, 5vw, 2.4rem) clamp(1.6rem, 5vw, 2rem);
    background: linear-gradient(180deg, rgba(79, 70, 229, 0.08) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-bottom: 1px solid rgba(79, 70, 229, 0.08);
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    align-items: center;
    font-size: 0.88rem;
    color: var(--blog-text-secondary);
    margin-bottom: 1.1rem;
}

.article-meta .category {
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    background: rgba(79, 70, 229, 0.15);
    color: var(--blog-primary-dark);
    font-weight: 700;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.article-title {
    font-size: clamp(2rem, 3.8vw, 2.45rem);
    font-weight: 780;
    margin: 0 0 0.85rem;
    line-height: 1.22;
    color: var(--blog-text-primary);
}

.article-subtitle {
    font-size: 1.02rem;
    color: var(--blog-text-secondary);
    margin: 0;
    max-width: 620px;
    line-height: 1.6;
}

.hero-image-container {
    margin: 1.6rem 0 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 32px -24px rgba(15, 23, 42, 0.28);
}

.hero-image {
    width: 100%;
    display: block;
}

.article-content {
    padding: clamp(2rem, 5vw, 2.5rem) clamp(1.8rem, 5vw, 2.3rem) clamp(2.2rem, 5vw, 2.8rem);
    background: var(--surface);
    font-size: 1rem;
    line-height: 1.68;
    color: #1f2937;
}

.article-content > * + * {
    margin-top: 1.2rem;
}

.article-content h2 {
    font-size: clamp(1.65rem, 3vw, 2rem);
    margin: 2.1rem 0 0.85rem;
    color: #111827;
}

.article-content h3 {
    font-size: clamp(1.32rem, 2.6vw, 1.6rem);
    margin: 1.8rem 0 0.75rem;
    color: var(--blog-text-primary);
}

.article-content h4 {
    font-size: 1.1rem;
    margin: 1.5rem 0 0.65rem;
    color: var(--blog-text-primary);
}

.article-content ul,
.article-content ol {
    margin: 1rem 0 1rem 1.45rem;
    display: grid;
    gap: 0.6rem;
}

.article-content blockquote {
    margin: 1.8rem 0;
    padding: 1.4rem 1.6rem;
    background: rgba(79, 70, 229, 0.12);
    border-left: 3px solid var(--blog-primary);
    border-radius: 0 14px 14px 0;
    color: #312e81;
    font-weight: 600;
    line-height: 1.6;
}

.article-content a {
    color: var(--blog-primary);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px dotted rgba(79, 70, 229, 0.4);
}

.article-content a:hover {
    border-bottom-color: transparent;
}

.article-content img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 16px 28px -24px rgba(15, 23, 42, 0.25);
    margin: 1.2rem 0;
}

@media (max-width: 768px) {
    .blog-page .content-container {
        padding: 0 1.1rem 3rem;
    }

    .article {
        border-radius: 18px;
    }

    .article-header {
        padding: 1.8rem 1.35rem 1.4rem;
    }

    .article-content {
        padding: 1.8rem 1.35rem 2.1rem;
    }
}

/* Article content should match body text font */
/* Apply Gruppo font to ALL headers (H1, H2, H3, H4, H5, H6) */
h1, h2, h3, h4, h5, h6,
.hero-title, .section-title, .page-title, .hero-main-title,
.benefit-title, .article-title {
    font-family: 'Gruppo', 'Hobet', 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif !important;
    font-weight: 900 !important;
}

/* Slider overlay text - Gruppo font */
.slider-label,
.slider-helper-text {
    font-family: 'Gruppo', 'Hobet', 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif !important;
}
    color: #6b7280 !important;
    letter-spacing: 0.05em !important;
}

/* Force tagline to single line on mobile only */
.hero-main-title {
    white-space: nowrap;
    font-size: 1.25rem;
}

@media (min-width: 640px) {
    .hero-main-title {
        font-size: 2rem;
    }
}

@media (min-width: 1024px) {
    .hero-main-title {
        font-size: 2.5rem;
        white-space: normal; /* Allow wrapping on desktop */
    }
}

/* Logo Styling - Shared across all pages */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: #1e293b;
    padding: 0;
    margin: 0;
}

.logo-img {
    height: 60px; /* Fit header height exactly */
    width: auto;
    padding: 0;
    margin: 0;
}

.logo-text {
    font-size: 1.75rem; /* Larger text */
    font-weight: 700;
    color: #1e293b;
    padding: 0;
    margin: 0;
}

/* Header Styling - Shared across all pages */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 60px; /* Consistent header height */
}

/* Header Navigation Links */
.nav a, .nav-buttons a {
    font-family: 'Gruppo', 'Hobet', 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif !important;
    font-weight: 600 !important;
    font-size: 0.875rem !important;
    letter-spacing: 0.05em !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
}

.nav a:hover, .nav-buttons a:hover {
    color: var(--primary) !important;
}

/* Breadcrumb Styling - Shared across all pages */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-family: 'Gruppo', 'Hobet', 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #64748b;
    margin-bottom: 1rem;
}

.breadcrumb a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s ease;
    font-family: 'Gruppo', 'Hobet', 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
}

.breadcrumb a:hover {
    color: #2563eb;
}

.breadcrumb-separator {
    color: #94a3b8;
    font-family: 'Gruppo', 'Hobet', 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Article Meta Styling - Shared across all pages */


/* Override for paragraph text - ensure it uses Nunito */
p.font-sans,
.font-sans {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif !important;
}

/* Ensure all navigation elements use Nunito font */
.header, .nav, .nav a, .mobile-menu-nav, .mobile-menu-nav a, 
.breadcrumb-nav, .breadcrumb-nav a, header, nav {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 0.75rem;
}

/* Mobile container adjustments */
@media (max-width: 768px) {
    .container {
        padding: 0;
        width: 100%;
        max-width: 100%;
    }
}


.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 60px;
}


.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav a {
    font-weight: 500;
    color: #374151;
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 1.1rem;
}

.nav a:hover, .nav a.active {
    color: var(--primary);
}

.nav-buttons {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

/* Unified Button Styling - All buttons use consistent base styling */
.btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 0.5rem !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
    font-size: 0.875rem !important;
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
    white-space: nowrap !important;
    min-height: 44px !important; /* Touch-friendly */
    border: none !important;
    cursor: pointer !important;
    letter-spacing: 0.02em !important;
}

/* Button Variants */
.btn-ghost, .cta-btn-secondary {
    background: transparent !important;
    color: var(--text-secondary) !important;
    border: 2px solid var(--border) !important;
}

.btn-ghost:hover, .cta-btn-secondary:hover {
    background: var(--background) !important;
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}

.btn-wizard, .cta-btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #3b82f6 100%) !important;
    color: white !important;
    box-shadow: var(--shadow-sm) !important;
}

.btn-wizard:hover, .cta-btn-primary:hover {
    transform: translateY(-1px) !important;
    box-shadow: var(--shadow-md) !important;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 1rem 0;
    text-align: center;
}

.hero-title {
    font-size: 2rem;
    font-weight: -20 !important;
    color: #6b7280 !important;
    margin-bottom: 0.25rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-heading {
    text-align: center;
    margin: clamp(2rem, 5vh, 3.5rem) auto 2rem;
}

.section-heading h2 {
    font-size: clamp(1.9rem, 4vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
}

.section-heading p {
    color: var(--text-secondary);
    max-width: 620px;
    margin: 0.75rem auto 0;
    font-size: 1rem;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: clamp(1.5rem, 3vw, 2.5rem);
}

.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: clamp(1.8rem, 3vw, 2.4rem);
    box-shadow: var(--shadow-sm);
}

.card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.card p {
    color: var(--text-secondary);
    font-size: 0.96rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    margin: clamp(2rem, 5vh, 3rem) 0;
}

.stat-card {
    background: var(--surface-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1.5rem;
    text-align: center;
}

.stat-card .value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 0.35rem;
}

.stat-card .label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.cta-banner {
    margin: clamp(2.5rem, 6vh, 4rem) 0;
    background: linear-gradient(120deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: #f8fbff;
    padding: clamp(2.4rem, 5vw, 3.5rem);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.cta-banner h2 {
    font-size: clamp(1.8rem, 4vw, 2.3rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.cta-banner p {
    font-size: 1.05rem;
    max-width: 540px;
    margin: 0 auto 1.5rem;
}

.list {
    margin: 1.25rem 0 1.75rem 1.25rem;
    color: var(--text-secondary);
    display: grid;
    gap: 0.6rem;
}

.list li {
    font-size: 0.95rem;
}

.table-wrapper {
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--surface);
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table th,
.table td {
    padding: 0.9rem 1rem;
    text-align: left;
    font-size: 0.92rem;
}

.table thead th {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.table tbody tr + tr {
    border-top: 1px solid var(--border);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer {
    margin-top: clamp(2.5rem, 6vh, 4rem);
    padding: 2.25rem 0;
    border-top: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-align: center;
}

.footer a:hover {
    color: var(--accent);
}

/* Breadcrumbs */
.breadcrumbs {
    background: rgba(248, 250, 252, 0.8);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 0;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-family: 'Gruppo', 'Hobet', 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.2;
    flex-wrap: wrap;
}

.breadcrumb-nav a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
    font-family: 'Gruppo', 'Hobet', 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
}

.breadcrumb-nav a:hover {
    color: var(--primary);
}

.breadcrumb-separator {
    color: var(--text-muted);
    font-family: 'Gruppo', 'Hobet', 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
}

.breadcrumb-current {
    color: var(--text-primary);
    font-weight: 600;
    font-family: 'Gruppo', 'Hobet', 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
}

@media (max-width: 900px) {
    .nav {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 0.75rem 0;
    }

    .hero-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 640px) {
    .header-content {
        min-height: 64px;
    }

    .logo-img {
        height: 64px; /* Fit mobile header height exactly */
        width: auto;
        padding: 0;
        margin: 0;
    }

    .hero {
        padding: 2.1rem;
    }
}

/* Pricing Section */
.pricing-section {
    padding: 0.75rem 0 4rem;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 0;
}

.pricing-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 1rem;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 320px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: scale(1.02);
}

.pricing-card.featured:hover {
    transform: scale(1.02) translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.pricing-badge {
    position: absolute;
    top: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 50%, #b91c1c 100%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: var(--shadow-md);
}

.pricing-title {
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Gruppo', 'Hobet', 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif !important;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    text-align: center;
}

.pricing-price {
    font-size: 1.875rem;
    font-weight: 800;
    font-family: 'Gruppo', 'Hobet', 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif !important;
    color: var(--primary);
    text-align: center;
    line-height: 1;
    margin-bottom: 0.125rem;
}

.pricing-period {
    font-size: 0.8rem;
    font-family: 'Gruppo', 'Hobet', 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif !important;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 1rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
    font-size: 0.8rem;
    line-height: 1.4;
}

.pricing-feature-icon {
    color: var(--success);
    font-weight: 700;
    font-size: 1rem;
    margin-top: 0.125rem;
}

.pricing-feature-text {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.5;
}

.pricing-feature-text strong {
    color: var(--primary);
    font-weight: 600;
}

.pricing-button {
    width: 100%;
    padding: 0.625rem 1.25rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    font-family: 'Gruppo', 'Hobet', 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif !important;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.pricing-button-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #3b82f6 100%);
    color: white;
    box-shadow: var(--shadow-md);
}

.pricing-button-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.pricing-button-secondary {
    background: var(--surface);
    color: var(--text-primary);
    border: 2px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.pricing-button-secondary:hover {
    background: var(--background);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Responsive Design for Pricing */
@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .pricing-card {
        padding: 1rem;
        min-height: auto;
    }

    .pricing-section {
        padding: 1rem 0 4rem;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-4px);
    }
}

@media (max-width: 480px) {
    .pricing-card {
        padding: 1.5rem;
    }
}

/* Permanent CTA Bar */
.permanent-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 50%, #3b82f6 100%);
    color: white;
    padding: 1rem;
    box-shadow: 0 -4px 25px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    backdrop-filter: blur(10px);
    margin: 0;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.cta-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.cta-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.cta-value-prop {
    font-family: 'Nunito', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
    font-size: 0.875rem;
    font-weight: 500 !important;
    line-height: 1.2;
}

.cta-highlight {
    font-family: 'Gruppo', 'Hobet', 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif !important;
    color: white;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.cta-button-text .cta-highlight {
    font-size: 0.6rem;
    font-weight: 600;
    line-height: 1.2;
}

.cta-buttons {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

/* CTA Button Specific Styling for Dark Background */
.cta-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 0.5rem !important;
    font-weight: 800 !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
    font-size: 1rem !important;
    font-family: 'Gruppo', 'Hobet', 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif !important;
    white-space: nowrap !important;
    min-height: 48px !important;
    border: none !important;
    cursor: pointer !important;
    letter-spacing: 0.05em !important;
}

.cta-btn-primary {
    background: white !important;
    color: #1e40af !important;
    flex-direction: column !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
}

.cta-btn-primary:hover {
    background: #f8fafc !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
}

.cta-btn-primary small {
    font-size: 0.625rem !important;
    opacity: 0.8 !important;
    margin-top: 0.125rem !important;
}

.cta-btn-secondary {
    background: transparent !important;
    color: white !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
}

/* Mobile Menu Styles */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: #1e293b;
    position: relative;
    z-index: 1102;
}

.mobile-menu-btn svg {
    width: 24px;
    height: 24px;
    transition: opacity 0.2s ease;
}

.mobile-menu-btn .close-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
}

.mobile-menu-btn.active .menu-icon {
    opacity: 0;
}

.mobile-menu-btn.active .close-icon {
    opacity: 1;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-menu-overlay.active .mobile-menu {
    transform: translateX(0);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: white;
    padding: 2rem 1.5rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 1101;
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-header {
    margin: 0;
    padding: 5px 0;
    border-bottom: 1px solid #e2e8f0;
}

.mobile-menu-logo {
    height: 120px;
    width: auto;
    display: block;
    margin: 0 auto;
    padding: 0;
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mobile-menu-link {
    display: block;
    padding: 1rem 0;
    color: #1f2937;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    border-bottom: 1px solid #e5e7eb;
    transition: all 0.2s ease;
    font-family: 'Gruppo', 'Hobet', 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif !important;
}

.mobile-menu-link:hover {
    color: #6366f1;
    padding-left: 0.5rem;
}

.mobile-menu-link.primary {
    background: #6366f1;
    color: white;
    border-radius: 0.5rem;
    padding: 1rem 1.5rem;
    text-align: center;
    margin-bottom: 1rem;
    border: none;
    font-weight: 600;
}

.mobile-menu-link.primary:hover {
    background: #5b21b6;
    color: white;
}

.mobile-login-link {
    display: none;
    color: #374151;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    margin-right: 0.5rem;
    transition: color 0.2s ease;
    font-family: 'Gruppo', 'Hobet', 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif !important;
}

.mobile-login-link:hover {
    color: #475569;
}

@media (max-width: 768px) {
    body {
        padding-bottom: 100px; /* Reduced space for mobile CTA bar */
    }
    
    .nav {
        display: none;
    }
    
    .nav-buttons {
        display: none !important;
    }
    
    .mobile-menu-btn {
        display: block !important;
    }
    
    .mobile-login-link {
        display: inline-block;
    }
    
    .breadcrumb-nav {
        line-height: 1.1;
        font-size: 0.8rem;
    }
    
    .permanent-cta-bar {
        padding: 0.75rem 1rem; /* Reduced padding for mobile */
        margin: 0;
        width: 100%;
        box-sizing: border-box;
        left: 0;
        right: 0;
        min-height: 80px; /* Ensure minimum height */
    }
    
    body {
        padding-bottom: 200px; /* Extra space for mobile CTA bar */
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem; /* Reduced gap */
        max-width: 100%;
        padding: 0 0.5rem;
        box-sizing: border-box;
        width: 100%;
        overflow-x: hidden;
    }
    
    .cta-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .cta-btn {
        flex: 1;
        max-width: 200px;
        padding: 0.75rem 1.25rem; /* Slightly increased padding */
        font-size: 0.9rem; /* Larger font than before */
        font-weight: 800 !important; /* Bold text */
    }
    
    /* Hide secondary button on mobile */
    .cta-btn-secondary {
        display: none !important;
    }
}

@media (max-width: 480px) {
    body {
        padding-bottom: 80px; /* Minimal space for very small screens */
    }
    
    /* Extra bottom padding for blog page on mobile */
    body.blog-page {
        padding-bottom: 280px; /* Extra space for blog content */
    }
    
    .permanent-cta-bar {
        padding: 0.5rem 0.75rem; /* Even more compact for small screens */
        margin: 0;
        width: 100%;
        box-sizing: border-box;
        left: 0;
        right: 0;
        min-height: 70px; /* Ensure minimum height for small screens */
    }
    
    body {
        padding-bottom: 220px; /* Extra space for small screen CTA bar */
    }
    
    .cta-content {
        gap: 0.5rem; /* Minimal gap for small screens */
        max-width: 100%;
        padding: 0 0.25rem;
        box-sizing: border-box;
        width: 100%;
        overflow-x: hidden;
    }
    
    .cta-value-prop {
        font-family: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif !important;
        font-size: 0.75rem;
        line-height: 1.1;
        font-weight: 500;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
        text-align: center;
        hyphens: auto;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-btn {
        width: 100%;
        max-width: none;
        padding: 0.75rem 1rem; /* Increased padding */
        font-size: 0.85rem; /* Larger font than before */
        font-weight: 800 !important; /* Bold text */
    }
}
/* Cache busted at 20250926204942 */
