/* Reset and Base Styles */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0a2540;
    --primary-dark: #051a2d;
    --primary-light: #0f3460;
    --secondary-color: #ff6600;
    --secondary-hover: #e55a00;
    --accent-color: #4a90e2;
    --accent-light: #7db8e8;
    --accent-lighter: #a8d0f0;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --text-muted: #94a3b8;
    --bg-light: #f1f5f9;
    --bg-subtle: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-xl: 20px;
    --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --shadow: 0 1px 3px rgba(10, 37, 64, 0.08), 0 4px 12px rgba(10, 37, 64, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(10, 37, 64, 0.07), 0 10px 20px -5px rgba(10, 37, 64, 0.08);
    --shadow-lg: 0 10px 25px -5px rgba(10, 37, 64, 0.12), 0 8px 10px -6px rgba(10, 37, 64, 0.06);
    --shadow-soft: 0 2px 15px rgba(10, 37, 64, 0.06);
    --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-primary);
    line-height: 1.65;
    color: var(--text-dark);
    background-color: var(--bg-subtle);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 1rem;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

input, textarea, select, button {
    font-family: var(--font-primary);
}

h1 {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

h2 {
    font-size: 2rem;
    font-weight: 700;
}

h3 {
    font-size: 1.35rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition), border-color var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(180deg, var(--secondary-color) 0%, var(--secondary-hover) 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(255, 102, 0, 0.35);
}

.btn-primary:hover {
    background: linear-gradient(180deg, #ff7520 0%, var(--secondary-color) 100%);
    color: white;
    box-shadow: 0 4px 14px rgba(255, 102, 0, 0.4);
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-1px);
}

.btn-accent {
    background-color: var(--secondary-color);
    color: white;
}

.btn-accent:hover {
    background-color: #e55a00;
    color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Sticky Header */
.sticky-header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 1px 0 var(--border-color), var(--shadow-soft);
    z-index: 1000;
    padding: 1rem 0;
    transition: box-shadow var(--transition);
}

.sticky-header .container {
    display: flex;
    align-items: center;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    width: 100%;
    min-height: 48px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo a img {
    display: block;
    vertical-align: middle;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.main-nav a {
    color: var(--text-dark);
    font-weight: 500;
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 0 0.15rem;
    white-space: nowrap;
}

.main-nav a:hover {
    color: var(--primary-color);
}

.main-nav a .nav-line1 {
    white-space: nowrap;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-cta .btn {
    min-width: 165px;
    text-align: center;
    white-space: nowrap;
}

.main-nav li {
    display: flex;
    align-items: center;
}

.phone-link {
    color: var(--text-dark);
    font-weight: 600;
    white-space: nowrap;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: linear-gradient(145deg, rgba(10, 37, 64, 0.5) 0%, rgba(6, 30, 54, 0.45) 50%, rgba(6, 30, 54, 0.55) 100%),
                url(/images/hero-bg.png) center right / cover no-repeat;
    background-color: var(--primary-dark);
    color: white;
    padding: 4.5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(255, 102, 0, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 2.5rem;
    align-items: center;
    max-width: 1140px;
    margin: 0 auto;
}

.hero-content {
    max-width: 100%;
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-image {
    position: relative;
    z-index: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.hero-image img {
    width: 100%;
    height: auto;
    min-height: 280px;
    display: block;
    object-fit: cover;
}

.hero-headline {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.4;
    color: white;
    margin-bottom: 1.25rem;
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.hero-headline-top {
    text-align: center;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.75rem;
}

.hero-headline strong,
.hero-headline-accent {
    color: #ff8533;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(255, 102, 0, 0.2);
}

.hero h1 {
    color: white;
    font-size: 2.25rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.hero h1 + .hero-subtitle {
    margin-top: 0;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.9);
}

/* Dark hero areas (.hero and .page-header): secondary/outline buttons use navy text by default — force light treatment */
.hero .btn-secondary,
.page-header .btn-secondary,
.page-header .hero-cta .btn-secondary,
.assessment-cta .btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.92);
}

.hero .btn-secondary:hover,
.page-header .btn-secondary:hover,
.page-header .hero-cta .btn-secondary:hover,
.assessment-cta .btn-secondary:hover {
    background-color: #ffffff;
    color: var(--primary-color);
    border-color: #ffffff;
}

.hero .cta-alt {
    color: rgba(255, 255, 255, 0.9);
}

.hero .cta-alt a {
    color: #ff8533;
    text-decoration: underline;
}

.hero .cta-alt a:hover {
    color: #fff;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero .hero-cta {
    justify-content: center;
}

.hero-cta-extras {
    text-align: center;
    width: 100%;
}

.hero-cta-extras .cta-alt {
    text-align: center;
}

.hero-trust-bar {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.95);
}

.trust-bar-item {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.trust-bar-icon {
    font-style: normal;
}

/* Problem Agitation */
.problem-agitation {
    padding: 4.5rem 0;
    background: linear-gradient(160deg, #e8eef5 0%, #dde5f0 35%, var(--bg-light) 100%);
    position: relative;
}

.problem-agitation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
    opacity: 0.6;
}

.problem-headline {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.problem-subhead {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.problem-card {
    position: relative;
}

.problem-card-inner {
    background: white;
    padding: 2rem 1.75rem;
    border-radius: var(--radius-lg);
    height: 100%;
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--secondary-color);
    box-shadow: 0 2px 12px rgba(10, 37, 64, 0.06);
    transition: transform var(--transition), box-shadow var(--transition), border-left-color var(--transition);
}

.problem-card:hover .problem-card-inner {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(10, 37, 64, 0.1);
    border-left-color: var(--primary-color);
}

.problem-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.12) 0%, rgba(255, 102, 0, 0.06) 100%);
    margin-bottom: 1.25rem;
}

.problem-icon {
    font-size: 1.75rem;
    line-height: 1;
}

.problem-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.6rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.problem-card:hover h3 {
    color: var(--secondary-color);
}

.problem-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
    line-height: 1.65;
    color: var(--text-light);
}

.problem-cta-wrap {
    text-align: center;
}

.problem-cta-btn {
    display: inline-block;
    padding: 1rem 1.75rem;
    font-size: 1.05rem;
}

/* Testimonials Carousel (sliding, infinite loop) */
.testimonials-carousel-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, #e8f1fa 0%, #dce8f4 100%);
}

.testimonials-carousel-wrap {
    overflow: hidden;
    margin-top: 2rem;
    padding: 0.5rem 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
}

.testimonials-carousel-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: testimonials-scroll 45s linear infinite;
}

.testimonials-carousel-wrap:hover .testimonials-carousel-track {
    animation-play-state: paused;
}

@keyframes testimonials-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.testimonial-box {
    flex: 0 0 340px;
    max-width: 340px;
    background: white;
    padding: 1.75rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.testimonial-box-quote {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.testimonial-box-text {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.testimonial-box-author {
    border-top: 1px solid var(--border-color);
    padding-top: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.testimonial-box-author strong {
    color: var(--primary-color);
}

.testimonial-box-author span {
    color: var(--text-light);
    font-weight: 400;
}

.testimonial-box-rating {
    margin: 0.5rem 0 0;
    font-size: 0.95rem;
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .testimonial-box {
        flex: 0 0 300px;
        max-width: 300px;
    }
}

/* Why Choose LecsIT (navy + background image) */
.why-choose-lecsit {
    padding: 4rem 0;
    background: url(/images/why-choose-lecsit-bg.png) center / cover no-repeat;
    color: white;
    position: relative;
}

.why-choose-lecsit::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(145deg, rgba(10, 37, 64, 0.45) 0%, rgba(6, 30, 54, 0.5) 100%);
    pointer-events: none;
}

.why-choose-lecsit .container {
    position: relative;
    z-index: 1;
}

.why-choose-lecsit .section-title,
.why-choose-lecsit .why-choose-sub,
.why-choose-lecsit .why-choose-item h3,
.why-choose-lecsit .why-choose-item p {
    text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    gap: 2.5rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.why-choose-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.why-choose-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.why-choose-intro .section-title {
    color: white;
    text-align: left;
    margin-bottom: 0.5rem;
}

.why-choose-sub {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin: 0;
}

.why-choose-list {
    display: grid;
    gap: 1.25rem;
}

.why-choose-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.why-choose-check {
    color: var(--secondary-color);
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.why-choose-item h3 {
    color: white;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.why-choose-item p {
    color: rgba(255,255,255,0.85);
    margin: 0;
    font-size: 0.95rem;
}

/* Industries We Serve */
.industries-serve {
    padding: 4rem 0;
    background-color: #f0f8ff;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
}

.industry-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.industry-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-lighter);
}

.industry-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.75rem;
}

.industry-card h3 {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 0.35rem;
}

.industry-card p {
    font-size: 0.85rem;
    margin: 0;
    color: var(--text-light);
}

/* Service area cities */
.service-area-cities {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.cities-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.cities-column li {
    margin-bottom: 0.5rem;
}

.cities-column a {
    color: var(--primary-color);
}

.cities-column a:hover {
    color: var(--secondary-color);
}

/* Lead Magnet */
.lead-magnet {
    padding: 4rem 0;
    background: linear-gradient(145deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    position: relative;
}

.lead-magnet::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 50% at 0% 50%, rgba(255, 102, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.lead-magnet-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

.lead-magnet-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.lead-magnet-report-cover {
    margin: 0 0 1.25rem 0;
    text-align: center;
}

.lead-magnet-report-cover img {
    display: inline-block;
    max-width: 280px;
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

.lead-magnet-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.lead-magnet-content p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 1rem;
}

.lead-magnet-list {
    margin: 0 0 1rem 1.25rem;
    padding: 0;
    color: rgba(255,255,255,0.95);
}

.lead-magnet-list li {
    margin-bottom: 0.5rem;
}

.lead-magnet-form-wrap {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    position: relative;
    z-index: 1;
}

.lead-magnet-form-heading {
    margin: 0 0 1.25rem 0;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.35;
    text-align: center;
}

.lead-magnet-form .form-group label {
    color: var(--text-dark);
}

.lead-magnet-form button[type="submit"] {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.lead-magnet-privacy {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 1rem;
    text-align: center;
}

.section-cta-center {
    text-align: center;
    margin: 2rem 0 0;
}

.section-cta-center .btn {
    margin-top: 0.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.cta-alt {
    text-align: center;
    margin-top: 1.5rem;
}

.cta-alt a {
    color: white;
    text-decoration: underline;
}

.services-grid-four {
    grid-template-columns: repeat(4, 1fr);
}

.testimonial-rating {
    margin: 1rem 0 0;
    font-size: 1rem;
    color: var(--secondary-color);
}

/* City / intro two-column layout */
.intro-two-col {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 2rem;
    align-items: start;
}

.intro-main h2 { margin-top: 0; }

.intro-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-box {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
}

.sidebar-box h3 {
    margin-top: 0;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.sidebar-box ul { margin-bottom: 0; }

/* Blog layout */
.blog-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2.5rem;
    align-items: start;
}

.blog-main { min-width: 0; }

.blog-featured {
    margin-bottom: 2.5rem;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--border-color);
}

.blog-featured-image {
    margin-bottom: 0;
    border-radius: 8px;
    overflow: hidden;
    height: clamp(200px, 28vw, 280px);
    background: var(--bg-light);
}

.blog-featured-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.blog-featured-body {
    padding: 1.5rem 2rem 2rem;
}

.blog-featured-body h2 {
    margin: 0.5rem 0 0.75rem;
    font-size: 1.5rem;
}

.blog-category {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-meta, .blog-card-meta {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.blog-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.blog-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.08); }

.blog-card-image {
    margin: 0;
    border-radius: 8px;
    overflow: hidden;
    min-height: 160px;
    background: var(--bg-light);
}

.blog-card-image img {
    width: 100%;
    height: auto;
    min-height: 160px;
    display: block;
    object-fit: cover;
}

.blog-card-body { padding: 1.25rem; }

.blog-card-body h3 {
    margin: 0.5rem 0 0.5rem;
    font-size: 1.1rem;
}

.blog-card-body p {
    margin: 0 0 0.5rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.blog-sidebar {
    position: sticky;
    top: 100px;
}

/* Blog & Newsletter signup sections */
.blog-signup-section {
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border-color);
}

.blog-signup-section.blog-signup-top {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
    margin-bottom: 3rem;
}

.blog-signup-box-image {
    height: 180px;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin: -1.75rem -1.75rem 1rem -1.75rem;
    margin-bottom: 1rem;
    flex-shrink: 0;
}

.blog-signup-box-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.blog-signup-section-title {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.blog-signup-intro {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    max-width: 640px;
}

.blog-signup-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: stretch;
}

.blog-signup-box {
    background: white;
    padding: 1.75rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
}

.blog-signup-box h3 {
    margin-top: 0;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
}

.blog-signup-desc {
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.5;
    flex: 1;
}

.blog-signup-form .form-group {
    margin-bottom: 1rem;
}

.blog-signup-form .form-group label {
    display: block;
    margin-bottom: 0.35rem;
    font-weight: 500;
    color: var(--text-dark);
}

.blog-signup-form input[type="email"] {
    width: 100%;
    padding: 0.6rem 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 1rem;
}

@media (max-width: 768px) {
    .blog-signup-grid {
        grid-template-columns: 1fr;
    }
}

.blog-post-meta {
    margin: 0.5rem 0 0;
    font-size: 0.95rem;
    color: var(--text-muted, #666);
}

.blog-single {
    max-width: 980px;
    width: 100%;
    margin: 0 auto;
}

.blog-single-image {
    margin-bottom: 1.5rem;
    border-radius: var(--radius-md);
    overflow: hidden;
    max-height: min(45vh, 380px);
}

.blog-single-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.blog-single-inline-title {
    margin: 0.5rem 0 1rem;
    font-size: clamp(1.35rem, 2vw, 1.85rem);
    line-height: 1.25;
    color: var(--text-dark);
    text-align: center;
}

.blog-single-body {
    line-height: 1.7;
}

.blog-single-body h2 { margin-top: 1.5rem; margin-bottom: 0.5rem; }
.blog-single-body h3 { margin-top: 1.25rem; margin-bottom: 0.5rem; }
.blog-single-body p { margin-bottom: 1rem; }
.blog-single-body ul, .blog-single-body ol { margin-bottom: 1rem; padding-left: 1.5rem; }

.blog-post-layout .blog-single {
    max-width: none;
}

.blog-sidebar-posts {
    display: grid;
    gap: 0.9rem;
}

.blog-sidebar-post {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.85rem;
}

.blog-sidebar-post:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.blog-sidebar-post h4 {
    margin: 0 0 0.25rem;
    font-size: 1rem;
    line-height: 1.35;
}

.blog-sidebar-post h4 a {
    color: var(--text-dark);
}

.blog-sidebar-post p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ===== Discovery Call landing page (imitate lecsit.com/discoverycall) ===== */
.discovery-page-main {
    background: white;
    padding: 2rem 0 3rem;
}

.discovery-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 2.5rem;
}

.discovery-col-content {
    min-width: 0;
}

.discovery-call-page .discovery-hero {
    text-align: center;
    padding: 0 0 1.5rem;
}

.discovery-call-page .discovery-hero h1 {
    font-size: 1.85rem;
    line-height: 1.35;
    color: var(--primary-color);
    margin: 0;
}

.discovery-content {
    margin: 0;
}

.discovery-content p {
    margin-bottom: 1rem;
}

.discovery-list {
    list-style: none;
    margin: 1rem 0 1.5rem 0;
    padding: 0;
}

.discovery-list li {
    margin-bottom: 0.75rem;
    padding-left: 1.75rem;
    position: relative;
    line-height: 1.5;
}

.discovery-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.25rem;
    width: 1.1em;
    height: 1.1em;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a1a1a' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") center/contain no-repeat;
}

.discovery-cta-text {
    text-align: center;
    font-size: 1.15rem;
    margin-top: 2rem !important;
}

.discovery-col-form {
    min-width: 0;
}

.discovery-form-card {
    background: white;
    padding: 2rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.discovery-form-title {
    font-size: 1.35rem;
    color: var(--primary-color);
    margin: 0 0 1.5rem 0;
    line-height: 1.35;
    text-align: center;
}

.discovery-form .form-group {
    margin-bottom: 1rem;
}

.discovery-form label {
    display: block;
    margin-bottom: 0.35rem;
    font-weight: 500;
    color: var(--text-dark);
}

.discovery-form input {
    width: 100%;
    padding: 0.6rem 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 1rem;
}

.form-group-hp {
    position: absolute;
    left: -9999px;
}

.discovery-form-btn {
    width: 100%;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.discovery-form-note {
    margin-top: 1.25rem;
    font-size: 0.9rem;
    color: var(--text-dark);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.discovery-note-icon {
    flex-shrink: 0;
    color: #c53030;
}

.discovery-note-icon svg {
    display: block;
}

.discovery-testimonial {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 0;
}

.discovery-quote {
    margin: 0;
    padding: 1.5rem 2rem;
    background: var(--bg-subtle);
    border-left: 4px solid var(--secondary-color);
    border-radius: var(--radius-md);
}

.discovery-quote p {
    margin-bottom: 1rem;
}

.discovery-quote footer {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: var(--text-light);
}

.discovery-quote cite {
    font-style: normal;
    font-weight: 600;
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .discovery-two-col {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .hero-content {
        text-align: center;
    }
    .hero .hero-cta {
        justify-content: center;
    }
    .hero-image {
        max-width: 100%;
        margin: 0 auto;
    }
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    .why-choose-image {
        max-width: 400px;
        margin: 0 auto;
    }
    .testimonials-with-image {
        grid-template-columns: 1fr;
    }
    .testimonials-image {
        max-width: 400px;
        margin: 0 auto;
    }
    .about-intro-grid {
        grid-template-columns: 1fr;
    }
    .about-intro-image {
        position: static;
        max-width: 400px;
        margin: 0 auto;
    }
    .intro-two-col {
        grid-template-columns: 1fr;
    }
    .intro-sidebar { position: static; }
    .blog-layout {
        grid-template-columns: 1fr;
    }
    .blog-sidebar { position: static; }
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* Testimonials */
.testimonials-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, #eff6ff 0%, #e0f2fe 100%);
}

.testimonials-with-image {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2.5rem;
    align-items: start;
    margin-top: 2rem;
}

.testimonials-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.testimonials-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.testimonials-slider-wrap {
    min-width: 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
    font-weight: 700;
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    display: none;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.testimonial-card.active {
    display: block;
}

.testimonial-quote {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
}

.testimonial-author strong {
    display: block;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background-color: #ccc;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.testimonial-dot.active {
    background-color: var(--primary-color);
}

/* Switching is easy 1-2-3 */
.switch-easy-section {
    padding: 4rem 0;
    background: #fff;
    text-align: center;
}

.switch-easy-head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}

.switch-easy-head-prefix {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.switch-easy-logo {
    height: 48px;
    width: auto;
    vertical-align: middle;
}

.switch-easy-head-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.switch-easy-head-accent {
    color: var(--secondary-color);
}

.switch-easy-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 2.5rem;
    line-height: 1.2;
}

.switch-easy-123 {
    display: block;
    font-size: 1.15em;
    margin-top: 0.2em;
}

.switch-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-bottom: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.switch-step {
    padding: 1.5rem 1.25rem 2rem;
    text-align: center;
    border-left: 1px solid rgba(255, 102, 0, 0.35);
}

.switch-step:first-child {
    border-left: none;
}

.switch-step-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 0.35rem;
}

.switch-step-keywords {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0 0 1rem;
}

.switch-step-visual {
    margin-bottom: 1rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #f8f9fa;
    box-shadow: 0 2px 8px rgba(10, 37, 64, 0.06);
}

.switch-step-visual img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.switch-step-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0;
}

.switch-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.25rem 0.5rem;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.switch-benefits-list li {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.switch-benefits-list li:not(:last-child)::after {
    content: "•";
    color: var(--text-light);
    font-weight: 700;
}

@media (max-width: 768px) {
    .switch-steps {
        grid-template-columns: 1fr;
    }

    .switch-step {
        border-left: none;
        border-top: 1px solid rgba(255, 102, 0, 0.35);
        padding-top: 2rem;
    }

    .switch-step:first-child {
        border-top: none;
        padding-top: 1.5rem;
    }

    .switch-benefits-list {
        flex-direction: column;
        align-items: center;
    }

    .switch-benefits-list li:not(:last-child)::after {
        content: none;
    }
}

/* Services Overview */
.services-overview {
    padding: 4rem 0;
}

/* ===== Compare IT Providers page redesign ===== */
.compare-it-providers .page-header {
    position: relative;
    overflow: hidden;
}

.compare-it-providers .compare-hero-ornament {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -20px;
    height: 240px;
    pointer-events: none;
    opacity: 0.65;
    z-index: 0;
}

.compare-it-providers .page-header h1,
.compare-it-providers .page-header p {
    position: relative;
    z-index: 1;
}

.compare-it-providers .compare-hero-ornament svg {
    width: 100%;
    height: 100%;
    display: block;
}

.compare-it-providers .trust-grid {
    gap: 1.25rem;
}

.compare-it-providers .trust-item {
    display: flex;
    flex-direction: column;
    text-align: left;
}

/* Ensure trust-items on this page are left-aligned, overriding the global center alignment */
.compare-it-providers .page-content .content-section .trust-item {
    text-align: left;
}

.compare-it-providers .compare-item-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.compare-it-providers .compare-item-header h3 {
    margin: 0;
    font-size: 1.2rem;
}

.compare-it-providers .compare-item-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 102, 0, 0.12);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.compare-it-providers .compare-item-icon svg {
    width: 20px;
    height: 20px;
    display: block;
}

/* Full-width intro above split so heading + blurb center in the page (not only in the left column) */
.compare-it-providers .compare-ask-msp-intro {
    text-align: center;
    width: 100%;
    margin: 0;
    padding-bottom: 0.25rem;
}

.compare-it-providers .compare-ask-msp-intro h2 {
    text-align: center;
    margin-bottom: 0.75rem;
}

.compare-it-providers .compare-ask-msp-intro p {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.65;
}

@media (min-width: 992px) {
    .compare-it-providers .compare-split-section.compare-ask-msp .compare-ask-msp-intro {
        grid-column: 1 / -1;
        max-width: none;
        width: 100%;
    }

    .compare-it-providers .compare-split-section.compare-ask-msp .compare-ask-msp-intro p {
        max-width: 720px;
    }
}

.compare-it-providers .compare-split-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.compare-it-providers .compare-split-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: block;
    object-fit: cover;
}

@media (min-width: 992px) {
    .compare-it-providers .compare-split-section {
        grid-template-columns: 1.15fr 0.85fr;
    }
    .compare-it-providers .compare-split-section.reverse-layout {
        grid-template-columns: 0.85fr 1.15fr;
    }
    .compare-it-providers .compare-split-section.reverse-layout .compare-split-image {
        order: -1;
    }
}

.compare-it-providers .compare-red-flags .compare-red-flags-list {
    list-style: none;
    padding-left: 0;
    margin-top: 0.5rem;
    columns: 2;
    column-gap: 2.25rem;
}

.compare-it-providers .compare-red-flags .compare-red-flags-list li {
    break-inside: avoid;
    margin-bottom: 0.85rem;
    padding-left: 1.6rem;
    position: relative;
    color: var(--text-dark);
}

.compare-it-providers .compare-red-flags .compare-red-flags-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--secondary-color);
    box-shadow: 0 0 0 4px rgba(255, 102, 0, 0.12);
}

.compare-it-providers .compare-table-wrap {
    margin-top: 1.25rem;
    border-radius: var(--radius-lg);
    background: white;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
    padding: 1.25rem;
    overflow-x: auto;
    width: 100%;
}

.compare-it-providers .compare-msp-table th,
.compare-it-providers .compare-msp-table td {
    vertical-align: top;
}

.compare-it-providers .compare-msp-table {
    font-size: 0.98rem;
    max-width: none;
    table-layout: fixed;
}

.compare-it-providers .compare-msp-table th:nth-child(1),
.compare-it-providers .compare-msp-table td:nth-child(1) {
    width: 33.333%;
}

.compare-it-providers .compare-msp-table th:nth-child(2),
.compare-it-providers .compare-msp-table td:nth-child(2) {
    width: 33.333%;
}

.compare-it-providers .compare-msp-table th:nth-child(3),
.compare-it-providers .compare-msp-table td:nth-child(3) {
    width: 33.334%;
}

.compare-it-providers .compare-msp-table thead th {
    font-size: 0.95rem;
}

.compare-it-providers .compare-msp-table thead th.compare-logo-th {
    text-align: center;
}

.compare-it-providers .compare-logo-th {
    display: block;
    margin: 0 auto;
    max-width: 120px;
    height: auto;
}

.compare-it-providers .compare-msp-table td {
    padding: 14px 12px !important;
    line-height: 1.45 !important;
    white-space: normal;
    word-break: break-word;
}

.compare-it-providers .compare-msp-table tbody td:nth-child(1) {
    font-weight: 650;
}

.compare-it-providers .compare-msp-table tbody tr:nth-child(odd) td:nth-child(1),
.compare-it-providers .compare-msp-table tbody tr:nth-child(odd) td:nth-child(2) {
    background: rgba(10, 37, 64, 0.02);
}

.compare-it-providers .compare-msp-table tbody tr:nth-child(even) td:nth-child(1),
.compare-it-providers .compare-msp-table tbody tr:nth-child(even) td:nth-child(2) {
    background: rgba(10, 37, 64, 0.01);
}

.compare-it-providers .compare-msp-table tbody td:nth-child(3) {
    background: rgba(255, 102, 0, 0.06);
    border-left: 1px solid rgba(255, 102, 0, 0.18);
}

.compare-it-providers .compare-msp-table tbody td:last-child {
    background: rgba(255, 102, 0, 0.075);
    color: #7c2d12;
    font-weight: 700;
}

.compare-it-providers .compare-msp-table tbody tr:hover td:nth-child(1),
.compare-it-providers .compare-msp-table tbody tr:hover td:nth-child(2) {
    background: rgba(10, 37, 64, 0.04);
}

@media (max-width: 768px) {
    .compare-it-providers .compare-red-flags .compare-red-flags-list {
        columns: 1;
    }

    .compare-it-providers .compare-hero-ornament {
        opacity: 0.45;
        height: 160px;
    }
}

/* ===== Cybersecurity Services page redesign ===== */
.cybersecurity-services-page .cyber-hero-media {
    margin-top: 1.75rem;
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: var(--shadow-lg);
    background: rgba(255, 255, 255, 0.75);
}

.cybersecurity-services-page .cyber-hero-media img {
    width: 100%;
    height: auto;
    display: block;
}

.cybersecurity-services-page .cyber-checklist {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
    margin-right: 0;
    display: inline-block;
    max-width: 720px;
    text-align: left;
}

.cybersecurity-services-page .content-section {
    text-align: center;
}

.cybersecurity-services-page .trust-grid,
.cybersecurity-services-page .services-grid {
    justify-content: center;
}

@media (min-width: 992px) {
    /* Center the 4th vector card so it doesn't sit under the 2nd column item on desktop. */
    .cybersecurity-services-page .cyber-vector-center {
        grid-column: 1 / -1;
    }
}

.cybersecurity-services-page .cyber-checklist li {
    position: relative;
    padding-left: 1.65rem;
    margin-bottom: 0.65rem;
}

.cybersecurity-services-page .cyber-checklist li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.58rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 102, 0, 0.20);
    box-shadow: 0 0 0 4px rgba(255, 102, 0, 0.08);
}

.cybersecurity-services-page .cyber-service-card {
    text-align: center;
    padding-top: 1.5rem;
}

.cybersecurity-services-page .cyber-service-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: rgba(255, 102, 0, 0.10);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem auto;
}

.cybersecurity-services-page .cyber-service-icon svg {
    width: 26px;
    height: 26px;
}

.cybersecurity-services-page .cyber-vector-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(10, 37, 64, 0.06);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.65rem auto;
}

.cybersecurity-services-page .trust-item {
    text-align: center;
}

.cybersecurity-services-page .faq-section .faq-item {
    border-left: 4px solid rgba(255, 102, 0, 0.35);
    padding-left: 1rem;
}

.cybersecurity-services-page .faq-section h2 {
    text-align: center;
}

/* ===== Microsoft 365 Management page redesign ===== */
.microsoft-365-management-page .ms365-hero-media {
    margin-top: 1.75rem;
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: var(--shadow-lg);
    background: rgba(255, 255, 255, 0.75);
}

.microsoft-365-management-page .ms365-hero-media img {
    width: 100%;
    height: auto;
    display: block;
}

.microsoft-365-management-page .content-section {
    text-align: center;
}

.microsoft-365-management-page .ms365-checklist {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
    margin-right: 0;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    max-width: 720px;
    text-align: left;
}

.microsoft-365-management-page .ms365-checklist li {
    position: relative;
    padding-left: 1.65rem;
    margin-bottom: 0.65rem;
}

.microsoft-365-management-page .ms365-checklist li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.58rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 102, 0, 0.20);
    box-shadow: 0 0 0 4px rgba(255, 102, 0, 0.08);
}

