/* SitterIT Integrations - Shared Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
}

/* Header */
.header {
    background: linear-gradient(135deg, #1a365d 0%, #2d5a87 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.header-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.header-logos img {
    height: 50px;
    max-width: 200px;
    object-fit: contain;
}

.header-logos .plus {
    font-size: 32px;
    font-weight: 300;
    opacity: 0.8;
}

.header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.header .tagline {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Navigation */
.nav {
    background: white;
    padding: 15px 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo img {
    height: 50px;
    max-width: 180px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #1a365d;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #2d5a87;
}

/* Container */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Intro section */
.intro {
    background: white;
    padding: 50px 40px;
    margin: -30px auto 40px;
    max-width: 800px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    position: relative;
    z-index: 10;
}

.intro h2 {
    color: #1a365d;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.intro p {
    font-size: 1.1rem;
    color: #555;
    max-width: 800px;
}

/* Features */
.features {
    padding: 60px 20px;
}

.features h2 {
    text-align: center;
    color: #1a365d;
    font-size: 2rem;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e8f4fd 0%, #d1e9f6 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon svg {
    width: 30px;
    height: 30px;
    stroke: #2d5a87;
}

.feature-card h3 {
    color: #1a365d;
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.feature-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Integration Cards (for index page) */
.integrations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.integration-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.integration-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.integration-card-header {
    background: linear-gradient(135deg, #1a365d 0%, #2d5a87 100%);
    padding: 25px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    min-height: 100px;
    overflow: hidden;
}

.integration-card-header img {
    height: 28px;
    max-width: 90px;
    object-fit: contain;
    flex-shrink: 1;
}

.integration-card-header .plus {
    color: white;
    font-size: 20px;
    opacity: 0.7;
    flex-shrink: 0;
}

.integration-card-body {
    padding: 25px;
}

.integration-card-body h3 {
    color: #1a365d;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.integration-card-body p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.integration-card-body .status {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-active {
    background: #d4edda;
    color: #155724;
}

.status-coming {
    background: #fff3cd;
    color: #856404;
}

/* Benefits */
.benefits {
    background: linear-gradient(135deg, #1a365d 0%, #2d5a87 100%);
    color: white;
    padding: 60px 20px;
}

.benefits h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

.benefits-list {
    max-width: 700px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.benefit-check {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-check svg {
    width: 16px;
    height: 16px;
    stroke: white;
}

.benefit-item p {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* CTA Section */
.cta {
    background: white;
    padding: 60px 20px;
    text-align: center;
}

.cta h2 {
    color: #1a365d;
    font-size: 2rem;
    margin-bottom: 20px;
}

.cta p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #1a365d 0%, #2d5a87 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(26, 54, 93, 0.4);
}

.btn-secondary {
    background: white;
    color: #1a365d;
    border: 2px solid #1a365d;
}

.btn-secondary:hover {
    background: #1a365d;
    color: white;
}

/* About */
.about {
    background: #f8f9fa;
    padding: 60px 20px;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about h2 {
    color: #1a365d;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.about p {
    color: #555;
    margin-bottom: 15px;
}

.about-logo {
    text-align: center;
}

.about-logo img {
    max-width: 200px;
    margin-bottom: 20px;
}

.about-logo p {
    color: #888;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: #1a365d;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

.footer p {
    opacity: 0.6;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .header h1 {
        font-size: 1.8rem;
    }

    .header .tagline {
        font-size: 1.1rem;
    }

    .intro {
        margin: -20px 10px 30px;
        padding: 30px 25px;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .header-logos {
        gap: 20px;
    }

    .header-logos img {
        height: 35px;
    }

    .nav-content {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        gap: 20px;
    }
}
