/* Reset and Base Styles */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&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;
    --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: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    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-weight: 700;
    line-height: 1.25;
    margin-bottom: 1rem;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

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: 2rem;
    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;
}

.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);
}

/* Hero: secondary button and links must be visible on dark background */
.hero .btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.9);
}

.hero .btn-secondary:hover {
    background-color: #fff;
    color: var(--primary-color);
    border-color: #fff;
}

.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;
    min-height: 220px;
    background: var(--bg-light);
}

.blog-featured-image img {
    width: 100%;
    height: auto;
    min-height: 220px;
    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: 720px;
    margin: 0 auto;
}

.blog-single-image {
    margin-bottom: 1.5rem;
    border-radius: var(--radius-md);
    overflow: hidden;
}

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

.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; }

/* ===== 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 3rem;
}

.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;
}

.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;
}

.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-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;
}

.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 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;
    }
}

/* 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;
    }
}

