/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    max-width: 1400px;
    margin: 0 auto;
    background: #ffffff;
}

/* Header */
.header {
    padding: 2rem 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #6b7280;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.nav-link:hover,
.nav-link.active {
    color: #14b8a6;
    background: rgba(20, 184, 166, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.5rem;
    color: #1f2937;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.logo:hover {
    opacity: 0.8;
}

.logo-icon {
    font-size: 2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo-text {
    background: linear-gradient(45deg, #14b8a6, #0d9488);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Main content */
.main-content {
    flex: 1;
    padding: 2rem;
}

.hero-section {
    text-align: center;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding: 4rem 0;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 3rem;
    font-weight: 400;
    animation: fadeInUp 1s ease-out 0.2s both;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Section */
.cta-section {
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out 0.4s both;
    scroll-margin-top: 120px; /* Add space for fixed header when jumping to this section */
}

.email-signup {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto 1rem;
    background: #f8fafc;
    padding: 0.5rem;
    border-radius: 50px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.email-signup:focus-within {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(20, 184, 166, 0.2);
    border-color: #14b8a6;
}

.email-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    background: transparent;
    color: #1f2937;
    font-size: 1rem;
    outline: none;
    border-radius: 25px;
}

.email-input::placeholder {
    color: #9ca3af;
}

.notify-btn {
    padding: 1rem 2rem;
    background: #14b8a6;
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    white-space: nowrap;
}

.notify-btn:hover {
    background: #0d9488;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.4);
}

.signup-text {
    color: #6b7280;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Section Styles */
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #1f2937;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.2;
}

/* Problem Section */
.problem-section {
    padding: 6rem 0;
    background: #f8fafc;
    margin: 4rem 0;
}

.problem-visual {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
}

.leaky-pipeline {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.pipeline-funnel {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.funnel-stage {
    background: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-weight: 600;
    color: #374151;
    min-width: 150px;
    text-align: center;
}

.funnel-stage:last-child {
    background: #fef2f2;
    color: #dc2626;
    border: 2px solid #fecaca;
}

.leak-drops {
    font-size: 1.5rem;
    animation: drip 2s ease-in-out infinite;
}

@keyframes drip {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

.problem-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.problem-point {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.problem-point:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.problem-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.problem-point p {
    color: #374151;
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
}

/* Solution Section */
.solution-section {
    padding: 6rem 0;
    margin: 4rem 0;
}

.solution-visual {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
}

.revenue-flow {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 2px solid #f1f5f9;
}

.flow-step {
    background: #f0fdf4;
    color: #16a34a;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    border: 2px solid #bbf7d0;
    min-width: 100px;
    text-align: center;
}

.flow-arrow {
    font-size: 1.5rem;
    color: #14b8a6;
    font-weight: bold;
}

@media (max-width: 768px) {
    .revenue-flow {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
    }
}

.solution-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.solution-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.solution-feature {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 2px solid #f1f5f9;
    transition: all 0.3s ease;
}

.solution-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(20, 184, 166, 0.1);
    border-color: #14b8a6;
}

.solution-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.solution-feature h3 {
    color: #1f2937;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

/* Differentiation Section */
.differentiation-section {
    padding: 6rem 0;
    background: #f8fafc;
    margin: 4rem 0;
}

.comparison-chart {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto 4rem;
    align-items: center;
}

.comparison-column {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.comparison-column h3 {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: #1f2937;
}

.traacked-column h3 {
    color: #14b8a6;
}

.comparison-points {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.comparison-point {
    padding: 1rem;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
}

.comparison-column:first-child .comparison-point {
    background: #fef2f2;
    color: #dc2626;
}

.traacked-column .comparison-point {
    background: #f0fdf4;
    color: #16a34a;
}

.vs-divider {
    font-size: 1.5rem;
    font-weight: 700;
    color: #6b7280;
    text-align: center;
    padding: 1rem;
    background: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.differentiation-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.differentiation-point {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.differentiation-point:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.diff-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.differentiation-point p {
    color: #374151;
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
}

/* Social Proof Section */
.social-proof-section {
    padding: 6rem 0;
    margin: 4rem 0;
}

.social-proof-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.social-proof-text {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 2rem;
    font-weight: 500;
}

.launch-badge {
    display: inline-block;
    background: linear-gradient(135deg, #14b8a6, #0d9488);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 2rem;
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.launch-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(20, 184, 166, 0.4);
    background: linear-gradient(135deg, #0d9488, #0f766e);
}

.badge-text {
    font-size: 1rem;
}

/* Bottom CTA Section */
.bottom-cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #14b8a6, #0d9488);
    margin: 4rem 0;
    text-align: center;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.bottom-cta-section .email-signup {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.bottom-cta-section .email-input {
    color: white;
}

.bottom-cta-section .email-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.bottom-cta-section .notify-btn {
    background: white;
    color: #14b8a6;
}

.bottom-cta-section .notify-btn:hover {
    background: #f8fafc;
    color: #0d9488;
}

/* Detailed Features Section */
.features-detail-section {
    padding: 6rem 0;
    margin: 4rem 0;
}

.features-intro {
    font-size: 1.25rem;
    color: #6b7280;
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.feature-detail {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 2px solid #f1f5f9;
    transition: all 0.3s ease;
}

.feature-detail:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(20, 184, 166, 0.1);
    border-color: #14b8a6;
}

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

.feature-icon-large {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.feature-header h3 {
    color: #1f2937;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.feature-content p {
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.feature-content ul {
    margin: 0;
    padding-left: 0;
    list-style: none;
    text-align: left;
}

.feature-content li {
    color: #6b7280;
    margin-bottom: 0.5rem;
    line-height: 1.5;
    padding-left: 1.5rem;
    position: relative;
    text-align: left;
}

.feature-content li::before {
    content: "•";
    color: #14b8a6;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Use Cases Section */
.use-cases-section {
    padding: 6rem 0;
    margin: 4rem 0;
    background: #f8fafc;
}

.use-cases-intro {
    font-size: 1.25rem;
    color: #6b7280;
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.use-case {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 2px solid #f1f5f9;
    transition: all 0.3s ease;
}

.use-case:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(20, 184, 166, 0.1);
    border-color: #14b8a6;
}

.use-case-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.use-case-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.use-case-header h3 {
    color: #1f2937;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.use-case-content p {
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.use-case-content strong {
    color: #1f2937;
    font-weight: 600;
}

.use-case-content ul {
    margin: 1rem 0 1.5rem 0;
    padding: 0;
    list-style: none;
    text-align: left;
}

.use-case-content li {
    color: #6b7280;
    margin-bottom: 0.5rem;
    line-height: 1.5;
    padding-left: 1.5rem;
    position: relative;
    text-align: left;
}

.use-case-content li::before {
    content: "•";
    color: #14b8a6;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.use-case-result {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1.5rem;
    color: #16a34a;
    font-weight: 500;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    margin: 4rem 0;
    background: #f8fafc;
}

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

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

.faq-item:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.faq-item.active {
    border-color: #14b8a6;
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.15);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #14b8a6;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: bold;
    color: #14b8a6;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 2rem 2rem;
    color: #6b7280;
    line-height: 1.6;
    text-align: left;
}

.faq-answer p {
    margin-bottom: 1rem;
}

.faq-answer ul {
    margin: 1rem 0 1rem 0;
    padding: 0;
    list-style: none;
    text-align: left;
}

.faq-answer li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    text-align: left;
}

.faq-answer li::before {
    content: "•";
    color: #14b8a6;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.faq-answer strong {
    color: #1f2937;
    font-weight: 600;
}

/* Blog Section */
.blog-section {
    margin-top: 4rem;
    animation: fadeInUp 1s ease-out 0.8s both;
    scroll-margin-top: 120px; /* Add space for fixed header when jumping to this section */
}

.blog-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
    margin-bottom: 3rem;
}

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

.blog-post {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 2px solid #f1f5f9;
    transition: all 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(20, 184, 166, 0.1);
    border-color: #14b8a6;
}

.blog-post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.blog-date {
    color: #6b7280;
}

.blog-category {
    color: #14b8a6;
    font-weight: 500;
}

.blog-post-title a {
    color: #1f2937;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.blog-post-title a:hover {
    color: #14b8a6;
}

.blog-post-excerpt {
    color: #6b7280;
    margin: 1rem 0;
    line-height: 1.6;
}

.blog-read-more {
    color: #14b8a6;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.blog-read-more:hover {
    color: #0d9488;
}

.blog-section-footer {
    text-align: center;
    margin-top: 2rem;
}

.view-all-posts {
    display: inline-block;
    background: #14b8a6;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.view-all-posts:hover {
    background: #0d9488;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.4);
}

/* Blog Post Page Styles */
.blog-post-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.blog-post-content {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 2px solid #f1f5f9;
}

.blog-post-header {
    text-align: center;
    margin-bottom: 3rem;
}

.blog-post-title-main {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #1f2937;
    margin: 1rem 0;
    line-height: 1.2;
}

.blog-post-subtitle {
    color: #6b7280;
    font-size: 1.2rem;
    font-weight: 400;
}

.blog-post-body {
    color: #374151;
    line-height: 1.7;
}

.blog-post-body h2 {
    color: #1f2937;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 2.5rem 0 1rem;
}

.blog-post-body h3 {
    color: #1f2937;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 2rem 0 0.75rem;
}

.blog-post-body p {
    margin-bottom: 1.5rem;
}

.blog-post-body ul {
    margin: 1rem 0 1.5rem 2rem;
}

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

.blog-intro {
    font-size: 1.1rem;
    font-weight: 500;
    color: #1f2937;
    margin-bottom: 2rem;
}

.blog-post-body a {
    color: #14b8a6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-post-body a:hover {
    color: #0d9488;
}

.blog-post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.blog-author {
    color: #6b7280;
}

.share-link {
    color: #14b8a6;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.share-link:hover {
    color: #0d9488;
}

/* Blog Listing Page Styles */
.blog-listing-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
}

.blog-hero {
    text-align: center;
    margin-bottom: 4rem;
    padding: 4rem 0;
}

.blog-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.blog-hero-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.blog-posts-listing {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
}

.blog-post-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 2px solid #f1f5f9;
    transition: all 0.3s ease;
}

.blog-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(20, 184, 166, 0.1);
    border-color: #14b8a6;
}

.blog-post-card.coming-soon {
    opacity: 0.7;
    border-style: dashed;
}

.blog-post-card.coming-soon:hover {
    transform: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border-color: #e5e7eb;
}

.blog-post-card .blog-post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.blog-post-card .blog-date {
    color: #6b7280;
}

.blog-post-card .blog-category {
    color: #14b8a6;
    font-weight: 500;
}

.blog-post-card .blog-post-title {
    margin-bottom: 1rem;
}

.blog-post-card .blog-post-title a {
    color: #1f2937;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.blog-post-card .blog-post-title a:hover {
    color: #14b8a6;
}

.blog-post-card .blog-post-title span {
    color: #6b7280;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
}

.blog-post-card .blog-post-excerpt {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.blog-post-card .blog-post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blog-post-card .blog-read-more {
    color: #14b8a6;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.blog-post-card .blog-read-more:hover {
    color: #0d9488;
}

.read-time {
    color: #9ca3af;
    font-size: 0.9rem;
}

.coming-soon-badge {
    background: #f3f4f6;
    color: #6b7280;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.blog-cta {
    text-align: center;
    background: #f8fafc;
    padding: 3rem 2rem;
    border-radius: 16px;
    border: 2px solid #e5e7eb;
}

.blog-cta h3 {
    color: #1f2937;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.blog-cta p {
    color: #6b7280;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.blog-cta .notify-btn {
    display: inline-block;
    background: #14b8a6;
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    white-space: nowrap;
}

.blog-cta .notify-btn:hover {
    background: #0d9488;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.4);
}

/* Force override for blog CTA button */
.blog-cta a.notify-btn {
    display: inline-block !important;
    background: #14b8a6 !important;
    color: white !important;
    padding: 1rem 2rem !important;
    border-radius: 25px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    border: none !important;
    cursor: pointer !important;
    font-size: 1rem !important;
    white-space: nowrap !important;
}


/* Footer */
.footer {
    padding: 2rem;
    margin-top: auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    color: #6b7280;
    font-size: 0.9rem;
}

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

.social-link {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #14b8a6;
}

/* Background shapes */
.background-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(20, 184, 166, 0.05);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .header {
        padding: 1.5rem 1rem 0;
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav {
        gap: 1rem;
    }
    
    .main-content {
        padding: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .email-signup {
        flex-direction: column;
        gap: 0.75rem;
        padding: 0.75rem;
    }
    
    .email-input,
    .notify-btn {
        padding: 0.875rem 1.25rem;
        border-radius: 20px;
    }
    
    .problem-points,
    .solution-features,
    .differentiation-points {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .problem-point,
    .solution-feature,
    .differentiation-point {
        padding: 1.5rem;
    }
    
    .comparison-chart {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .vs-divider {
        order: 2;
        margin: 1rem auto;
    }
    
    .comparison-column:first-child {
        order: 1;
    }
    
    .traacked-column {
        order: 3;
    }
    
    .features-grid,
    .use-cases-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-detail,
    .use-case {
        padding: 1.5rem;
    }
    
    .faq-question {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem 1.5rem;
    }
    
    .blog-title {
        font-size: 2rem;
    }
    
    .blog-post {
        padding: 1.5rem;
    }
    
    .blog-post-content {
        padding: 2rem;
    }
    
    .blog-post-footer {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .feature-card {
        padding: 1.25rem;
    }
    
    .feature-icon {
        font-size: 2.5rem;
    }
    
    .blog-post-content {
        padding: 1.5rem;
    }
    
    .blog-post-title-main {
        font-size: 1.8rem;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
.email-input:focus,
.notify-btn:focus,
.social-link:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .feature-card {
        border: 2px solid white;
    }
    
    .email-signup {
        border: 2px solid white;
    }
}
