/* 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: #333;
    background-color: #ffffff;
}

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

/* Header */
.header {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

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

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
}

/* Buttons */
.cta-button {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.cta-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.cta-button.large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Image-based CTA buttons using chrome-web.png */
.cta-button-image {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-block;
    border-radius: 4px;
    overflow: hidden;
}

.cta-button-image:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.cta-button-image:active {
    transform: translateY(0);
}

.cta-button-image img {
    display: block;
    width: 296px;
    height: 80px;
    max-width: 100%;
    height: auto;
}

.cta-button-image.large img {
    width: 320px;
    height: 86px;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* Give more space to the video side */
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.benefits-checklist {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.checkmark {
    font-size: 1.2rem;
}

/* Video Component - Enhanced for prominence */
.video-container {
    /* Removed white background and borders for cleaner look */
    padding: 0;
    max-width: 900px; /* Further increased max width for bigger video */
    margin: 0 auto;
    position: relative;
}

.video-microcopy {
    text-align: center;
    color: #4b5563; /* Slightly darker for better visibility */
    font-size: 1.1rem; /* Slightly larger font */
    margin-bottom: 2.5rem; /* More space below */
    font-weight: 600; /* Bolder weight */
    text-transform: uppercase; /* Make it stand out more */
    letter-spacing: 0.5px; /* Add letter spacing for elegance */
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 20px; /* Increased border radius for more modern look */
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3); /* Enhanced shadow for more prominence */
    transform: scale(1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 3px solid rgba(255, 255, 255, 0.1); /* Subtle border for definition */
}

.video-wrapper:hover {
    transform: scale(1.03); /* Slightly more pronounced hover effect */
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.4); /* Even more dramatic shadow on hover */
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    object-fit: cover; /* Ensures video maintains aspect ratio and fills container */
}



/* Trust Bar */
.trust-bar {
    background: #1f2937;
    color: white;
    padding: 2rem 0;
}

.trust-content {
    text-align: center;
}

.trust-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #3b82f6;
}

.stat-label {
    font-size: 0.9rem;
    color: #9ca3af;
}

/* Comparison Section */
.comparison {
    padding: 80px 0;
    background: #ffffff;
}

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

.comparison-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-column {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    border: 2px solid #e5e7eb;
}

.our-way {
    border-color: #3b82f6;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.old-way {
    border-color: #ef4444;
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.column-header {
    text-align: center;
    margin-bottom: 2rem;
}

.column-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

.our-way .column-header h3 {
    color: #1d4ed8;
}

.old-way .column-header h3 {
    color: #dc2626;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    font-size: 1.2rem;
    margin-top: 0.1rem;
}

.feature-content {
    flex: 1;
    line-height: 1.5;
}

.feature-item.negative .feature-content {
    color: #7f1d1d;
}

/* Promise Section */
.promise {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    text-align: center;
}

.promise-text {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #4b5563;


    max-width: 800px;
    margin: 0 auto;
}

.promise-text em {
    color: #1f2937;
    font-style: italic;
    font-weight: 500;
}

/* Final CTA */
.final-cta {
    padding: 80px 0;
    background: #1f2937;
    text-align: center;
}

.cta-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

/* Breadcrumbs */
.breadcrumbs {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.breadcrumbs a {
    color: #3b82f6;
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.breadcrumbs span.separator {
    color: #9ca3af;
    margin: 0 0.5rem;
}

/* Blog Article */
.blog-article {
    padding: 60px 0;
}

.blog-article header h1 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.blog-article .post-meta {
    color: #6b7280;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.blog-article .post-content {
    font-size: 1.05rem;
    color: #374151;
}

.blog-article .post-content h2 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
    color: #1f2937;
}

.blog-article .post-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    color: #111827;
}

.blog-article .post-content p {
    margin-bottom: 1rem;
}

.blog-article .post-content ul,
.blog-article .post-content ol {
    margin: 1rem 0 1rem 1.5rem;
}

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

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

.related-posts {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.related-posts a {
    color: #3b82f6;
    text-decoration: none;
}

.related-posts a:hover { text-decoration: underline; }

/* Header Navigation */
.header-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: #6b7280;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #3b82f6;
}

/* Blog Section */
.blog {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

.blog-subtitle {
    font-size: 1.2rem;
    color: #6b7280;
    margin-top: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.blog-card.featured {
    border: 2px solid #3b82f6;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

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

.blog-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

.blog-date, .blog-read-time {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.blog-excerpt {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.blog-tag {
    background: #e0e7ff;
    color: #3730a3;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.blog-read-more {
    color: #3b82f6;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.2s ease;
}

.blog-read-more:hover {
    color: #1d4ed8;
}

.blog-cta {
    text-align: center;
    padding: 3rem 0;
    background: white;
    border-radius: 12px;
    margin-top: 2rem;
}

.blog-cta-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 2rem;
}

.blog-cta-button {
    display: inline-block;
}

/* Blog Modal */
.blog-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    overflow-y: auto;
}

.blog-modal.active {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 2rem;
}

.blog-modal-content {
    background: white;
    border-radius: 12px;
    max-width: 800px;
    width: 100%;
    margin: 2rem auto;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.blog-modal-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    background: white;
    border-radius: 12px 12px 0 0;
}

.blog-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #6b7280;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.blog-modal-close:hover {
    background: #f3f4f6;
    color: #1f2937;
}

.blog-modal-body {
    padding: 2rem;
    line-height: 1.7;
}

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

.blog-modal-body h4 {
    color: #374151;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem;
    font-size: 1.1rem;
}

.blog-modal-body p {
    margin-bottom: 1rem;
    color: #4b5563;
}

.blog-modal-body ul, .blog-modal-body ol {
    margin: 1rem 0 1rem 1.5rem;
    color: #4b5563;
}

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

.blog-modal-body strong {
    color: #1f2937;
    font-weight: 600;
}

/* Footer */
.footer {
    background: #111827;
    color: #9ca3af;
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    gap: 2rem;
}

.footer-contact {
    text-align: center;
    flex: 1;
}

.contact-link {
    color: #3b82f6;
    text-decoration: none;
}

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

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

.footer-link {
    color: #3b82f6;
    text-decoration: none;
    font-size: 0.9rem;
}

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

.privacy-link {
    color: #3b82f6;
    text-decoration: none;
}

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

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

    .hero-content {
        gap: 40px;
    }

    .trust-stats {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 0;
    }

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

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .comparison {
        padding: 60px 0;
    }

    .comparison-table {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .trust-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .header-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }


    .logo-icon {
        width: 36px;
        height: 36px;
    }

    .logo-text {
        font-size: 1.3rem;
    }
  
    .header-nav {
        flex-direction: column;
        gap: 1rem;
    }

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

    .blog-modal-content {
        margin: 1rem;
        max-height: 95vh;
    }

    .blog-modal-header,
    .blog-modal-body {
        padding: 1.5rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .video-container {
        padding: 0 1rem; /* Only horizontal padding on tablets */
        max-width: 100%;
    }

    .cta-button-image img {
        width: 240px;
        height: 65px;
    }

    .cta-button-image.large img {
        width: 260px;
        height: 70px;
    }

    .demo-container {
        padding: 1.5rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .promise {
        padding: 60px 0;
    }

    .final-cta {
        padding: 60px 0;
    }
}

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

    .hero {
        padding: 40px 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .cta-title {
        font-size: 1.75rem;
    }

    .video-container {
        padding: 0 0.5rem; /* Minimal horizontal padding on mobile */
        max-width: 100%;
    }

    .video-microcopy {
        font-size: 1rem; /* Keep it readable on mobile */
        margin-bottom: 2rem; /* Maintain spacing */
        letter-spacing: 0.3px; /* Reduce letter spacing for mobile */
    }

    .comparison-column {
        padding: 1.5rem;
    }

    .feature-item {
        gap: 0.75rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .trust-bar {
        padding: 1.5rem 0;
    }

    .comparison {
        padding: 40px 0;
    }

    .promise {
        padding: 40px 0;
    }

    .final-cta {
        padding: 40px 0;
    }

    .promise-text {
        font-size: 1.1rem;
    }

    .cta-button.large {
        padding: 14px 24px;
        font-size: 1rem;
    }

    .cta-button-image img {
        width: 200px;
        height: 54px;
    }

    .cta-button-image.large img {
        width: 220px;
        height: 59px;
    }

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

    .logo-text {
        font-size: 1.2rem;
    }
}

/* Touch-friendly interactions */
@media (hover: none) and (pointer: coarse) {
    .cta-button:hover {
        transform: none;
        box-shadow: none;
    }

    .cta-button:active {
        transform: scale(0.98);
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-text {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}