.microsoft-365-management-page .ms365-service-card {
    text-align: center;
    padding-top: 1.5rem;
}

.microsoft-365-management-page .ms365-service-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: rgba(255, 102, 0, 0.10);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem auto;
}

.microsoft-365-management-page .ms365-service-icon svg {
    width: 26px;
    height: 26px;
}

.microsoft-365-management-page .ms365-trust-item {
    text-align: center;
}

.microsoft-365-management-page .ms365-trust-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(10, 37, 64, 0.06);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.65rem auto;
}

.microsoft-365-management-page .ms365-trust-icon svg {
    width: 22px;
    height: 22px;
}

.microsoft-365-management-page .faq-section h2 {
    text-align: center;
}

/* Backup & Disaster Recovery page tweaks */
.backup-disaster-recovery-page .faq-section h2 {
    text-align: center;
}

.backup-disaster-recovery-page .backup-hero-visual {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.backup-disaster-recovery-page .backup-hero-visual img {
    width: 64px;
    height: auto;
}

.backup-disaster-recovery-page .backup-ransomware-section {
    text-align: center;
}

.backup-disaster-recovery-page .backup-section-visual {
    display: flex;
    justify-content: center;
    margin: 0.75rem 0 1rem;
}

.backup-disaster-recovery-page .backup-section-visual img {
    width: 56px;
    height: auto;
}

.backup-disaster-recovery-page .backup-checklist {
    list-style: none;
    padding-left: 0;
    margin: 0 auto 2rem;
    width: fit-content;
    max-width: 820px;
    text-align: left;
}

.backup-disaster-recovery-page .backup-checklist li {
    position: relative;
    padding-left: 2.35rem;
    margin-bottom: 0.85rem;
    line-height: 2;
}

.backup-disaster-recovery-page .backup-checklist-icon {
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 30px;
    height: 30px;
    border-radius: 12px;
    background: rgba(255, 102, 0, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
}

.backup-disaster-recovery-page .backup-checklist-icon img {
    width: 16px;
    height: 16px;
}

.backup-disaster-recovery-page .backup-ransomware-callout {
    margin: 0 auto;
    max-width: 860px;
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 102, 0, 0.18);
    background: linear-gradient(145deg, rgba(10, 37, 64, 0.04) 0%, rgba(255, 102, 0, 0.06) 100%);
    box-shadow: var(--shadow-soft);
}

.backup-disaster-recovery-page .backup-ransomware-callout p {
    text-align: center;
    margin-bottom: 0;
}

@media (min-width: 992px) {
    .microsoft-365-management-page .trust-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        justify-content: center;
    }
}

