/* ============================================
   GPS Kosove - SEO Pages Stylesheet
   Covers: Landing pages, Blog, Case Studies, Testimonials
   ============================================ */

/* ---- Breadcrumbs ---- */
.breadcrumbs-wrapper {
    background: var(--bg-secondary, #f8f9fa);
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    margin-top: 70px;
}
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 14px;
    color: #6b7280;
}
.breadcrumbs li::after {
    content: '›';
    margin-left: 8px;
    color: #9ca3af;
}
.breadcrumbs li:last-child::after {
    content: '';
}
.breadcrumbs a {
    color: #2563eb;
    text-decoration: none;
}
.breadcrumbs a:hover {
    text-decoration: underline;
}

/* ---- SEO Hero Sections ---- */
.seo-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    color: white;
    position: relative;
    overflow: hidden;
}
.seo-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
}
.seo-hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}
.seo-badge {
    display: inline-block;
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}
.seo-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 20px;
}
.seo-hero-subtitle {
    font-size: 1.15rem;
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 30px;
}
.seo-hero-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 32px;
}
.seo-stat {
    text-align: center;
}
.seo-stat strong {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #60a5fa;
}
.seo-stat span {
    font-size: 13px;
    color: #94a3b8;
}
.seo-hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.seo-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}
.seo-hero-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    backdrop-filter: blur(10px);
}
.seo-hero-icon {
    font-size: 4rem;
    margin-bottom: 16px;
}
.seo-hero-card h3 {
    font-size: 1.3rem;
    margin: 0 0 8px;
    color: #fff;
}
.seo-hero-card p {
    color: #94a3b8;
    margin: 0;
    font-size: 14px;
}

/* Blog-style hero (shorter) */
.seo-hero-blog,
.seo-hero-cases,
.seo-hero-testimonials {
    padding: 100px 0 50px;
    text-align: center;
}
.blog-hero-content h1 {
    font-size: 2.5rem;
    margin: 0 0 12px;
}
.blog-hero-content p {
    color: #94a3b8;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ---- General Sections ---- */
.seo-section {
    padding: 80px 0;
}
.seo-section:nth-child(even) {
    background: #f8fafc;
}
.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 12px;
}
.section-header p {
    font-size: 1.05rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}
.section-cta {
    text-align: center;
    margin-top: 40px;
}

/* ---- Grid Layouts ---- */
.seo-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ---- Problem Cards ---- */
.seo-problem-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #e2e8f0;
    transition: transform 0.2s, box-shadow 0.2s;
}
.seo-problem-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.problem-icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
}
.seo-problem-card h3 {
    font-size: 1.15rem;
    color: #0f172a;
    margin: 0 0 10px;
}
.seo-problem-card p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* ---- Feature Cards ---- */
.seo-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.seo-feature-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}
.seo-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.feature-icon-circle {
    font-size: 2.5rem;
    margin-bottom: 16px;
}
.seo-feature-card h3 {
    font-size: 1.1rem;
    color: #0f172a;
    margin: 0 0 10px;
}
.seo-feature-card p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* ---- Benefits ---- */
.seo-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.seo-benefit-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #e2e8f0;
    position: relative;
    transition: transform 0.2s;
}
.seo-benefit-card:hover {
    transform: translateY(-4px);
}
.benefit-number {
    font-size: 4rem;
    font-weight: 800;
    color: #f1f5f9;
    position: absolute;
    top: 12px;
    right: 20px;
    z-index: 0;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}
.seo-benefit-card h3,
.seo-benefit-card p {
    position: relative;
    z-index: 1;
}
.seo-benefit-card h3 {
    font-size: 1.1rem;
    color: #0f172a;
    margin: 0 0 10px;
}
.seo-benefit-card p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* ---- Steps / How it works ---- */
.seo-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.seo-step {
    text-align: center;
    position: relative;
}
.step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.seo-step h3 {
    font-size: 1.1rem;
    color: #0f172a;
    margin: 0 0 8px;
}
.seo-step p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* ---- Testimonials (on landing pages) ---- */
.seo-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}
.seo-testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 28px;
    border: 1px solid #e2e8f0;
}
.testimonial-stars {
    margin-bottom: 12px;
    font-size: 1.1rem;
}
.testimonial-content {
    color: #334155;
    font-size: 0.95rem;
    line-height: 1.7;
    font-style: italic;
    margin: 0 0 16px;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-author img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}
.testimonial-author strong {
    display: block;
    color: #0f172a;
    font-size: 0.9rem;
}
.testimonial-author span {
    color: #64748b;
    font-size: 0.8rem;
}

