/* ========================================
   Service Single Page Styles (Modular)
   ======================================== */

.service-single-main {
    --srv-primary: #2B6CB0;
    --srv-bg-light: #f6f6f8;
    --srv-text-dark: #0e121b;
    --srv-text-muted: #4e6797;
    --srv-border: #e7ebf3;
    --srv-radius: 12px;
    background-color: var(--srv-bg-light);
    font-family: 'Roboto', sans-serif;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Utilities */
.text-center {
    text-align: center;
}

.text-primary {
    color: var(--srv-primary);
}

.overflow-visible {
    overflow: visible;
}

.mb-12 {
    margin-bottom: 48px;
}

.max-w-3xl {
    max-width: 768px;
    margin-left: auto;
    margin-right: auto;
}


/* Font Overrides */
.seo-template h1,
.seo-template h2,
.seo-template h3,
.seo-template h4 {
    font-family: 'Outfit', sans-serif;
}

.emailmkt-template,
.cyber-template {
    font-family: 'Inter', sans-serif !important;
}

.emailmkt-template h1,
.emailmkt-template h2,
.emailmkt-template h3,
.emailmkt-template h4,
.cyber-template h1,
.cyber-template h2,
.cyber-template h3,
.cyber-template h4 {
    font-family: 'Outfit', sans-serif;
}

/* Sidebar Footer Note */
.sidebar-footer-note {
    font-size: 13px;
    margin-top: 16px;
    opacity: 0.8;
    font-style: italic;
}

.btn-sidebar-cta.light {
    background-color: #ffffff;
    color: var(--srv-primary) !important;
}


/* 1. Breadcrumbs */
.service-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 24px 0;
    font-size: 14px;
    color: var(--srv-text-muted);
}

.service-breadcrumbs a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

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

.service-breadcrumbs .sep {
    color: #cbd5e1;
}

/* 2. Hero Box */
.service-hero-box {
    background-color: #ffffff;
    border-radius: var(--srv-radius);
    border: 1px solid var(--srv-border);
    padding: 40px;
    margin-bottom: 48px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
    .service-hero-box {
        padding: 60px 80px;
    }
}

.hero-flex {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-flex {
        flex-direction: row;
        justify-content: space-between;
    }
}

.hero-text {
    flex: 1;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.badge-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(43, 108, 176, 0.1);
    color: var(--srv-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.badge-label {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.1em;
    color: var(--srv-primary);
}

.service-title {
    font-family: 'Outfit', sans-serif;
    font-size: 42px;
    font-weight: 900;
    line-height: 1.1;
    color: var(--srv-text-dark);
    margin: 0 0 24px;
}

@media (min-width: 768px) {
    .service-title {
        font-size: 64px;
    }
}

.service-lead {
    font-size: 18px;
    line-height: 1.6;
    color: var(--srv-text-muted);
    max-width: 650px;
    margin-bottom: 32px;
}

/* Button styles now handled globally in buttons.css */

/* Specific adjustments for cyber-template if needed, currently using global */

/* Hero Visual */
.hero-visual {
    width: 100%;
    max-width: 320px;
}

.visual-card {
    aspect-ratio: 1;
    background-color: rgba(43, 108, 176, 0.05);
    border: 1px solid rgba(43, 108, 176, 0.1);
    border-radius: 24px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-inner {
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.visual-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(43, 108, 176, 0.1) 0%, transparent 100%);
}

.visual-inner i {
    font-size: 96px;
    color: var(--srv-primary);
    position: relative;
    z-index: 2;
}

/* 3. Main Grid Layout */
.service-flex-layout {
    display: flex;
    flex-direction: column;
    gap: 48px;
    padding-bottom: 80px;
}

@media (min-width: 1024px) {
    .service-flex-layout {
        flex-direction: row;
        align-items: flex-start;
    }
}

.service-main-content {
    flex: 2;
}

.service-sidebar {
    flex: 1;
}

@media (min-width: 1024px) {
    .service-sidebar {
        position: sticky;
        top: 100px;
    }
}

.section-title-sm {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--srv-text-dark);
    border-bottom: 2px solid rgba(43, 108, 176, 0.15);
    padding-bottom: 8px;
    margin-bottom: 24px;
    display: inline-block;
}

.prose {
    font-size: 18px;
    line-height: 1.7;
    color: var(--srv-text-muted);
}

.prose p {
    margin-bottom: 24px;
}

/* Features Mini Grid */
.features-mini-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 48px;
}