@media (min-width: 992px) {
    /* Fast Response Times: keep 2×2 so After Hours sits under Urgent Issues */
    .it-support-helpdesk-page .helpdesk-response-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        justify-content: center;
    }
}

/* Our Support Process — centered block, readable left-aligned list */
.it-support-helpdesk-page .support-process-section {
    text-align: center;
}

.it-support-helpdesk-page .support-process-section .support-process-steps {
    display: inline-block;
    text-align: left;
    margin: 0 auto 2rem;
    line-height: 2;
    max-width: 48rem;
    padding-left: 1.25rem;
}

.it-support-helpdesk-page .faq-section h2 {
    text-align: center;
}

.it-support-helpdesk-page .faq-section .faq-item {
    max-width: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

/* Helpdesk testimonials are static cards, not slider items */
.it-support-helpdesk-page .content-section > .testimonial-card {
    display: block;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

/* Why Choose Us page redesign */
.why-choose-us-page .contact-hero {
    position: relative;
    overflow: hidden;
}

.why-choose-us-page .contact-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(255, 102, 0, 0.16), transparent 35%),
        radial-gradient(circle at 88% 28%, rgba(10, 37, 64, 0.2), transparent 42%);
    pointer-events: none;
}

.why-choose-us-page .why-reasons-section {
    padding: 3rem 0 1rem;
}