/* ---- FAQ Section ---- */
.seo-faq-list {
    max-width: 800px;
    margin: 0 auto;
}
.seo-faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    background: white;
}
.seo-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    text-align: left;
    transition: background 0.2s;
}
.seo-faq-question:hover {
    background: #f8fafc;
}
.faq-icon {
    font-size: 1.4rem;
    color: #2563eb;
    font-weight: 300;
    transition: transform 0.3s;
}
.seo-faq-item.active .faq-icon {
    transform: rotate(45deg);
}
.seo-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}
.seo-faq-item.active .seo-faq-answer {
    max-height: 500px;
    padding: 0 24px 20px;
}
.seo-faq-answer p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* ---- Related Links ---- */
.seo-related-card {
    display: block;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px;
    text-decoration: none;
    transition: transform 0.2s, border-color 0.2s;
}
.seo-related-card:hover {
    transform: translateY(-3px);
    border-color: #2563eb;
}
.seo-related-card h3 {
    color: #0f172a;
    margin: 0 0 8px;
    font-size: 1.1rem;
}
.seo-related-card p {
    color: #64748b;
    margin: 0;
    font-size: 0.9rem;
}

/* ---- CTA Section ---- */
.seo-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #dc2626, #b91c1c, #991b1b);
    color: white;
    text-align: center;
}
.cta-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 12px;
}
.cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0 0 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.cta-buttons .btn-primary {
    background: white;
    color: #dc2626;
}
.cta-buttons .btn-primary:hover {
    background: #fef2f2;
}
.cta-buttons .btn-secondary {
    background: rgba(255,255,255,0.15);
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ---- Industry Grid ---- */
.seo-industry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.seo-industry-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px;
    transition: transform 0.2s;
}
.seo-industry-card:hover {
    transform: translateY(-3px);
}
.industry-icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
}
.seo-industry-card h3 {
    font-size: 1.1rem;
    color: #0f172a;
    margin: 0 0 8px;
}
.seo-industry-card p {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0 0 12px;
}
.seo-industry-card a {
    color: #2563eb;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
}

/* ---- Modules Grid (Fleet Mgmt) ---- */
.seo-modules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.seo-module-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px;
    transition: transform 0.2s;
}
.seo-module-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.module-icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
}
.seo-module-card h3 {
    font-size: 1.1rem;
    color: #0f172a;
    margin: 0 0 8px;
}
.seo-module-card p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0 0 12px;
}
.module-features {
    list-style: none;
    padding: 0;
    margin: 0;
}
.module-features li {
    color: #334155;
    font-size: 0.85rem;
    padding: 4px 0;
}

/* ---- Explanation Grid ---- */
.seo-explanation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.seo-explanation-card {
    text-align: center;
    padding: 24px;
}
.explanation-step {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.seo-explanation-card h3 {
    font-size: 1.15rem;
    margin: 0 0 10px;
    color: #0f172a;
}
.seo-explanation-card p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* ---- Usecase Cards ---- */
.seo-usecase-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px;
    transition: transform 0.2s;
}
.seo-usecase-card:hover {
    transform: translateY(-3px);
}
.seo-usecase-card h3 {
    font-size: 1.15rem;
    color: #0f172a;
    margin: 0 0 8px;
}
.seo-usecase-card p {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
}

/* ---- Case Study Cards ---- */
.seo-case-card {
    display: block;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px;
    text-decoration: none;
    transition: transform 0.2s;
}
.seo-case-card:hover {
    transform: translateY(-3px);
    border-color: #2563eb;
}
.case-industry {
    display: inline-block;
    background: #eff6ff;
    color: #2563eb;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 12px;
}
.seo-case-card h3 {
    color: #0f172a;
    margin: 0 0 8px;
    font-size: 1.05rem;
}
.seo-case-card p {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0 0 12px;
}
.case-stats {
    display: flex;
    gap: 16px;
    margin-top: 12px;
}
.case-stat {
    text-align: center;
}
.case-stat strong {
    display: block;
    color: #2563eb;
    font-size: 1.1rem;
}
.case-stat span {
    color: #94a3b8;
    font-size: 0.75rem;
}

