/* Social Proof Section */
.social-proof {
    padding: 4rem 0;
    /* background: white; REMOVED */
    background: rgba(255, 255, 255, 0.6);
    /* Glass effect */
    backdrop-filter: blur(10px);
    text-align: center;
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

.social-proof h3 {
    color: var(--text-light);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
    font-weight: 600;
}

.logos-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    align-items: center;
    opacity: 0.7;
}

.logo-item {
    font-weight: 700;
    color: #94a3b8;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}


.logo-item svg {
    width: 32px;
    height: 32px;
}

/* Hero Carousel Customization */
.hero-carousel-item {
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-carousel-item h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--white);
    background: linear-gradient(to right, #60a5fa, #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-carousel-item p {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .hero-carousel-item h1 {
        font-size: 2.5rem;
    }
}

/* Email Service Comparison */
.comparison-section {
    padding: 6rem 0;
    background: rgba(248, 250, 252, 0.6);
    /* Slight slate tint glass */
    backdrop-filter: blur(10px);
}

.comparison-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.table-comparison {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 1rem;
}

.table-comparison th {
    text-align: left;
    padding: 1rem;
    color: var(--text-light);
    font-weight: 500;
    border-bottom: 2px solid #e2e8f0;
}

.table-comparison td {
    padding: 1.5rem;
    vertical-align: middle;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.table-comparison tr td:first-child {
    border-left: 1px solid #e2e8f0;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
    font-weight: 700;
    color: var(--secondary);
    width: 30%;
}

.table-comparison tr td:last-child {
    border-right: 1px solid #e2e8f0;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}

.check-icon {
    color: #16a34a;
    width: 24px;
    height: 24px;
}

.cross-icon {
    color: #dc2626;
    width: 24px;
    height: 24px;
}

.highlight-row td {
    background: #f0fdf4 !important;
    border-color: #bbf7d0 !important;
}

/* Compliance Checklist Section */
/* Compliance Checklist Section */
.compliance-section {
    padding: 6rem 0;
    background: #0f172a;
    /* Slte 900 */
    color: white;
    /* Dark text instead of white */
    position: relative;
    overflow: hidden;
}

.compliance-section h2 {
    color: white;
}

.compliance-section p {
    color: #cbd5e1;
    /* Lighter slate for better contrast on dark bg */
}

.compliance-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.checklist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.checklist-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateY(-2px);
}

/* Experience Carousel Images */
#carouselExperience .carousel-item img {
    height: 500px;
    object-fit: contain;
    background: #f8fafc;
    /* Adds a light background for transparent or smaller images */
    object-position: center;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.checklist-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: #16a34a;
    /* Green 600 */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.checklist-icon svg {
    width: 18px;
    height: 18px;
}

.checklist-content h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.checklist-content p {
    color: #94a3b8;
    /* Slate 400 */
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

/* Infinite Logo Slider */
.slider-container {
    overflow: hidden;
    padding: 2rem 0;
    white-space: nowrap;
    position: relative;
    max-width: 100%;
}

.slider-container:before,
.slider-container:after {
    position: absolute;
    top: 0;
    width: 60px;
    height: 100%;
    content: '';
    z-index: 2;
}

.slider-container:before {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}

.slider-container:after {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}

.slider-track {
    display: inline-block;
    animation: scroll 30s linear infinite;
    width: max-content;
}

.slider-container:hover .slider-track {
    animation-play-state: paused;
}

.logo-item {
    display: inline-flex;
    flex-direction: row;
    /* Align icon and text horizontally */
    align-items: center;
    gap: 1rem;
    /* Space between icon and text */
    margin: 0 4rem;
    vertical-align: middle;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.logo-item:hover {
    opacity: 1;
}

.logo-item span {
    font-size: 1.1rem;
    font-weight: 600;
    color: #334155;
    /* Slate 700 */
    white-space: nowrap;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}