.why-choose-us-page .why-reasons-heading {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.why-choose-us-page .why-reasons-heading::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--secondary-color), rgba(255, 102, 0, 0.3));
}

.why-choose-us-page .why-reason {
    display: grid;
    grid-template-columns: 72px 56px 1fr;
    gap: 0 1.25rem;
    align-items: start;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(10, 37, 64, 0.07);
    position: relative;
}

.why-choose-us-page .why-reason:last-child {
    border-bottom: none;
}

.why-choose-us-page .why-reason-icon svg {
    width: 64px;
    height: 64px;
    display: block;
    filter: drop-shadow(0 6px 14px rgba(10, 37, 64, 0.2));
}

.why-choose-us-page .why-reason-number {
    font-size: 2rem;
    font-weight: 900;
    color: rgba(255, 102, 0, 0.14);
    line-height: 1;
    padding-top: 0.45rem;
    text-align: center;
    user-select: none;
}

.why-choose-us-page .why-reason-body h3 {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 0.45rem;
}

.why-choose-us-page .why-reason-body p {
    color: var(--text-dark);
    line-height: 1.75;
    margin: 0;
}

.why-choose-us-page .why-proof-testimonial {
    display: block;
    max-width: 760px;
    margin: 0 auto;
    border: 1px solid rgba(255, 102, 0, 0.2);
    box-shadow: 0 16px 34px rgba(10, 37, 64, 0.13);
    position: relative;
}

.why-choose-us-page .why-proof-testimonial::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    border-radius: 8px 0 0 8px;
    background: linear-gradient(180deg, var(--secondary-color), rgba(255, 102, 0, 0.4));
}

@media (max-width: 640px) {
    .why-choose-us-page .why-reason {
        grid-template-columns: 56px 1fr;
        gap: 0.2rem 1rem;
    }

    .why-choose-us-page .why-reason-number {
        display: none;
    }

    .why-choose-us-page .why-reason-icon svg {
        width: 48px;
        height: 48px;
    }

    .why-choose-us-page .why-reasons-heading {
        font-size: 1.6rem;
    }
}

/* Sitemap page */
.sitemap-page .page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0e3a5c 100%);
}

.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 3rem 0 4rem;
}

.sitemap-group h2 {
    font-size: 1.15rem;
    color: var(--primary-color);
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 0.5rem;
    margin-bottom: 0.75rem;
}

.sitemap-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sitemap-group li {
    padding: 0.3rem 0;
}

.sitemap-group a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.sitemap-group a:hover {
    color: var(--secondary-color);
}

@media (max-width: 992px) {
    .sitemap-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .sitemap-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem 0 3rem;
    }
}

/* Resources page redesign */
.resources-page .page-header {
    position: relative;
    overflow: hidden;
}

.resources-page .page-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 30%, rgba(255, 102, 0, 0.14), transparent 35%),
        radial-gradient(circle at 85% 25%, rgba(10, 37, 64, 0.18), transparent 40%);
    pointer-events: none;
}

.resources-page .res-intro {
    display: grid;
    grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.1fr);
    gap: 2rem;
    align-items: center;
    padding: 3rem 0;
}

.resources-page .res-intro-visual svg,
.resources-page .res-intro-visual img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 14px 28px rgba(10, 37, 64, 0.2));
}

.resources-page .res-intro-visual a {
    display: block;
    transition: transform 0.2s ease;
}

.resources-page .res-intro-visual a:hover {
    transform: translateY(-4px);
}

.resources-page .res-intro-content h2 {
    color: var(--primary-color);
    font-size: 1.85rem;
    margin-bottom: 0.75rem;
}

.resources-page .res-intro-content p {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
}

.resources-page .res-section-heading {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.85rem;
}

.resources-page .res-section-heading::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--secondary-color), rgba(255, 102, 0, 0.25));
}

.resources-page .res-cards-section {
    padding: 2.5rem 0 1rem;
    border-top: 1px solid rgba(10, 37, 64, 0.06);
}

.resources-page .res-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.resources-page .res-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    padding: 2rem 1.5rem 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(10, 37, 64, 0.08);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.99), rgba(10, 37, 64, 0.03));
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.resources-page .res-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 32px rgba(10, 37, 64, 0.14);
    border-color: rgba(255, 102, 0, 0.35);
}

.resources-page .res-card-icon svg {
    width: 80px;
    height: 80px;
    display: block;
    margin-bottom: 1rem;
    filter: drop-shadow(0 6px 12px rgba(10, 37, 64, 0.18));
}

.resources-page .res-card h3 {
    color: var(--primary-color);
    font-size: 1.15rem;
    margin-bottom: 0.4rem;
}

.resources-page .res-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.55;
    margin-bottom: 0.85rem;
    flex-grow: 1;
}

.resources-page .res-card-action {
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 0.95rem;
}

.resources-page .res-card:hover .res-card-action {
    color: var(--primary-color);
}

.resources-page .res-explore {
    padding: 2.5rem 0 1rem;
    border-top: 1px solid rgba(10, 37, 64, 0.06);
}

.resources-page .res-explore-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.85rem;
}

.resources-page .res-explore-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
    text-decoration: none;
    padding: 1.25rem 0.75rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(10, 37, 64, 0.06);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.92rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.resources-page .res-explore-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(10, 37, 64, 0.1);
    border-color: rgba(255, 102, 0, 0.28);
    color: var(--secondary-color);
}

.resources-page .res-explore-link svg {
    width: 28px;
    height: 28px;
    color: var(--secondary-color);
}

.resources-page .res-newsletter {
    padding: 2.5rem 0 2rem;
    border-top: 1px solid rgba(10, 37, 64, 0.06);
}

.resources-page .res-newsletter-inner {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    background: linear-gradient(145deg, rgba(10, 37, 64, 0.04), rgba(255, 102, 0, 0.04));
    border: 1px solid rgba(255, 102, 0, 0.14);
    border-radius: var(--radius-lg);
    padding: 2rem 2.25rem;
}

.resources-page .res-newsletter-icon svg {
    width: 72px;
    height: 72px;
    flex-shrink: 0;
    filter: drop-shadow(0 6px 12px rgba(10, 37, 64, 0.18));
}

.resources-page .res-newsletter-content h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.35rem;
}

.resources-page .res-newsletter-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.resources-page .res-newsletter-form {
    display: flex;
    gap: 0.6rem;
    max-width: 440px;
}

.resources-page .res-newsletter-form input[type="email"] {
    flex: 1;
    padding: 0.7rem 1rem;
    border: 1px solid rgba(10, 37, 64, 0.15);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s ease;
}

.resources-page .res-newsletter-form input[type="email"]:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.1);
}

.resources-page .res-newsletter-form .btn {
    white-space: nowrap;
}

@media (max-width: 768px) {
    .resources-page .res-newsletter-inner {
        flex-direction: column;
        text-align: center;
    }

    .resources-page .res-newsletter-form {
        flex-direction: column;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .resources-page .res-intro {
        grid-template-columns: 1fr;
    }

    .resources-page .res-intro-visual {
        max-width: 320px;
        margin: 0 auto;
    }

    .resources-page .res-intro-content {
        text-align: center;
    }

    .resources-page .res-card-grid {
        grid-template-columns: 1fr;
    }

    .resources-page .res-explore-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (prefers-reduced-motion: reduce) {
    .resources-page .res-card,
    .resources-page .res-explore-link {
        transition: none;
    }

    .resources-page .res-card:hover,
    .resources-page .res-explore-link:hover {
        transform: none;
    }
}

/* Visual polish for IT Support Helpdesk page */
.it-support-helpdesk-page .page-header {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 102, 0, 0.18), transparent 38%),
        radial-gradient(circle at 80% 28%, rgba(10, 37, 64, 0.22), transparent 42%),
        linear-gradient(165deg, rgba(10, 37, 64, 0.95), rgba(10, 37, 64, 0.84));
}