@media (min-width: 640px) {
    .features-mini-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.f-item {
    background-color: #ffffff;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid var(--srv-border);
    transition: transform 0.2s;
}

.f-item:hover {
    transform: translateY(-4px);
}

.f-item i {
    font-size: 32px;
    margin-bottom: 16px;
    display: block;
}

.f-item h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.f-item p {
    font-size: 14px;
    color: var(--srv-text-muted);
    line-height: 1.5;
}

/* 4. Sidebar Styles */
.highlight-card {
    background-color: #ffffff;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--srv-border);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
}

.sidebar-title {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.sidebar-desc {
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 32px;
}

.highlight-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.highlight-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--srv-text-dark);
}

.highlight-list li i {
    color: #22c55e;
    font-size: 18px;
}

.pricing-footer {
    border-top: 1px solid var(--srv-border);
    padding-top: 24px;
    margin-bottom: 24px;
}

.price-label {
    display: block;
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: #94a3b8;
    margin-bottom: 4px;
}

.price-value {
    font-family: 'Outfit', sans-serif;
    font-size: 36px;
    font-weight: 900;
    color: var(--srv-primary);
}

.btn-sidebar-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    height: 54px;
    background-color: var(--srv-primary);
    color: #ffffff;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: filter 0.2s;
}

.btn-sidebar-cta:hover {
    filter: brightness(1.1);
    color: #ffffff;
}

/* 5. Process Steps */
.process-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.section-title-md {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--srv-text-dark);
    margin-bottom: 12px;
}

.title-underline {
    width: 80px;
    height: 6px;
    background-color: var(--srv-primary);
    border-radius: 99px;
    margin: 0 auto 64px;
}

.process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

@media (min-width: 768px) {
    .process-steps {
        grid-template-columns: repeat(4, 1fr);
    }
}

.step-col {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-num-box {
    width: 64px;
    height: 64px;
    background-color: rgba(43, 108, 176, 0.1);
    color: var(--srv-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 24px;
    transition: all 0.3s;
}

.step-col:hover .step-num-box {
    background-color: var(--srv-primary);
    color: #ffffff;
}

.process-icon {
    font-size: 42px;
    color: var(--srv-primary);
    margin-bottom: 16px;
}

.step-col h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
}

.step-col p {
    font-size: 14px;
    color: var(--srv-text-muted);
}

/* 6. Tech Stack */
.tech-stack-section {
    padding: 80px 0;
}

.container-sm-border {
    background: #ffffff;
    padding: 60px;
    border-radius: 24px;
    border: 1px solid var(--srv-border);
}

.tech-header h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
}

