/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #f8fafc;
    background-color: #0f172a;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

code {
    background-color: #1e293b;
    padding: 0.2rem 0.4rem;
    border-radius: 0.25rem;
    font-family: 'SF Mono', 'Monaco', 'Cascadia Code', monospace;
    font-size: 0.9em;
    color: #cbd5e1;
}

/* Inline Logo Styles */
.inline-logo {
    width: 1.2em;
    height: 1.2em;
    vertical-align: text-bottom;
    margin-left: 0.3em;
}

.feature-icon-img {
    width: 48px;
    height: 48px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    user-select: none;
}

.nav-logo {
    width: 32px;
    height: 32px;
}

.nav-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #10a37f;
}

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

.nav-link {
    color: #cbd5e1;
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #10a37f;
    border-bottom-color: #10a37f;
}

.nav-mobile {
    display: none;
}

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

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background-color: #f8fafc;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #f8fafc;
}

.hero-title .highlight {
    background: linear-gradient(135deg, #10a37f, #0d9488);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, #10a37f, #0f766e);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0d9488, #0e7490);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.btn-secondary {
    background: white;
    color: #3b82f6;
    border-color: #e2e8f0;
}

.btn-secondary:hover {
    background: #f8fafc;
    border-color: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

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

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

.badge {
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #cbd5e1;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.badge-version {
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #93c5fd;
}

.badge-new {
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #86efac;
}

.hero-demo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.demo-browser {
    background: #1e293b;
    border-radius: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    width: 100%;
    max-width: 500px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.browser-header {
    background: #0f172a;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.browser-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #ef4444; }
.dot.yellow { background: #f59e0b; }
.dot.green { background: #10b981; }

.browser-url {
    background: #1e293b;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    color: #cbd5e1;
    flex: 1;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.browser-content {
    aspect-ratio: 16/10;
    background: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 0.875rem;
}

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

/* Section Styles */
section {
    padding: 5rem 0;
}

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

.section-title {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #f8fafc;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features {
    background: #0f172a;
}

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

.feature-card {
    background: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(16, 163, 127, 0.2);
    border-color: #10a37f;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #f8fafc;
}

.feature-description {
    color: #cbd5e1;
    line-height: 1.6;
}

/* How it Works Section */
.how-it-works {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #10a37f, #0d9488);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #f8fafc;
}

.step-description {
    color: #cbd5e1;
    line-height: 1.6;
}

.manage-pins {
    background: #1e293b;
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.manage-title {
    text-align: center;
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: #f8fafc;
}

.manage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.manage-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #0f172a;
    border-radius: 0.75rem;
    color: #cbd5e1;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.manage-icon {
    font-size: 1.5rem;
}

/* Use Cases Section */
.use-cases {
    background: #0f172a;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.use-case {
    text-align: center;
    padding: 2rem 1rem;
}

.use-case-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.use-case-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #f8fafc;
}

.use-case-description {
    color: #cbd5e1;
    line-height: 1.6;
}

/* Install Section */
.install {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
}

.install .section-title {
    color: white;
}

.install .section-subtitle {
    color: #cbd5e1;
}

.install-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.install-option {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    transform: translateY(0);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 240px;
}

.install-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.install-option.primary {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

.install-option.primary:hover {
    transform: scale(1.02) translateY(-2px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.25);
}

/* Browser-specific styling */
.install-option[data-browser="firefox"].primary {
    background: rgba(255, 140, 0, 0.1);
    border-color: rgba(255, 140, 0, 0.3);
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.15);
}

.install-option[data-browser="firefox"].primary:hover {
    box-shadow: 0 12px 35px rgba(255, 140, 0, 0.25);
}

.install-option[data-browser="source"].primary {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.15);
}

.install-option[data-browser="source"].primary:hover {
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.25);
}

.install-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    min-height: 60px;
}

.install-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    text-align: center;
    line-height: 1.3;
}



.install-description {
    color: #cbd5e1;
    margin-bottom: auto;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Install buttons specific styling */
.install-option .btn {
    margin-top: auto;
    width: 100%;
    justify-content: center;
    min-height: 56px;
    white-space: nowrap;
}

.coming-soon {
    opacity: 0.7;
    cursor: not-allowed;
}

.install-steps {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.steps-content {
    transition: all 0.3s ease;
}

.steps-alt {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.steps-alt p {
    color: #94a3b8;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.safari-notice-inline {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.safari-notice-inline p {
    color: #fed7aa;
    margin: 0;
    font-size: 0.9rem;
}

.steps-title {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.steps-list {
    list-style: none;
    counter-reset: step-counter;
}

.steps-list li {
    counter-increment: step-counter;
    padding: 0.75rem 0;
    color: #cbd5e1;
    position: relative;
    padding-left: 3rem;
}

.steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 2rem;
    height: 2rem;
    background: #3b82f6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
}

.steps-list a {
    color: #60a5fa;
}

.steps-list a:hover {
    color: #93c5fd;
}

/* Footer */
.footer {
    background: #0f172a;
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo {
    width: 40px;
    height: 40px;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
}

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

.footer-heading {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-link {
    display: block;
    color: #cbd5e1;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #60a5fa;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 2rem;
    text-align: center;
}

.footer-text {
    color: #94a3b8;
    margin-bottom: 0.5rem;
}

.footer-text a {
    color: #60a5fa;
}

.footer-text a:hover {
    color: #93c5fd;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-mobile {
        display: block;
    }
    
    .hero {
        padding: 6rem 0 4rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.125rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .manage-grid {
        grid-template-columns: 1fr;
    }
    
    .install-options {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .manage-pins {
        padding: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Safari Notice */
.safari-notice {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.safari-notice .notice-content {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.safari-notice .notice-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.safari-notice .notice-text {
    flex: 1;
    line-height: 1.5;
}

.safari-notice .notice-text strong {
    font-weight: 600;
    margin-bottom: 0.25rem;
    display: block;
}

/* Browser-specific hero CTA animations */
.hero-buttons .btn-primary {
    transition: all 0.3s ease;
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.25);
}

/* Enhanced install option ordering for browser detection */
.install-options {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-items: stretch;
}

.install-option {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    width: 100%;
}

@media (max-width: 768px) {
    .install-options {
        flex-direction: column;
        align-items: center;
    }
    
    .install-option {
        width: 100%;
        max-width: none;
        min-height: 260px;
    }
    
    .install-header {
        min-height: 50px;
    }
    
    .install-title {
        font-size: 1.3rem;
    }
}

/* Blog Styles */
.blog-section {
    background: #0f172a;
    padding: 4rem 0;
}

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

.blog-card {
    background: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(16, 163, 127, 0.2);
    border-color: #10a37f;
}

.blog-card.featured {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border: 1px solid rgba(59, 130, 246, 0.3);
    position: relative;
}

.blog-card.featured::before {
    content: '✨ Latest';
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.blog-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.blog-tag {
    background: rgba(16, 163, 127, 0.1);
    color: #10a37f;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-tag.release-tag {
    background: rgba(59, 130, 246, 0.2);
    color: #93c5fd;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.blog-date {
    color: #94a3b8;
    font-size: 0.875rem;
}

.blog-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #f8fafc;
    line-height: 1.3;
}

.blog-title a {
    color: #f8fafc;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: #10a37f;
}

.blog-excerpt {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.blog-read-more {
    color: #10a37f;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.blog-read-more:hover {
    gap: 0.75rem;
}

/* Blog Article Styles */
.blog-article {
    background: #0f172a;
}

.article-header {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    padding: 8rem 0 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.article-tag {
    background: rgba(16, 163, 127, 0.1);
    color: #10a37f;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.article-date {
    color: #94a3b8;
    font-size: 0.875rem;
}

.article-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #f8fafc;
    line-height: 1.2;
}

.article-subtitle {
    font-size: 1.25rem;
    color: #cbd5e1;
    line-height: 1.6;
}

.article-content {
    padding: 4rem 0;
}

.article-content p {
    margin-bottom: 1.5rem;
    color: #cbd5e1;
    line-height: 1.8;
}

.article-content p.lead {
    font-size: 1.25rem;
    color: #e2e8f0;
    margin-bottom: 2rem;
}

.article-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #f8fafc;
}

.article-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #f8fafc;
}

.article-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #e2e8f0;
}

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

.article-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.article-content strong {
    color: #f8fafc;
    font-weight: 600;
}

.article-content a {
    color: #10a37f;
    text-decoration: underline;
}

.article-content a:hover {
    color: #0d9488;
}

.article-content blockquote {
    border-left: 4px solid #10a37f;
    padding-left: 1.5rem;
    margin: 2rem 0;
    color: #94a3b8;
    font-style: italic;
}

.article-content hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 3rem 0;
}

/* Callout Boxes */
.callout {
    background: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin: 2rem 0;
}

.callout h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.callout p {
    margin-bottom: 0.75rem;
}

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

.callout-info {
    background: rgba(59, 130, 246, 0.05);
    border-color: rgba(59, 130, 246, 0.2);
}

.callout-info h3 {
    color: #60a5fa;
}

.callout-success {
    background: rgba(16, 163, 127, 0.05);
    border-color: rgba(16, 163, 127, 0.2);
}

.callout-success h3 {
    color: #10a37f;
}

.callout-warning {
    background: rgba(245, 158, 11, 0.05);
    border-color: rgba(245, 158, 11, 0.2);
}

.callout-warning h3 {
    color: #fbbf24;
}

/* Buttons inside callouts */
.callout .btn-primary {
    background: linear-gradient(135deg, #10a37f, #0f766e);
    color: white !important;
    display: inline-block;
    margin-top: 1rem;
}

.callout .btn-primary:hover {
    background: linear-gradient(135deg, #0d9488, #0e7490);
    color: white !important;
}

/* Use Case Examples */
.use-case-example {
    background: #1e293b;
    border-left: 4px solid #10a37f;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0.5rem;
}

.use-case-example p {
    margin-bottom: 0.75rem;
}

.use-case-example p:last-child {
    margin-bottom: 0;
}

.use-case-example .example-context {
    color: #94a3b8;
    font-size: 0.95rem;
    font-style: italic;
}

/* Article CTA */
.article-cta {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border: 2px solid #10a37f;
    border-radius: 1rem;
    padding: 2.5rem;
    margin: 3rem 0;
    text-align: center;
    box-shadow: 0 10px 30px rgba(16, 163, 127, 0.2);
}

.article-cta h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: #ffffff;
    font-size: 1.75rem;
    font-weight: 700;
}

.article-cta p {
    margin-bottom: 1.5rem;
    color: #e2e8f0;
    font-size: 1.125rem;
}

.article-cta .btn {
    font-weight: 600;
}

.article-cta .btn-primary {
    background: #10a37f;
    color: #ffffff;
    border: 2px solid #10a37f;
}

.article-cta .btn-primary:hover {
    background: #0d9488;
    border-color: #0d9488;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 163, 127, 0.4);
}

.article-cta .btn-secondary {
    background: #1e293b;
    color: #10a37f;
    border: 2px solid #10a37f;
}

.article-cta .btn-secondary:hover {
    background: #10a37f;
    color: #ffffff;
    border-color: #10a37f;
}

/* Responsive Blog Styles */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .article-title {
        font-size: 2rem;
    }
    
    .article-content h2 {
        font-size: 1.5rem;
    }
    
    .article-content h3 {
        font-size: 1.25rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
    
    .safari-notice {
        transition: none !important;
        transform: none !important;
    }
}