.it-support-helpdesk-page .page-header::after {
    content: "";
    position: absolute;
    inset: auto -10% -65% -10%;
    height: 180px;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.32), transparent 70%);
    pointer-events: none;
}

.it-support-helpdesk-page .content-section h2,
.it-support-helpdesk-page .faq-section h2 {
    position: relative;
    margin-bottom: 1.5rem;
}

.it-support-helpdesk-page .content-section h2::after,
.it-support-helpdesk-page .faq-section h2::after {
    content: "";
    display: block;
    width: 68px;
    height: 3px;
    margin-top: 0.6rem;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--secondary-color), rgba(255, 102, 0, 0.25));
}

.it-support-helpdesk-page .services-grid .service-card,
.it-support-helpdesk-page .trust-item,
.it-support-helpdesk-page .faq-item {
    border: 1px solid rgba(255, 102, 0, 0.14);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.it-support-helpdesk-page .services-grid .service-card:hover,
.it-support-helpdesk-page .trust-item:hover,
.it-support-helpdesk-page .faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(10, 37, 64, 0.14);
    border-color: rgba(255, 102, 0, 0.35);
}

.it-support-helpdesk-page .services-grid .service-card h3,
.it-support-helpdesk-page .trust-item h3 {
    color: var(--primary-color);
}

.it-support-helpdesk-page .content-section > .testimonial-card {
    border: 1px solid rgba(255, 102, 0, 0.2);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(10, 37, 64, 0.03) 100%);
    box-shadow: 0 16px 34px rgba(10, 37, 64, 0.14);
    position: relative;
}

.it-support-helpdesk-page .content-section > .testimonial-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    border-radius: 8px 0 0 8px;
    background: linear-gradient(180deg, var(--secondary-color), rgba(255, 102, 0, 0.45));
}

.it-support-helpdesk-page .faq-question {
    transition: color var(--transition), transform 0.2s ease;
}

.it-support-helpdesk-page .faq-item:hover .faq-question {
    transform: translateX(2px);
}

@media (min-width: 992px) {
    .it-support-helpdesk-page .content-section {
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .it-support-helpdesk-page .services-grid .service-card,
    .it-support-helpdesk-page .trust-item,
    .it-support-helpdesk-page .faq-item,
    .it-support-helpdesk-page .faq-question {
        transition: none;
    }

    .it-support-helpdesk-page .services-grid .service-card:hover,
    .it-support-helpdesk-page .trust-item:hover,
    .it-support-helpdesk-page .faq-item:hover,
    .it-support-helpdesk-page .faq-item:hover .faq-question {
        transform: none;
    }
}

.cybersecurity-services-page .cyber-testimonial {
    background: linear-gradient(145deg, rgba(10, 37, 64, 0.05) 0%, rgba(255, 102, 0, 0.06) 100%);
    border: 1px solid rgba(255, 102, 0, 0.18);
    position: relative;
    overflow: hidden;
}

.cybersecurity-services-page .cyber-testimonial .testimonial-quote {
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.cybersecurity-services-page .cyber-testimonial .testimonial-content p {
    font-size: 1.02rem;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

@media (min-width: 992px) {
    /* Make the last /industries/ card align under Financial Services */
    .industries-services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .industries-services-grid .service-card-professional-centered {
        grid-column: 2;
        grid-row: 3;
    }
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    border-top: 3px solid var(--accent-lighter);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), border-top-color var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-light);
    border-top-color: var(--secondary-color);
}

.service-card img {
    display: block;
    margin: 0 auto 1rem;
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card:hover h3 {
    color: var(--secondary-color);
}

.service-link {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.service-link:hover {
    color: #e55a00;
}

/* Service/industry card with full image on top */
.service-card-image {
    margin: -2rem -2rem 1rem -2rem;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    overflow: hidden;
    line-height: 0;
}
.service-card-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 180px;
    max-height: 220px;
}

/* Trust item with image (e.g. industries "Why it matters") */
.trust-item-with-image {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
.trust-item-image {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.trust-item-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 160px;
    max-height: 200px;
}

/* Capabilities: Everything We Do (expandable) */
.capabilities-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, var(--bg-subtle) 0%, var(--bg-light) 100%);
}

.capabilities-intro {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
}

.capability-card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: box-shadow var(--transition), border-color var(--transition);
}

.capability-card:hover {
    border-color: var(--accent-lighter);
    box-shadow: var(--shadow-soft);
}

.capability-summary {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    border-bottom: 1px solid var(--border-color);
}

.capability-icon {
    font-size: 1.5rem;
    line-height: 1;
    flex-shrink: 0;
}

.capability-title {
    flex: 1;
    font-size: 1.05rem;
}

.capability-list {
    margin: 0;
    padding: 1rem 1.5rem 1.25rem 2.75rem;
    list-style: none;
}

.capability-list li {
    position: relative;
    padding: 0.35rem 0;
    padding-left: 1.25rem;
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.capability-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--secondary-color);
    opacity: 0.8;
}

.capability-summary a.capability-title {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
}
.capability-summary a.capability-title:hover {
    color: var(--secondary-color);
}
.capability-list a {
    color: inherit;
    text-decoration: none;
}
.capability-list a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Who We Help */
.who-we-help {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.help-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.help-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-lighter);
}

.help-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.help-card:hover h3 {
    color: var(--secondary-color);
}