.tech-header p {
    font-size: 15px;
    color: var(--srv-text-muted);
    margin-bottom: 48px;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

@media (min-width: 640px) {
    .tech-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .tech-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    filter: grayscale(1);
    opacity: 0.6;
    transition: all 0.3s;
}

.tech-item:hover {
    filter: grayscale(0);
    opacity: 1;
}

.tech-item i {
    font-size: 42px;
}

.tech-item span {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

/* 7. Bottom CTA */
.bottom-cta-area {
    padding: 120px 0;
    background-color: var(--srv-primary);
    color: #ffffff;
}

.bottom-cta-area h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 auto 20px;
    max-width: 800px;
    text-align: center;
    color: #ffffff;
}

@media (min-width: 768px) {
    .bottom-cta-area h2 {
        font-size: 56px;
        color: #ffffff;
    }
}

.bottom-cta-area p {
    font-size: 18px;
    font-weight: 400;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
    text-align: center;
}

.cta-btns {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: center;
}

@media (min-width: 640px) {
    .cta-btns {
        flex-direction: row;
        gap: 12px;
    }
}

.btn-cta-light {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    height: 56px;
    background-color: #ffffff;
    color: #1e4e8c;
    /* Match specific shade from image */
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.2s, transform 0.1s;
}

.btn-cta-light:hover {
    background-color: #f8fafc;
    transform: translateY(-2px);
}

.btn-cta-outline {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    height: 56px;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-cta-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateY(-2px);
    color: #ffffff;
}

/* ========================================
   WordPress Care Specific Styles 
   ======================================== */

.wpcare-template .wpcare-hero {
    background-color: #ffffff;
    border-radius: var(--srv-radius);
    border: 1px solid var(--srv-border);
    padding: 60px 40px;
    margin-bottom: 48px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
    .wpcare-template .wpcare-hero {
        padding: 80px;
    }
}

/* Outlined buttons handled globally */

/* Hero Visual Fixes for WP */
.wp-visual-card {
    width: 240px;
    height: 240px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
    border: 1px solid var(--srv-border);
}

.wp-visual-card i {
    font-size: 110px;
    color: var(--srv-primary);
}

.wp-visual-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(43, 108, 176, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

/* Sidebar Feature Check */
.care-highlight-card {
    border-top: 4px solid var(--srv-primary);
}

/* Alt background section */
.wp-alt-bg {
    background-color: #ffffff !important;
    border-top: 1px solid var(--srv-border);
    border-bottom: 1px solid var(--srv-border);
}

/* Tech Logos */
.tech-logos-section {
    padding: 60px 0;
    background-color: rgba(255, 255, 255, 0.5);
}

.tech-label {
    text-align: center;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #94a3b8;
    margin-bottom: 40px;
}

.tech-logo-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 48px;
    opacity: 0.6;
}

.logo-box {
    font-size: 18px;
    font-weight: 900;
    color: #64748b;
    filter: grayscale(1);
    transition: all 0.3s;
}

.logo-box:hover {
    filter: grayscale(0);
    opacity: 1;
    color: var(--srv-primary);
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
}

.faq-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: #ffffff;
    border: 1px solid var(--srv-border);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s;
}

.faq-item summary {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 18px;
    color: var(--srv-text-dark);
}

.faq-item summary i {
    transition: transform 0.3s ease;
    color: var(--srv-text-muted);
}

.faq-item[open] summary i {
    transform: rotate(180deg);
}

.faq-content {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--srv-border);
    font-size: 16px;
    line-height: 1.6;
    color: var(--srv-text-muted);
}

/* ========================================
   SEO & Email Marketing Specific Styles
   ======================================== */

/* Generic Hero Overrides */
.seo-template .seo-hero,
.emailmkt-template .emailmkt-hero {
    background-color: #ffffff;
    border-radius: var(--srv-radius);
    border: 1px solid var(--srv-border);
    padding: 60px 40px;
    margin-bottom: 48px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.seo-template .hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.seo-template .btn-outline-srv {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 32px;
    height: 48px;
    background-color: transparent;
    border: 1px solid var(--srv-primary);
    color: var(--srv-primary);
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
}

.seo-template .btn-outline-srv:hover {
    background-color: rgba(43, 108, 176, 0.05);
    transform: translateY(-2px);
}

.seo-template .btn-primary-srv {
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 32px;
}

@media (min-width: 768px) {

    .seo-template .seo-hero,
    .emailmkt-template .emailmkt-hero {
        padding: 80px;
    }
}

/* SEO Visuals */
.hero-icon-badge {
    width: 64px;
    height: 64px;
    background: rgba(43, 108, 176, 0.1);
    color: var(--srv-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    margin-bottom: 24px;
    font-size: 28px;
}

.seo-visual-box {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, rgba(43, 108, 176, 0.05) 0%, rgba(43, 108, 176, 0.1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(43, 108, 176, 0.1);
    position: relative;
    overflow: hidden;
}

.seo-visual-box::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://www.transparenttextures.com/patterns/cubes.png');
    opacity: 0.1;
}

.seo-chart-icon i {
    font-size: 100px;
    color: var(--srv-primary);
    opacity: 0.2;
    transform: rotate(-10deg);
}

/* SEO Solutions Stack */
.seo-solutions-stack {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

.seo-sol-card {
    display: flex;
    gap: 24px;
    padding: 32px;
    background: #ffffff;
    border: 1px solid var(--srv-border);
    border-radius: 16px;
    transition: box-shadow 0.3s;
}

.seo-sol-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.sol-icon {
    width: 60px;
    height: 60px;
    background: rgba(43, 108, 176, 0.1);
    color: var(--srv-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    flex-shrink: 0;
    font-size: 24px;
}

.sol-desc h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.sol-desc p {
    font-size: 15px;
    color: var(--srv-text-muted);
}

/* Success Stories Grid */
.success-stories-section {
    padding: 0;
}

.section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
}


.view-all-link {
    color: var(--srv-primary);
    font-weight: 800;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.2s;
}

.view-all-link:hover {
    gap: 12px;
}

.success-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .success-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.story-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--srv-border);
    transition: transform 0.3s, box-shadow 0.3s;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.story-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}

.story-tag {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--srv-primary);
    display: block;
    margin-bottom: 4px;
}

