/* ===== Service Page Styles ===== */

.service-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 160px 24px 80px;
    z-index: 1;
}

.service-hero-content {
    max-width: 780px;
    margin: 0 auto;
}

.service-hero .hero-title {
    margin-bottom: 24px;
}

.service-hero .hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 580px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.service-hero .hero-actions {
    display: flex;
    justify-content: center;
}

/* Service Details Grid */
.service-details {
    background: var(--bg-secondary);
}

.service-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.platforms-section .service-features-grid {
    grid-template-columns: repeat(2, 1fr);
}

.service-feature-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px 28px;
    transition: all 0.5s var(--ease);
    position: relative;
    overflow: hidden;
}

.service-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-feature-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3), 0 0 30px var(--cyan-glow);
}

.service-feature-card:hover::before {
    opacity: 1;
}

.service-feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--heading);
    margin-bottom: 8px;
}

.platform-card-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.platform-card-heading h3 {
    margin-bottom: 0;
}

.platform-icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--heading);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-hover);
    flex-shrink: 0;
}

.service-feature-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* CTA Section */
.service-cta {
    padding: 100px 0;
}

.cta-box {
    text-align: center;
    background: var(--surface);
    border: 1px solid var(--border-hover);
    border-radius: 24px;
    padding: 64px 40px;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient);
}

.cta-box .section-title {
    margin-bottom: 12px;
}

.cta-box p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* Light theme overrides */
[data-theme="light"] .service-feature-card {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .service-feature-card:hover {
    box-shadow: var(--card-shadow);
}

[data-theme="light"] .platform-icon {
    background: rgba(15, 23, 42, 0.03);
}

[data-theme="light"] .cta-box {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

/* Info Section */
.service-info {
    padding: 80px 0;
}

.info-content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.info-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 16px;
}

.info-content p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.75;
}

/* Bullet List Section */
.service-list {
    padding: 80px 0;
}

.service-list-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    max-width: 900px;
    margin: 0 auto;
}

.service-list-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 24px;
}

.service-list-content ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-list-content li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.service-list-content li svg {
    color: var(--cyan);
    min-width: 16px;
}

/* Tags Grid */
.tags-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    max-width: 700px;
    margin: 0 auto;
}

.tag-item {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 12px 20px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--cyan);
    background: var(--surface);
    border: 1px solid var(--border-hover);
    border-radius: 100px;
    text-align: left;
}

.tag-title {
    color: var(--cyan);
    line-height: 1.3;
}

.tag-copy {
    margin-top: 4px;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 400;
    line-height: 1.4;
}

/* About page values */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.value-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    transition: all 0.4s var(--ease);
}

.value-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.value-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--heading);
    margin-bottom: 8px;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.about-values-grid {
    align-items: stretch;
}

.about-value-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 140px;
    text-align: center;
    font-size: 0.98rem;
    font-weight: 500;
    line-height: 1.7;
    color: var(--heading);
    border-color: var(--border-hover);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

[data-theme="light"] .about-value-item {
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

/* Contact page */
.contact-page-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.calendly-cta {
    text-align: center;
    padding: 40px;
    background: var(--surface);
    border: 1px solid var(--border-hover);
    border-radius: 20px;
    margin-top: 40px;
}

.calendly-cta h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--heading);
    margin-bottom: 12px;
}

.calendly-cta p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 1024px) {
    .service-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-hero {
        min-height: 60vh;
        padding: 140px 24px 60px;
    }

.service-features-grid {
        grid-template-columns: 1fr;
    }

    .cta-box {
        padding: 40px 24px;
    }

    .service-list-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .contact-page-wrapper { grid-template-columns: 1fr; }
}

/* Legal Pages */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 80px;
}

.legal-content h2 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--heading);
    margin-top: 40px;
    margin-bottom: 12px;
}

.legal-content h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--heading);
    margin-top: 24px;
    margin-bottom: 8px;
}

.legal-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 16px;
}

.legal-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 16px;
}

.legal-content li {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.75;
    padding-left: 20px;
    position: relative;
    margin-bottom: 4px;
}

.legal-content li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--cyan);
}

.legal-content a {
    color: var(--cyan);
    text-decoration: underline;
}

.legal-content .legal-updated {
    font-size: 0.85rem;
    color: var(--text-dim);
    margin-bottom: 32px;
}