/* Why Trust */
.why-trust {
    padding: 4rem 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.trust-grid-2col {
    grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 768px) {
    .trust-grid-2col {
        grid-template-columns: 1fr;
    }
}

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

@media (max-width: 991px) {
    .trust-grid-3col {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 992px) {
    .trust-grid-local-msps {
        grid-template-columns: repeat(3, 1fr);
    }
    .trust-grid-local-msps .trust-item:last-child {
        grid-column: 2;
    }
}

.trust-item {
    padding: 1.75rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.6);
    transition: background var(--transition);
}

.trust-item:hover {
    background: rgba(255, 255, 255, 0.9);
}

.trust-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.trust-item:hover h3 {
    color: var(--secondary-color);
}

/* Security Approach */
.security-approach {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.security-feature {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.security-feature h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.security-feature:hover h3 {
    color: var(--secondary-color);
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
}

.cta-box h3 {
    color: white;
    margin-bottom: 1rem;
}

.cta-box p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

.cta-box .btn-primary {
    background-color: var(--secondary-color);
    color: white;
}

.cta-box .btn-primary:hover {
    background-color: #e55a00;
    color: white;
}

/* Service Areas */
.service-areas {
    padding: 4rem 0;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.area-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
}

.area-card h3 {
    margin-bottom: 0.5rem;
}

.area-card a {
    color: var(--primary-color);
}

.area-card a:hover {
    color: var(--secondary-color);
}

/* Assessment CTA */
.assessment-cta {
    padding: 4rem 0;
    background: linear-gradient(145deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    position: relative;
}

.assessment-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(255, 102, 0, 0.1) 0%, transparent 55%);
    pointer-events: none;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-content .btn {
    display: inline-block;
}

.cta-content h2 {
    color: white;
    text-align: center;
    margin-bottom: 1rem;
}

.cta-content > p {
    text-align: center;
    color: rgba(255,255,255,0.92);
    margin-bottom: 2rem;
}

/* Dark CTA band: plain links (e.g. tel after CallRail swap) must stay white — global `a` is navy */
.assessment-cta .cta-content .cta-alt a,
.assessment-cta .cta-content p a:not(.btn) {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.assessment-cta .cta-content .cta-alt a:hover,
.assessment-cta .cta-content p a:not(.btn):hover {
    color: #ffcc99;
}

.assessment-form {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(10, 37, 64, 0.12);
}

/* Breadcrumbs */
.breadcrumbs {
    padding: 0.75rem 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.breadcrumbs a {
    color: var(--primary-color);
}

.breadcrumbs span {
    margin: 0 0.35rem;
    color: var(--text-light);
}

/* Exit-intent popup */
.exit-intent-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.exit-intent-overlay.exit-intent-visible {
    opacity: 1;
    visibility: visible;
}

.exit-intent-modal {
    background: var(--bg-white);
    padding: 2rem 2rem 2.5rem;
    border-radius: 8px;
    max-width: 560px;
    max-height: 90vh;
    overflow-y: auto;
    width: 90%;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.exit-intent-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.exit-intent-body {
    flex: 1;
    min-width: 0;
}

.exit-intent-book {
    flex-shrink: 0;
}

.exit-intent-book img {
    display: block;
    width: 180px;
    height: auto;
    border-radius: 4px;
}

.exit-intent-headline {
    margin: 0 0 1.25rem;
    color: var(--primary-color);
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    width: 100%;
}

.exit-intent-modal p {
    margin-bottom: 1.25rem;
    color: var(--text-light);
}

.exit-intent-highlight {
    color: var(--secondary-color);
    font-weight: 700;
    background: rgba(255, 102, 0, 0.12);
    padding: 0.1em 0.35em;
    border-radius: 3px;
}

@media (max-width: 480px) {
    .exit-intent-content {
        flex-direction: column;
    }
    .exit-intent-book img {
        width: 140px;
    }
}

.exit-intent-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--text-light);
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
}

.exit-intent-close:hover {
    color: var(--primary-color);
}

.exit-intent-cta {
    display: inline-block;
}

.exit-intent-form-wrap .exit-intent-headline {
    margin-bottom: 0.5rem;
}
.exit-intent-form-headline {
    font-size: 1.35rem;
    margin-bottom: 0.25rem;
}
.exit-intent-form-intro {
    margin: 0 0 0.75rem;
    color: var(--text-light);
    font-size: 0.9rem;
}
.exit-intent-form .form-group {
    margin-bottom: 0.5rem;
}
.exit-intent-form .form-group label {
    margin-bottom: 0.25rem;
    font-size: 0.85rem;
}
.exit-intent-form .form-group input {
    padding: 8px 10px;
    font-size: 0.95rem;
}
.exit-intent-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}
.exit-intent-form-row-3 {
    grid-template-columns: 1fr 0.7fr 0.8fr;
}
.exit-intent-form .exit-intent-cta {
    width: 100%;
    margin-top: 0.5rem;
    padding: 10px 1rem;
}
.exit-intent-success-wrap .exit-intent-headline {
    margin-bottom: 0.5rem;
}
.exit-intent-success-wrap p {
    margin: 0;
    color: var(--text-light);
}
@media (max-width: 480px) {
    .exit-intent-form-row {
        grid-template-columns: 1fr;
    }
    .exit-intent-form-row-3 {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
    color: #94a3b8;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: #f1f5f9;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #94a3b8;
    transition: color var(--transition);
}

.footer-section a:hover {
    color: #f1f5f9;
}

.footer-section p {
    color: #94a3b8;
}

.footer-social {
    margin-top: 1rem;
}

.footer-social a {
    color: #94a3b8;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #64748b;
    font-size: 0.9rem;
}

/* Page Content Styles */
.page-content {
    padding: 2rem 0 4rem;
}

.page-header {
    background: linear-gradient(145deg, var(--primary-color) 0%, var(--primary-dark) 60%, #061e36 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 40% at 50% -10%, rgba(255, 102, 0, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header .container {
    text-align: center;
}

.page-header .breadcrumbs {
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    gap: 0 0.35rem;
}

.page-header .breadcrumbs a,
.page-header .breadcrumbs span {
    color: rgba(255,255,255,0.85);
}

.page-header .breadcrumbs a:hover {
    color: white;
}

.page-header h1 {
    color: white;
    margin-bottom: 1rem;
}

.page-header p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
}

.page-header a:not(.btn) {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.page-header a:not(.btn):hover {
    color: #ffcc99;
}

/* Page header with full-width image (e.g. Why Choose Us) */
.page-header-with-image {
    padding-bottom: 0;
}
.page-header-image {
    margin-top: 2rem;
    margin-left: -20px;
    margin-right: -20px;
    max-width: calc(100% + 40px);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.page-header-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 380px;
}

/* Why Choose Us: full image per reason (alternating layout) */
.why-choose-reason:has(.why-choose-reason-image) {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
    margin-bottom: 0;
    padding: 2.5rem 0;
}
.why-choose-reason:has(.why-choose-reason-image):nth-child(even) .why-choose-reason-image {
    order: 2;
}
.why-choose-reason:has(.why-choose-reason-image):nth-child(even) .why-choose-reason-content {
    order: 1;
}
.why-choose-reason-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.why-choose-reason-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 260px;
    max-height: 320px;
}
.why-choose-reason-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}
.why-choose-reason-content p {
    color: var(--text-light);
    margin: 0;
}

/* By the Numbers section with image */
.numbers-with-image {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2.5rem;
    align-items: center;
}
.numbers-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.numbers-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 280px;
}

.page-header .why-choose-intro {
    font-size: 1.05rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
}

.why-choose-reasons {
    margin-top: 2rem;
}

.why-choose-reason {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.why-choose-reason:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.why-choose-reason h3 {
    color: var(--primary-color);
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

.why-choose-reason p {
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.why-choose-reason .btn {
    margin-top: 0.5rem;
}

/* Center intro content on service/content pages */
.page-content .content-section:first-child {
    text-align: center;
}

.page-content .content-section:first-child p {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

/* About page intro: content left, sidebar right (CEO + image) */
.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

.about-intro-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-ceo-block {
    margin: 0;
}

.about-ceo-heading {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 0;
}

.about-intro-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    max-width: 75%;
    align-self: center;
}

.about-intro-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* About page: mission section overlaps hero (match Contact "Get in Touch" box) */
.about-page {
    background: #f7f8fc;
}

.about-page .about-mission-section {
    background: transparent;
    padding: 0 0 0.75rem 0;
    margin-top: -100px;
    position: relative;
    z-index: 2;
}

.about-mission-section .container {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.about-mission-section h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-size: 32px;
    font-weight: 700;
}

.about-mission-intro {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 2rem;
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

.about-mission-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 960px;
    margin: 0 auto;
}

.about-mission-stat {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    text-align: left;
}

.about-mission-stat-icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: var(--secondary-color);
}

.about-mission-stat-icon svg {
    width: 40px;
    height: 40px;
    display: block;
}

.about-mission-stat-content {
    flex: 1;
    min-width: 0;
}

.about-mission-stat-heading {
    margin: 0 0 0.35rem 0;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
}

.about-mission-stat-desc {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .about-mission-stats {
        grid-template-columns: 1fr;
    }
}

/* About Us page: free guide CTA, free report form */
.about-free-guide-cta {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
}

.about-guide-box {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.about-guide-headline {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
}

.about-guide-badge {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--secondary-color);
    margin: 0 0 0.5rem 0;
}

.about-guide-title {
    font-size: 1.15rem;
    color: var(--primary-color);
    margin: 0 0 1.5rem 0;
    font-weight: 600;
}

.about-report-section {
    background: var(--bg-subtle);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
}

.about-report-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
    max-width: 900px;
    margin: 0 auto;
}

.about-report-content {
    text-align: center;
}

.about-report-headline {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
}

.about-report-badge {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--secondary-color);
    margin: 0 0 0.5rem 0;
}

.about-report-cover {
    display: block;
    max-width: 100%;
    width: 480px;
    height: auto;
    margin: 1rem auto;
    border-radius: 6px;
}

.about-report-title {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin: 0 0 0 0;
    font-weight: 600;
}

.about-report-form-wrap {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
}

.about-report-form-header {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 1rem 0;
    line-height: 1.4;
    text-align: center;
}

.about-report-form .form-group {
    margin-bottom: 1rem;
}

.about-report-form label {
    display: block;
    margin-bottom: 0.35rem;
    font-weight: 500;
    color: var(--text-dark);
}

.about-report-form input {
    width: 100%;
    padding: 0.6rem 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 1rem;
}

.about-report-form .btn {
    width: 100%;
    margin-top: 0.25rem;
}


@media (max-width: 768px) {
    .about-report-two-col {
        grid-template-columns: 1fr;
    }
}

/* ===== Contact page (design spec) ===== */
/* Hero: full-width ~320px tall, overlay ~430×100px centered, dark navy 85% */
.contact-hero.contact-hero-single-banner {
    position: relative;
    height: 480px;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: url(/images/contact-hero-banner.jpg) center center / cover no-repeat;
    background-color: var(--primary-dark);
}

.contact-hero {
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.contact-hero-bg {
    position: absolute;
    inset: 0;
    background: url(/images/hero-it-support-partnership.png) center center / cover no-repeat;
    background-color: var(--primary-dark);
}

.contact-hero-overlay-box {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.contact-hero-overlay-box .contact-hero-inner {
    width: 430px;
    min-height: 100px;
    padding: 1.25rem 1.5rem;
    background: var(--primary-dark);
    border: none;
    border-radius: 10px;
    text-align: center;
    box-sizing: border-box;
}

.contact-hero h1 {
    color: white;
    margin: 0 0 0.25rem 0;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2;
}

.contact-hero-subtitle {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    margin: 0;
    font-weight: 400;
}

.contact-hero-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.25rem;
    margin: 0 0 0.75rem 0;
    padding: 0;
    font-size: 0.9rem;
}
.contact-hero-breadcrumbs a,
.contact-hero-breadcrumbs span {
    color: rgba(255, 255, 255, 0.85);
}
.contact-hero-breadcrumbs a:hover {
    color: white;
}

/* ===== About page hero (image + overlay like LeadingIT) ===== */
.about-hero {
    position: relative;
    height: 480px;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: url(/images/contact-hero-banner.jpg) center center / cover no-repeat;
    background-color: var(--primary-dark);
}

.about-hero-overlay-box {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.about-hero-overlay-box .about-hero-inner {
    max-width: 640px;
    width: 90%;
    padding: 2rem 2.25rem;
    background: var(--primary-dark);
    border: none;
    border-radius: 10px;
    text-align: center;
    box-sizing: border-box;
}

.about-hero-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.25rem;
    margin: 0 0 1rem 0;
    padding: 0;
    font-size: 0.9rem;
}

.about-hero-breadcrumbs a,
.about-hero-breadcrumbs span {
    color: rgba(255, 255, 255, 0.85);
}

.about-hero-breadcrumbs a:hover {
    color: white;
}

.about-hero h1 {
    color: white;
    margin: 0 0 0.75rem 0;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.25;
}

.about-hero-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.5;
    font-weight: 400;
}

@media (max-width: 768px) {
    .about-hero {
        min-height: 380px;
        height: auto;
        padding: 3rem 1rem;
    }

    .about-hero h1 {
        font-size: 1.75rem;
    }

    .about-hero-subtitle {
        font-size: 1rem;
    }
}

/* Page background under the hero */
.contact-page {
    background: #f7f8fc;
}

/* Get in Touch: encapsulated in a white box, overlapping the hero */
.contact-page .contact-get-in-touch,
.managed-it-services .contact-get-in-touch {
    background: transparent;
    padding: 0 0 0.75rem 0;
    min-height: 400px;
    margin-top: -100px;
    position: relative;
    z-index: 2;
}

/* Managed IT Services: hero uses same banner as contact; Get in Touch overlaps the bottom */
.managed-it-services .contact-hero.contact-hero-single-banner {
    padding-bottom: 5rem;
}

/* Managed IT Services hero: transparent blue box, text spread horizontally so headline stays on one line */
.managed-it-services .contact-hero-overlay-box .contact-hero-inner {
    width: 90%;
    max-width: 820px;
    background: rgba(13, 45, 82, 0.78);
    border-radius: 10px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
    padding: 1.25rem 0.5rem;
}

/* Managed IT Services: Get in Touch box dark background */
.managed-it-services .contact-get-in-touch .container {
    background: #081d32;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}
.managed-it-services .contact-get-in-touch h2 {
    color: #fff;
}
.managed-it-services .contact-get-in-touch .contact-intro {
    color: rgba(255, 255, 255, 0.9);
}
.managed-it-services .contact-info-title,
.managed-it-services .contact-info-title a {
    color: #fff;
}
.managed-it-services .contact-info-title a:hover {
    color: var(--secondary-color);
}
.managed-it-services .contact-info-subtitle {
    color: rgba(255, 255, 255, 0.85);
}
.managed-it-services .contact-info-desc {
    color: rgba(255, 255, 255, 0.8);
}
.managed-it-services .contact-get-in-touch .contact-info-icon {
    color: rgba(255, 255, 255, 0.95);
}
.managed-it-services .contact-get-in-touch .contact-info-icon svg {
    stroke: currentColor;
}

/* Managed IT Services – 6-item grid (3 cols) */
.mis-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 1.5rem;
    max-width: 1020px;
    margin: 0 auto;
}
.mis-service-item {
    text-align: center;
    padding: 0.5rem 0;
}
.mis-service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    color: var(--secondary-color);
}
.mis-service-icon svg {
    width: 40px;
    height: 40px;
}
.mis-service-headline {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: #1a1a1a;
}
.mis-service-desc {
    font-size: 0.9375rem;
    line-height: 1.5;
    margin: 0;
    color: #555;
}
.managed-it-services .mis-service-headline {
    color: #fff;
}
.managed-it-services .mis-service-desc {
    color: rgba(255, 255, 255, 0.8);
}
.managed-it-services .contact-get-in-touch .mis-service-icon {
    color: #315271;
}
.managed-it-services .contact-get-in-touch .mis-service-icon svg {
    stroke: currentColor;
}

.contact-get-in-touch .container {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-get-in-touch h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-size: 32px;
    font-weight: 700;
}

.contact-intro {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 2rem;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1020px;
    margin: 0 auto;
}

.contact-info-item {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.5rem 0;
    background: transparent;
    text-align: left;
}

.contact-info-icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: var(--secondary-color);
}