.story-header h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 800;
}

.result-badge {
    text-align: right;
}

.res-val {
    display: block;
    font-size: 32px;
    font-weight: 900;
    color: var(--srv-primary);
    line-height: 1;
}

.res-lab {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--srv-text-muted);
}

.loading-bar {
    width: 100%;
    height: 6px;
    background: #f1f5f9;
    border-radius: 10px;
    margin-top: 24px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: var(--srv-primary);
}

/* Email Marketing Specifics */
.email-visual-box {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    background: rgba(43, 108, 176, 0.05);
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(43, 108, 176, 0.1);
}

.email-visual-box i {
    font-size: 140px;
    color: var(--srv-primary);
}

.benefit-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.benefit-item {
    display: flex;
    gap: 20px;
}

.benefit-icon-box {
    width: 50px;
    height: 50px;
    background: rgba(43, 108, 176, 0.1);
    color: var(--srv-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
    font-size: 20px;
}

.benefit-content h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--srv-primary);
    margin-bottom: 8px;
}

.email-process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .email-process-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.email-step-circle {
    width: 80px;
    height: 80px;
    background: #ffffff;
    border: 4px solid var(--srv-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
    color: var(--srv-primary);
    transition: background 0.3s, color 0.3s;
}

.email-step:hover .email-step-circle {
    background: var(--srv-primary);
    color: #ffffff;
}

.email-platforms .platform-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    font-weight: 800;
    color: var(--srv-text-dark);
    margin-top: 10px;
}

.email-platforms .platform-item i {
    font-size: 32px;
    color: var(--srv-primary);
}

.mkt-card {
    padding: 0 !important;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: #ffffff;
}

.mkt-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
}

.mkt-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.mkt-card:hover .mkt-image img {
    transform: scale(1.05);
}

.mkt-body {
    padding: 32px;
    background: #ffffff;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


.mkt-tag {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--srv-primary);
    letter-spacing: 0.1em;
}

.mkt-body h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 800;
    margin: 8px 0 16px;
}

.mkt-stats {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 20px;
    color: var(--srv-primary);
}

/* Dark Sidebar for SEO */
.seo-highlight-card {
    background-color: var(--srv-primary) !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: 0 25px 50px -12px rgba(43, 108, 176, 0.25);
}

.seo-highlight-card .sidebar-title {
    color: #ffffff !important;
    font-size: 22px;
}

.seo-highlight-card .highlight-list li {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
}

.seo-highlight-card .highlight-list li i {
    color: #ffffff !important;
    opacity: 1;
}

.seo-highlight-card .btn-sidebar-cta.light {
    background-color: #ffffff !important;
    color: var(--srv-primary) !important;
    margin-top: 10px;
    font-weight: 800;
}

.sidebar-footer-note {
    color: rgba(255, 255, 255, 0.7);
}

/* Roadmap Refinement */
.seo-template .process-steps .step-num-box {
    display: none;
}

.seo-template .process-icon {
    width: 64px;
    height: 64px;
    background-color: var(--srv-primary);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 24px;
}

/* Bottom CTA Specifically for SEO */
.seo-template .bottom-cta-area .cta-btns {
    gap: 12px;
}

.seo-template .bottom-cta-area .btn-cta-light {
    min-width: 220px;
}

.seo-template .bottom-cta-area .btn-cta-outline {
    min-width: 220px;
    border-color: rgba(255, 255, 255, 0.3);
}

.stat-sep {
    color: #e2e8f0;
    font-weight: 200;
}

.seo-alt-bg,
.email-alt-bg,
.cloud-alt-bg,
.cyber-alt-bg {
    background-color: #ffffff !important;
    border-top: 1px solid var(--srv-border);
    border-bottom: 1px solid var(--srv-border);
}

/* ========================================
   Cyber Security Specific Styles
   ======================================== */