/* ---- Blog Section ---- */
.blog-section {
    padding-top: 40px;
}
.blog-categories {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    justify-content: center;
}
.blog-cat-btn {
    padding: 8px 20px;
    border-radius: 50px;
    background: #f1f5f9;
    color: #475569;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s;
}
.blog-cat-btn:hover,
.blog-cat-btn.active {
    background: #2563eb;
    color: white;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
}
.blog-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.2s;
}
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.blog-card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.blog-card-content {
    padding: 24px;
}
.blog-card-meta {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
    flex-wrap: wrap;
}
.blog-category {
    display: inline-block;
    background: #eff6ff;
    color: #2563eb;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: none;
}
.blog-date,
.blog-read-time {
    font-size: 0.8rem;
    color: #94a3b8;
}
.blog-card h2,
.blog-card h3 {
    font-size: 1.15rem;
    margin: 0 0 8px;
    line-height: 1.3;
}
.blog-card h2 a,
.blog-card h3 a {
    color: #0f172a;
    text-decoration: none;
}
.blog-card h2 a:hover,
.blog-card h3 a:hover {
    color: #2563eb;
}
.blog-card p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0 0 12px;
}
.blog-read-more {
    color: #2563eb;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
}
.blog-pagination {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}
.blog-pagination-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}
.blog-page-btn,
.blog-page-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 14px;
    border-radius: 10px;
    border: 1px solid #cbd5e1;
    background: #fff;
    color: #334155;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}
.blog-page-btn:hover,
.blog-page-number:hover {
    border-color: #2563eb;
    color: #2563eb;
}
.blog-page-number.active {
    background: #2563eb;
    border-color: #2563eb;
    color: #fff;
}
.blog-page-btn.disabled {
    opacity: 0.45;
    pointer-events: none;
}
.blog-page-numbers {
    display: flex;
    align-items: center;
    gap: 8px;
}
.blog-empty {
    text-align: center;
    padding: 60px 20px;
}
.blog-empty h2 {
    color: #334155;
    margin-bottom: 12px;
}
.blog-empty p {
    color: #64748b;
    margin-bottom: 24px;
}

/* ---- Blog Article ---- */
.blog-article {
    padding-top: 20px;
}
.blog-article-header {
    max-width: 800px;
    margin: 0 auto 30px;
}
.blog-article-meta {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 16px;
    flex-wrap: wrap;
}
.blog-author {
    font-size: 0.85rem;
    color: #64748b;
}
.blog-article-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin: 0 0 16px;
}
.blog-article-excerpt {
    font-size: 1.15rem;
    color: #475569;
    line-height: 1.6;
}
.blog-article-image {
    max-width: 900px;
    margin: 0 auto 40px;
    border-radius: 16px;
    overflow: hidden;
}
.blog-article-image img {
    width: 100%;
    height: auto;
}
.blog-article-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #334155;
}
.blog-article-content h2 {
    font-size: 1.6rem;
    margin: 40px 0 16px;
    color: #0f172a;
}
.blog-article-content h3 {
    font-size: 1.3rem;
    margin: 30px 0 12px;
    color: #0f172a;
}
.blog-article-content ul,
.blog-article-content ol {
    margin: 16px 0;
    padding-left: 24px;
}
.blog-article-content li {
    margin: 8px 0;
}
.blog-article-content img {
    max-width: 100%;
    border-radius: 12px;
    margin: 24px 0;
}
.blog-share {
    max-width: 800px;
    margin: 40px auto 0;
    padding-top: 24px;
    border-top: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 12px;
}
.blog-share span {
    font-weight: 600;
    color: #475569;
}
.share-btn {
    padding: 6px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    color: white;
}
.share-facebook { background: #1877f2; }
.share-twitter { background: #1da1f2; }
.share-linkedin { background: #0a66c2; }

/* ---- Case Studies ---- */
.case-studies-grid {
    display: grid;
    gap: 40px;
}
.case-study-card {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 32px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.2s;
}
.case-study-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}
.case-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 250px;
}
.case-card-content {
    padding: 32px;
}
.case-industry-badge {
    display: inline-block;
    background: #eff6ff;
    color: #2563eb;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 12px;
}
.case-card-content h2 {
    font-size: 1.5rem;
    margin: 0 0 8px;
}
.case-card-content h2 a {
    color: #0f172a;
    text-decoration: none;
}
.case-client {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0 0 12px;
}
.case-card-content p {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
}
.case-stats-row {
    display: flex;
    gap: 24px;
    margin: 16px 0;
}
.case-stat-item {
    text-align: center;
}
.case-stat-item strong {
    display: block;
    font-size: 1.3rem;
    color: #2563eb;
}
.case-stat-item span {
    font-size: 0.75rem;
    color: #94a3b8;
}

/* ---- Case Study Article ---- */
.case-article-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px;
}
.case-article-header h1 {
    font-size: 2.2rem;
    color: #0f172a;
    margin: 12px 0;
}
.case-client-info {
    color: #64748b;
    font-size: 0.95rem;
}
.case-article-image {
    max-width: 900px;
    margin: 0 auto 40px;
    border-radius: 16px;
    overflow: hidden;
}
.case-article-image img {
    width: 100%;
    height: auto;
}
.case-stats-highlight {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin: 40px 0;
    padding: 32px;
    background: #f8fafc;
    border-radius: 16px;
}
.case-stat-big strong {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: #2563eb;
}
.case-stat-big span {
    font-size: 0.85rem;
    color: #64748b;
}
.case-article-section {
    max-width: 800px;
    margin: 0 auto 40px;
}
.case-article-section h2 {
    font-size: 1.5rem;
    margin: 0 0 16px;
    color: #0f172a;
}
.case-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #334155;
}
.case-testimonial {
    max-width: 700px;
    margin: 40px auto;
    padding: 32px 40px;
    background: linear-gradient(135deg, #eff6ff, #f0f9ff);
    border-left: 4px solid #2563eb;
    border-radius: 0 16px 16px 0;
}
.case-testimonial p {
    font-size: 1.15rem;
    font-style: italic;
    color: #334155;
    line-height: 1.7;
    margin: 0 0 12px;
}
.case-testimonial cite {
    color: #64748b;
    font-size: 0.9rem;
}
.case-gallery {
    max-width: 900px;
    margin: 40px auto;
}
.case-gallery h2 {
    margin-bottom: 16px;
}
.case-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
}
.gallery-item img {
    width: 100%;
    border-radius: 12px;
    height: 200px;
    object-fit: cover;
}