.contact-info-icon svg {
    width: 40px;
    height: 40px;
}

.contact-info-content {
    flex: 1;
    min-width: 0;
}

.contact-info-title {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 0;
    color: #1a1a1a;
}

.contact-info-title a {
    color: #1a1a1a;
}

.contact-info-title a:hover {
    color: var(--secondary-color);
}

.contact-info-subtitle {
    font-size: 14px;
    font-weight: 500;
    color: #444;
    margin: 0.15rem 0 0 0;
}

.contact-info-desc {
    flex-basis: 100%;
    font-size: 13px;
    color: #666;
    margin: 0.25rem 0 0 0;
    line-height: 1.5;
    text-align: center;
}

/* Schedule Assessment: light gray, ~500px tall, left ~510px form, right ~410px image */
.contact-form-section {
    background: #f7f8fc;
    padding: 0.75rem 0 4rem;
    min-height: 500px;
}

.contact-form-section .contact-form-grid.container {
    background: #eff2f7;
    padding: 2.5rem 2rem;
    border-radius: 0;
    box-shadow: var(--shadow-md);
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-wrap {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-form-wrap .contact-form {
    width: 100%;
    max-width: 560px;
}

.contact-form-wrap h2 {
    margin-bottom: 0.75rem;
    color: #1a1a1a;
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    width: 100%;
    max-width: 400px;
}

.contact-form-intro {
    margin: 0 0 1.25rem 0;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
    text-align: center;
    width: 100%;
    max-width: 400px;
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-form-email-row {
    grid-template-columns: 1fr 1fr;
}

.contact-form .contact-form-email-row .form-group {
    grid-column: 1 / -1;
    width: 100%;
    max-width: none;
}

.contact-form .contact-form-email-row .form-group input {
    width: 100%;
    box-sizing: border-box;
}

.contact-form .form-group {
    margin-bottom: 1rem;
}

.contact-form .form-group label {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--text-dark);
    font-weight: 500;
}

.contact-form input {
    width: 100%;
    height: 45px;
    padding: 0 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    background: white;
    box-sizing: border-box;
}

.contact-form textarea {
    width: 100%;
    min-height: 100px;
    padding: 0.65rem 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    background: white;
    resize: vertical;
    box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-form .btn {
    width: 150px;
    height: 42px;
    margin-top: 0.5rem;
    padding: 0;
    border-radius: 8px;
    font-size: 1rem;
}

.contact-form-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 400px;
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
}

.contact-form-image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    display: block;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 900px) {
    .contact-info-grid,
    .mis-services-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-image {
        order: -1;
        max-height: 320px;
    }

    .contact-form-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

@media (max-width: 600px) {
    .contact-hero {
        min-height: 220px;
    }

    .contact-hero h1 {
        font-size: 1.75rem;
    }

    .contact-hero-subtitle {
        font-size: 1rem;
    }
}

/* Center all section headings and card-based content in page content */
.page-content .content-section h2 {
    text-align: center;
}

/* Center intro paragraphs in any content section (e.g. "Why Businesses Choose LecsIT" intro) */
.page-content .content-section > p {
    text-align: center;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.page-content .content-section .services-grid,
.page-content .content-section .trust-grid {
    margin-top: 1.5rem;
}

.page-content .content-section .service-card,
.page-content .content-section .trust-item {
    text-align: center;
}

.page-content .content-section .service-card h3,
.page-content .content-section .trust-item h3 {
    text-align: center;
}

.page-content .content-section .service-card p,
.page-content .content-section .trust-item p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
}

/* Center bullet lists in content sections (list block centered, items left-aligned within) */
.page-content .content-section ul.content-list,
.page-content .content-section:first-child ul {
    display: inline-block;
    text-align: left;
    margin: 0 auto 1.5rem;
    line-height: 2;
    padding-left: 1.5rem;
}

.content-section {
    padding: 3rem 0;
    background: white;
}

.content-section:nth-child(even) {
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-subtle) 100%);
}

.faq-section {
    padding: 3rem 0;
}