.cyber-template .cyber-hero {
    background-color: transparent;
    padding: 20px 0 80px;
    margin-bottom: 20px;
    border: none;
    box-shadow: none;
    position: relative;
    overflow: hidden;
}

.cyber-template .hero-flex {
    flex-direction: column !important;
    text-align: center !important;
    align-items: center !important;
}

.cyber-template .cyber-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(43, 108, 176, 0.05) 0%, transparent 70%);
    z-index: -1;
}

.cyber-template .cyber-hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(43, 108, 176, 0.05) 0%, transparent 70%);
    z-index: -1;
}

.cyber-template .service-breadcrumbs .current {
    color: #2b6cb0;
    font-weight: 500;
}

@media (min-width: 768px) {
    .cyber-template .cyber-hero {
        padding: 80px;
    }
}

.cyber-hero-icon-box {
    width: 84px;
    height: 84px;
    background: #eef2ff;
    color: #2b6cb0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto;
}

.cyber-solutions-stack {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cyber-sol-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.cyber-sol-card:hover {
    transform: translateY(-4px);
}

.sol-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.sol-card-header i {
    font-size: 24px;
}

.sol-card-header h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 700;
}

.cyber-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--srv-border);
}

.cyber-tags span {
    font-size: 14px;
    font-weight: 600;
    color: var(--srv-text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.text-success {
    color: #22c55e;
}

/* Cyber Sidebar */
.cyber-highlight-card {
    background-color: var(--srv-primary) !important;
    color: #ffffff !important;
    border: none !important;
}

.cyber-highlight-card .sidebar-title {
    color: #ffffff !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
    margin-bottom: 0;
}

.cyber-highlight-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cyber-highlight-list li {
    display: flex;
    gap: 16px;
}

.cyber-highlight-list li i {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
}

.cyber-highlight-list li strong {
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
}

.cyber-highlight-list li p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.cyber-testimonial {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid #e2e8f0;
}

.cyber-testimonial p {
    font-style: italic;
    font-size: 14px;
    color: #4a5568;
    margin-bottom: 12px;
    line-height: 1.6;
}

.cyber-testimonial span {
    font-size: 13px;
    font-weight: 700;
    color: #2d3748;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Cyber Process */
.cyber-process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 60px;
    position: relative;
}

@media (min-width: 768px) {
    .cyber-process-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.cyber-step-icon {
    width: 64px;
    height: 64px;
    background: #f1f5f9;
    color: #1e293b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin: 0 auto 24px;
    transition: all 0.3s;
}

.cyber-step:hover .cyber-step-icon {
    background: #e2e8f0;
    transform: scale(1.1);
}

.cyber-step h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.cyber-step:hover .cyber-step-icon {
    background: var(--srv-primary);
    color: #ffffff;
    transform: translateY(-5px);
}

/* Tech Stack Label */
.tech-stack-label-section {
    padding: 60px 0;
    background: #f8fafc;
}

.tech-stack-label {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #94a3b8;
    text-align: center;
    margin-bottom: 40px;
}

.cyber-partner-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.partner-logo-box {
    background: #f1f5f9;
    color: #94a3b8;
    font-weight: 800;
    width: 140px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 10px;
    letter-spacing: 0.05em;
}

/* Cyber Case Studies */
.cyber-case-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .cyber-case-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.cyber-case-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid var(--srv-border);
    overflow: hidden;
    transition: all 0.3s;
}

.cyber-case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.case-image-placeholder {
    height: 200px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-image-placeholder i {
    font-size: 48px;
    color: #2b6cb0;
    opacity: 0.6;
    background: #ffffff;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.case-body {
    padding: 24px;
}

.case-tag {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--srv-primary);
    display: block;
    margin-bottom: 8px;
}

.case-body h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 12px;
}

.case-body p {
    font-size: 14px;
    color: var(--srv-text-muted);
    margin-bottom: 20px;
}

.read-more-link {
    font-size: 13px;
    font-weight: 700;
    color: var(--srv-primary);
    text-decoration: none;
}

.cyber-cta-box {
    padding: 80px 40px !important;
    border-radius: 32px !important;
    background-color: #2b6cb0 !important;
    background-image: radial-gradient(rgba(255, 255, 255, 0.15) 1.5px, transparent 1.5px) !important;
    background-size: 30px 30px !important;
    position: relative;
    border: none !important;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cyber-cta-box .cta-title {
    font-family: 'Outfit', sans-serif;
    font-size: 52px;
    font-weight: 900;
    margin-bottom: 20px;
    color: #ffffff !important;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.cyber-cta-box .cta-desc {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
    color: #ffffff !important;
}

.cyber-cta-box .cta-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.cyber-cta-box .btn-cta-light {
    background-color: #ffffff !important;
    color: #2b6cb0 !important;
    font-weight: 800 !important;
    border-radius: 12px !important;
    padding: 0 32px !important;
    min-width: 220px !important;
    height: 60px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #ffffff !important;
    font-size: 16px !important;
}

.cyber-cta-box .btn-cta-light:hover {
    background-color: #f8fafc !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.cyber-cta-box .btn-cta-outline {
    background-color: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    font-weight: 800 !important;
    border-radius: 12px !important;
    padding: 0 32px !important;
    min-width: 220px !important;
    height: 60px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1.5px solid rgba(255, 255, 255, 0.4) !important;
    font-size: 16px !important;
}

.cyber-cta-box .btn-cta-outline:hover {
    background-color: rgba(255, 255, 255, 0.2) !important;
    border-color: #ffffff !important;
    transform: translateY(-2px);
}


/* ========================================
   Cloud Hosting Specific Styles
   ======================================== */

.cloud-template .cloud-hero {
    background-color: #ffffff;
    border-radius: var(--srv-radius);
    border: 1px solid var(--srv-border);
    padding: 60px 40px;
    margin-bottom: 48px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
    .cloud-template .cloud-hero {
        padding: 80px;
    }
}

.cloud-visual-box {
    width: 100%;
    max-width: 320px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.cloud-visual-box::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(43, 108, 176, 0.1) 0%, transparent 70%);
}

.cloud-visual-box i {
    font-size: 160px;
    color: var(--srv-primary);
    position: relative;
    z-index: 2;
}

.infra-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 40px;
}