/* ---- Testimonials Page ---- */
.featured-testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 28px;
}
.featured-testimonial-card {
    background: linear-gradient(135deg, #f8fafc, #eff6ff);
    border: 2px solid #dbeafe;
    border-radius: 20px;
    padding: 36px;
}
.ft-rating {
    margin-bottom: 16px;
    font-size: 1.2rem;
}
.featured-testimonial-card blockquote {
    font-size: 1.1rem;
    font-style: italic;
    color: #334155;
    line-height: 1.7;
    margin: 0 0 20px;
    padding: 0;
    border: none;
}
.ft-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.ft-photo {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
}
.ft-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
}
.ft-author strong {
    display: block;
    color: #0f172a;
}
.ft-author span {
    color: #64748b;
    font-size: 0.85rem;
}
.ft-video-link {
    display: inline-block;
    margin-top: 16px;
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}
.testimonial-card-full {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px;
}
.tc-stars {
    margin-bottom: 12px;
}
.tc-content {
    color: #334155;
    font-style: italic;
    line-height: 1.7;
    margin: 0 0 16px;
    font-size: 0.95rem;
}
.tc-footer {
    display: flex;
    align-items: center;
    gap: 12px;
}
.tc-photo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}
.tc-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 600;
}
.tc-footer strong {
    display: block;
    color: #0f172a;
    font-size: 0.9rem;
}
.tc-footer span {
    color: #64748b;
    font-size: 0.8rem;
}
.tc-industry {
    display: inline-block;
    background: #f1f5f9;
    color: #475569;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.7rem;
    margin-left: 4px;
}

/* ---- Footer SEO Enhancement ---- */
.footer-seo-content {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin: 6px 0;
}
.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: white;
}

/* ---- Nav CTA Button ---- */
.btn-nav-cta {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .seo-hero-content {
        grid-template-columns: 1fr;
    }
    .seo-hero-visual {
        display: none;
    }
    .seo-hero h1 {
        font-size: 2.3rem;
    }
    .seo-grid-3,
    .seo-features-grid,
    .seo-benefits-grid,
    .seo-industry-grid,
    .seo-modules-grid,
    .seo-explanation-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .seo-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-seo-content {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .case-study-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .seo-hero {
        padding: 90px 0 50px;
    }
    .seo-hero h1 {
        font-size: 1.8rem;
    }
    .seo-hero-subtitle {
        font-size: 1rem;
    }
    .seo-hero-stats {
        gap: 20px;
    }
    .seo-stat strong {
        font-size: 1.4rem;
    }
    .seo-section {
        padding: 50px 0;
    }
    .section-header h2 {
        font-size: 1.6rem;
    }
    .seo-grid-3,
    .seo-features-grid,
    .seo-benefits-grid,
    .seo-industry-grid,
    .seo-modules-grid,
    .seo-explanation-grid {
        grid-template-columns: 1fr;
    }
    .seo-steps {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .seo-hero-buttons {
        flex-direction: column;
    }
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .blog-pagination-wrap {
        gap: 10px;
    }
    .blog-page-btn,
    .blog-page-number {
        height: 36px;
        min-width: 36px;
        padding: 0 10px;
        font-size: 0.85rem;
    }
    .blog-article-header h1 {
        font-size: 1.8rem;
    }
    .featured-testimonials {
        grid-template-columns: 1fr;
    }
    .case-stats-highlight {
        flex-wrap: wrap;
        gap: 24px;
    }
    .footer-seo-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}