.faq-item {
    background: white;
    padding: 1.5rem 1.75rem;
    margin-bottom: 1rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.faq-item:hover {
    border-color: var(--accent-lighter);
}

.faq-question {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    color: var(--secondary-color);
}

.faq-answer {
    color: var(--text-light);
    line-height: 1.8;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .hero-headline {
        font-size: 1.25rem;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: var(--shadow-lg);
        padding: 1rem;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 1rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .header-cta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .phone-link {
        font-size: 0.9rem;
    }

    .services-grid,
    .help-grid,
    .trust-grid,
    .security-features {
        grid-template-columns: 1fr;
    }

    .services-grid-four {
        grid-template-columns: 1fr;
    }

    .problem-grid {
        grid-template-columns: 1fr;
    }

    .problem-headline {
        font-size: 1.6rem;
    }

    .problem-subhead {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .problem-card-inner {
        padding: 1.5rem 1.25rem;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .why-choose-intro .section-title {
        text-align: center;
    }

    .why-choose-sub {
        text-align: center;
    }

    .why-choose-reason:has(.why-choose-reason-image) {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem 0;
    }
    .why-choose-reason:has(.why-choose-reason-image):nth-child(even) .why-choose-reason-image,
    .why-choose-reason:has(.why-choose-reason-image):nth-child(even) .why-choose-reason-content {
        order: unset;
    }
    .why-choose-reason-image img {
        min-height: 220px;
        max-height: 280px;
    }

    .page-header-image {
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
    }
    .page-header-image img {
        max-height: 260px;
    }

    .numbers-with-image {
        grid-template-columns: 1fr;
    }
    .numbers-image img {
        min-height: 220px;
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .lead-magnet-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .hero-trust-bar {
        flex-direction: column;
        gap: 0.75rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Industry page hero (branded technician photo) */
.industry-page .industry-hero-banner {
    padding: 0 0 2.5rem;
    background: linear-gradient(180deg, rgba(10, 37, 64, 0.04) 0%, transparent 100%);
}

.industry-page .industry-hero-figure {
    margin: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(10, 37, 64, 0.08);
}

.industry-page .industry-hero-img {
    width: 100%;
    height: auto;
    display: block;
    max-height: min(52vh, 440px);
    object-fit: cover;
    object-position: center center;
}

.industry-page .industry-cta-links {
    margin: 1.25rem 0 0;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.6;
}

.industry-page .industry-cta-links a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.industry-page .industry-cta-links a:hover {
    color: var(--secondary-color);
}

.industry-page .industry-tagline {
    padding: 1.25rem 0;
    background: var(--bg-light);
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.industry-page .industry-tagline p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.95rem;
    letter-spacing: 0.01em;
}

.industry-page .industry-tagline strong {
    color: var(--primary-color);
}

/* Manufacturing page visual enhancements */
.manufacturing-visual-page .manufacturing-stats-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.9rem;
    margin-bottom: 1.75rem;
}

.manufacturing-visual-page .mstat-card {
    background: linear-gradient(165deg, #0a2540 0%, #143a5c 100%);
    color: #fff;
    border-radius: var(--radius-md);
    padding: 1rem 1.1rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.manufacturing-visual-page .mstat-value {
    display: block;
    font-size: 1.7rem;
    font-weight: 800;
    color: #ff9e57;
    line-height: 1.1;
}

.manufacturing-visual-page .mstat-label {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.9);
}

.manufacturing-visual-page .manufacturing-lead-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 1.2rem;
    align-items: stretch;
}

.manufacturing-visual-page .manufacturing-trend-panel {
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    border: 1px solid rgba(10, 37, 64, 0.12);
    border-radius: var(--radius-lg);
    padding: 1rem;
    box-shadow: var(--shadow-soft);
}

.manufacturing-visual-page .manufacturing-trend-panel h3 {
    margin: 0 0 0.35rem;
    color: var(--primary-color);
    font-size: 1.05rem;
}

.manufacturing-visual-page .manufacturing-trend-panel p {
    margin: 0 0 0.75rem;
    font-size: 0.88rem;
}

.manufacturing-visual-page .manufacturing-trend-panel svg {
    width: 100%;
    height: auto;
    display: block;
}

.manufacturing-visual-page .manufacturing-challenge-grid .m-card {
    position: relative;
    overflow: hidden;
}

.manufacturing-visual-page .manufacturing-challenge-grid .m-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at 90% 10%, rgba(255, 102, 0, 0.08), transparent 50%);
}

.manufacturing-visual-page .m-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.2rem;
    height: 2.2rem;
    margin-bottom: 0.75rem;
    font-size: 1.15rem;
    border-radius: 999px;
    background: rgba(255, 102, 0, 0.1);
}

@media (max-width: 992px) {
    .manufacturing-visual-page .manufacturing-stats-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .manufacturing-visual-page .manufacturing-lead-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .industry-page .industry-hero-banner {
        padding-bottom: 1.75rem;
    }

    .industry-page .industry-hero-img {
        max-height: min(42vh, 300px);
    }
}

/* Industry page copy sections */
.industry-page .industry-page-content .content-section {
    max-width: 100%;
}

.industry-page .industry-subtitle {
    font-size: 1.15rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.industry-page .industry-list {
    margin: 1rem 0 0;
    padding-left: 1.2rem;
}

.industry-page .industry-list li {
    margin-bottom: 0.7rem;
    color: var(--text-light);
}

.industry-page .industry-compliance-section,
.industry-page .industry-why-section,
.industry-page .industry-serving-section {
    background: var(--bg-subtle);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.industry-page .industry-compliance-section h2,
.industry-page .industry-why-section h2,
.industry-page .industry-serving-section h2 {
    margin-top: 0;
}

@media (max-width: 768px) {
    .industry-page .industry-compliance-section,
    .industry-page .industry-why-section,
    .industry-page .industry-serving-section {
        padding: 1.4rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print Styles */
@media print {
    .sticky-header,
    .assessment-cta,
    .footer {
        display: none;
    }
}


/* VoIP - Cost Comparison */
.voip-cost-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: stretch;
    gap: 1.5rem;
    max-width: 900px;
    margin: 2.5rem auto 1rem;
}

.voip-cost-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.voip-cost-traditional {
    opacity: 0.85;
}

.voip-cost-lecsit {
    border-color: var(--secondary-color);
    box-shadow: 0 6px 18px rgba(255, 102, 0, 0.12);
}

.voip-cost-label {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.voip-cost-price {
    margin-bottom: 1rem;
    line-height: 1;
}

.voip-cost-price-amt {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--primary-color);
}

.voip-cost-lecsit .voip-cost-price-amt {
    color: var(--secondary-color);
}

.voip-cost-price-unit {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-left: 0.25rem;
}

.voip-cost-card p {
    margin: 0;
    font-size: 0.95rem;
}

.voip-cost-vs {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    letter-spacing: 1px;
    align-self: center;
    flex-shrink: 0;
}

.voip-cost-savings-pill {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.4px;
    white-space: nowrap;
    box-shadow: 0 2px 6px rgba(255, 102, 0, 0.25);
}

.voip-cost-savings {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 1.05rem;
    color: var(--text-color);
}

@media (max-width: 768px) {
    .voip-cost-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .voip-cost-vs {
        margin: 0 auto;
    }
    .voip-cost-price-amt {
        font-size: 2.25rem;
    }
}

/* VoIP - Perfect For */
.voip-perfect-item {
    padding: 1.75rem 1.5rem;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.voip-perfect-item:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.voip-perfect-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(255, 102, 0, 0.10);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
}

/* Infrastructure - Category groups */
.infra-category {
    margin-top: 2.25rem;
}

.infra-category:first-of-type {
    margin-top: 1.5rem;
}

.infra-category-label {
    font-size: 0.85rem;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 700;
    margin-bottom: 0.4rem;
    text-align: center;
}

.infra-category-title {
    font-size: 1.4rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1.5rem;
    margin-top: 0;
}

.infra-item {
    padding: 1.75rem 1.5rem;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.infra-item:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.infra-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(255, 102, 0, 0.10);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
}

/* Challenge list - stacked horizontal rows */
.challenge-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.challenge-row {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.5rem 1.5rem;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.challenge-row:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.challenge-row-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(255, 102, 0, 0.10);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.challenge-row-body h3 {
    margin: 0 0 0.4rem 0;
    color: var(--primary-color);
    font-size: 1.15rem;
}

.challenge-row-body p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.97rem;
    line-height: 1.55;
}

@media (max-width: 600px) {
    .challenge-row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
}

/* Check-item: card with leading orange check icon, body text only (no h3) */
.check-item {
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 0.85rem;
    align-items: flex-start;
    padding: 1.25rem 1.25rem;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.check-item:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.check-item-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: rgba(255, 102, 0, 0.10);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.check-item p {
    margin: 0;
    color: var(--text-color);
    font-size: 0.97rem;
    line-height: 1.55;
}

/* Service-card icon: centered orange-tinted square above the h3 inside .service-card */
.service-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(255, 102, 0, 0.10);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.service-card:hover .service-card-icon {
    background: rgba(255, 102, 0, 0.18);
}

/* ===== Cyber Security Tip of the Week landing page ===== */
.cyber-tip-page .cyber-tip-hero {
    background:
        radial-gradient(circle at 85% 20%, rgba(255, 102, 0, 0.06) 0%, transparent 45%),
        linear-gradient(180deg, #ffffff 0%, var(--bg-light) 100%);
    padding: 4rem 0 4.5rem;
    border-bottom: 1px solid var(--border-color);
}

.cyber-tip-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
    align-items: center;
}

.cyber-tip-hero-copy {
    max-width: 560px;
}

.cyber-tip-eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--secondary-color);
    background: rgba(255, 102, 0, 0.1);
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    margin: 0 0 1.25rem;
}

.cyber-tip-headline {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    line-height: 1.05;
    color: var(--primary-color);
    margin: 0 0 1rem;
    letter-spacing: -0.02em;
    font-weight: 800;
}

.cyber-tip-quote {
    color: var(--secondary-color);
    font-weight: 700;
    margin: 0 0.05em;
}

.cyber-tip-subhead {
    font-size: 1.2rem;
    line-height: 1.45;
    color: var(--text-color);
    margin: 0 0 1.25rem;
    font-weight: 500;
}

.cyber-tip-lede {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0 0 1.75rem;
}

.cyber-tip-lede strong {
    color: var(--primary-color);
}

.cyber-tip-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem 1.5rem;
}

.cyber-tip-benefits li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--primary-color);
    font-size: 0.97rem;
    font-weight: 500;
    line-height: 1.3;
}

.cyber-tip-benefit-icon {
    flex-shrink: 0;
    color: var(--secondary-color);
    background: rgba(255, 102, 0, 0.12);
    padding: 4px;
    border-radius: 6px;
    box-sizing: content-box;
}

.cyber-tip-form-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    box-shadow: 0 18px 45px rgba(10, 37, 64, 0.12);
    overflow: hidden;
}

.cyber-tip-form-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: #fff;
    padding: 1.65rem 1.6rem 1.4rem;
    text-align: left;
    border-bottom: 3px solid var(--secondary-color);
}

.cyber-tip-form-header p {
    margin: 0;
    color: #fff;
}

.cyber-tip-form-pitch {
    font-size: 1.25rem;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 0.5rem !important;
}

.cyber-tip-form-accent {
    color: #ffb380;
}

.cyber-tip-form-pitch-sub {
    font-size: 0.95rem;
    line-height: 1.45;
    opacity: 0.9;
    font-weight: 400;
}

.cyber-tip-form {
    padding: 1.5rem;
}

.cyber-tip-form .form-group {
    margin-bottom: 1rem;
}

.cyber-tip-form label {
    display: block;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
}

.cyber-tip-form .required {
    color: #cc0000;
}

.cyber-tip-form input[type="text"],
.cyber-tip-form input[type="email"] {
    width: 100%;
    padding: 0.7rem 0.85rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    background: #fff;
    color: var(--text-color);
    box-sizing: border-box;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.cyber-tip-form input[type="text"]:focus,
.cyber-tip-form input[type="email"]:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.15);
}

.cyber-tip-submit {
    width: 100%;
    padding: 0.95rem 1rem;
    font-size: 1.05rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-top: 0.5rem;
}

.cyber-tip-form-privacy {
    margin: 0.85rem 0 0;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
}

.cyber-tip-page-main {
    background: #fff;
}

.cyber-tip-threat-section {
    background: #fff;
}

.cyber-tip-threat-intro {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 2.5rem;
}

.cyber-tip-threat-heading {
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--primary-color);
    margin: 0 0 0.5rem;
    letter-spacing: -0.02em;
    font-weight: 800;
}

.cyber-tip-threat-sub {
    font-size: 1.1rem;
    color: var(--text-light);
    margin: 0;
    font-style: italic;
}

.cyber-tip-threat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1080px;
    margin: 0 auto 2.5rem;
}

.cyber-tip-threat-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.75rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 14px rgba(10, 37, 64, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.cyber-tip-threat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(10, 37, 64, 0.1);
    border-color: rgba(255, 102, 0, 0.4);
}

.cyber-tip-threat-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(255, 102, 0, 0.12);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: background 0.2s ease;
}

.cyber-tip-threat-card:hover .cyber-tip-threat-icon {
    background: rgba(255, 102, 0, 0.2);
}

.cyber-tip-threat-card p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-color);
}

.cyber-tip-threat-card p strong {
    color: var(--primary-color);
}

.cyber-tip-threat-closing {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-color);
}

.cyber-tip-threat-closing strong {
    color: var(--secondary-color);
}

.cyber-tip-solution-section {
    background: var(--bg-light);
}

.cyber-tip-callout {
    text-align: center;
    color: var(--primary-color);
    font-size: clamp(1.4rem, 2.6vw, 1.85rem);
    line-height: 1.35;
    margin: 0 auto 2rem;
    max-width: 780px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.cyber-tip-solution-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.cyber-tip-solution-item {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.75rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    box-shadow: 0 4px 14px rgba(10, 37, 64, 0.04);
}

.cyber-tip-solution-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(255, 102, 0, 0.12);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cyber-tip-solution-item p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
}

.cyber-tip-solution-item p strong {
    color: var(--primary-color);
}

.cyber-tip-tips-section {
    background: var(--bg-light);
}

.cyber-tip-tips-heading {
    text-align: center;
    color: var(--primary-color);
    font-size: 1.6rem;
    line-height: 1.35;
    margin: 0 0 2rem;
}

.cyber-tip-tips-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.85rem;
}

.cyber-tip-tips-list li {
    background: #fff;
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--secondary-color);
    border-radius: 8px;
    padding: 1rem 1.25rem;
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 1rem;
    align-items: start;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.cyber-tip-tips-list li:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    transform: translateY(-1px);
}

.cyber-tip-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 102, 0, 0.12);
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.35rem 0.6rem;
    border-radius: 6px;
    white-space: nowrap;
}

.cyber-tip-tips-list li p {
    margin: 0;
    color: var(--text-color);
    font-size: 0.98rem;
    line-height: 1.55;
}

.cyber-tip-closing {
    text-align: center;
    font-size: 1.05rem;
    color: var(--text-color);
    max-width: 760px;
    margin: 0 auto 1.5rem;
}

.cyber-tip-about-link {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.95rem;
}

.cyber-tip-about-link a {
    color: var(--primary-color);
    text-decoration: none;
}

.cyber-tip-about-link a:hover {
    color: var(--secondary-color);
}

@media (max-width: 880px) {
    .cyber-tip-hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .cyber-tip-tips-list li {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    .cyber-tip-num {
        justify-self: start;
    }
}