@media (min-width: 768px) {
    .infra-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.infra-item {
    padding-top: 24px;
    border-top: 1px solid var(--srv-border);
}

.infra-title {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--srv-primary);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.cloud-highlight-card {
    border-radius: 20px;
}

/* Cloud Process */
.cloud-process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    margin-top: 60px;
}

@media (min-width: 768px) {
    .cloud-process-steps {
        grid-template-columns: repeat(4, 1fr);
    }
}

.cloud-step-icon {
    width: 80px;
    height: 80px;
    background-color: var(--srv-primary);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 24px;
    box-shadow: 0 0 0 10px rgba(43, 108, 176, 0.05);
}

/* Partners Section */
.partners-section {
    padding: 100px 0;
}

.partners-box {
    background: #ffffff;
    padding: 60px 40px;
    border-radius: 24px;
    border: 1px solid var(--srv-border);
}

.partners-logo-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 60px;
    opacity: 0.6;
}

.partner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.1em;
}

.partner-item i {
    font-size: 48px;
    color: #64748b;
}

/* Perf Cards */
.perf-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 1024px) {
    .perf-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.perf-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid var(--srv-border);
}

.perf-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 32px;
}

.perf-header h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 800;
}

.perf-subtitle {
    font-size: 13px;
    color: var(--srv-text-muted);
    font-style: italic;
}

.perf-icon-badge {
    width: 44px;
    height: 44px;
    background: var(--srv-primary);
    color: #ffffff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.perf-stats {
    display: flex;
    align-items: flex-end;
    gap: 32px;
}

.stat-box {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-lab {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    color: #94a3b8;
}

.stat-val {
    font-size: 24px;
    font-weight: 700;
}

.stat-val.muted {
    color: #cbd5e1;
}

.stat-val.highlight {
    font-size: 40px;
    font-weight: 900;
    color: var(--srv-primary);
    line-height: 1;
}

.stat-val.success {
    font-size: 32px;
    font-weight: 900;
    color: #22c55e;
    line-height: 1;
}

.stat-box.right {
    margin-left: auto;
    text-align: right;
}

.cloud-cta-box {
    padding: 80px 40px !important;
    border-radius: 32px !important;
}

.anim-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .8;
        transform: scale(1.05);
    }
}