/* Lawton specific styling
   This file only affects the Lawton managed IT page layout
*/

/* Shared tokens */
:root {
    --lawton-green: #049b22;
    --lawton-bg-soft: #f6f7fb;
    --lawton-border-soft: #e2e5f0;
}

/* HERO */

.lawton-hero-section {
    padding-top: 120px;
    padding-bottom: 100px;
    position: relative;
    background: radial-gradient(circle at top left, #111827 0, #020617 55%, #020617 100%);
    color: #ffffff;
}

.lawton-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(4, 155, 34, 0.18), transparent 60%);
    opacity: 0.9;
    pointer-events: none;
}

.lawton-hero-section .container {
    position: relative;
    z-index: 1;
}

.lawton-hero-tag .badge {
    border-radius: 999px;
    padding-inline: 0.9rem;
    padding-block: 0.25rem;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
}

.lawton-hero-section h1 {
    font-size: clamp(2.1rem, 3vw, 2.7rem);
    line-height: 1.2;
    color: #ffffff;
}

.lawton-hero-section .lead {
    font-size: 1.02rem;
    max-width: 40rem;
    color: #e5e7eb;
}

.lawton-hero-points p {
    font-size: 0.9rem;
    color: #e5e7eb;
}

.lawton-check-icon {
    width: 1.4rem;
    height: 1.4rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(4, 155, 34, 0.14);
    flex-shrink: 0;              /* keep from overlapping text */
    margin-right: 0.5rem;        /* ensure space before sentence */
}

/* Primary CTA button specific to Lawton */

.lawton-btn-primary {
    background-color: var(--lawton-green);
    border-color: var(--lawton-green);
    color: #ffffff;
    font-weight: 600;
}

.lawton-btn-primary:hover,
.lawton-btn-primary:focus {
    background-color: #037b1b;
    border-color: #037b1b;
    color: #ffffff;
}

/* Hero right panel */

.lawton-hero-panel {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}


.lawton-hero-panel h2,
.lawton-hero-panel p,
.lawton-hero-panel li {
    color: #FFFFFF;
}

.lawton-fit-list {
    padding-left: 0;
}

.lawton-fit-list li {
    position: relative;
    padding-left: 1.4rem;
    font-size: 0.9rem;
}

.lawton-fit-list .lawton-dot {
    position: absolute;
    left: 0;
    top: 0.35rem;
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 999px;
    background: var(--lawton-green);
}

/* CONTEXT SECTION: horizontal cards */

.lawton-context-section {
    background: var(--lawton-bg-soft);
    color: #111827;
}

.lawton-context-section h2,
.lawton-context-section p {
    color: #111827;
}

.lawton-horizontal-cards .lawton-card {
    border-radius: 1.25rem;
    border: 1px solid var(--lawton-border-soft);
    background: #ffffff;
    display: block;              /* simpler flow, less chance of weird gaps */
    padding: 1.2rem 1.2rem;
    position: relative;
}

.lawton-card-icon {
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;       /* reduce tall blank space above text */
}

.lawton-card-icon i {
    font-size: 1.1rem;
}

.lawton-card-body h3 {
    margin-bottom: 0.35rem;
    color: #111827;
}

.lawton-card-body p {
    font-size: 0.95rem;
    color: #111827;
}

/* PROCESS SECTION: timeline */

.lawton-process-section {
    background: #ffffff;
    color: #111827;
}

.lawton-process-section h2,
.lawton-process-section p {
    color: #111827;
}

.lawton-timeline {
    position: relative;
    padding-left: 1.8rem;
    margin-top: 0.75rem;
}

.lawton-timeline::before {
    content: "";
    position: absolute;
    left: 0.6rem;
    top: 0.2rem;
    bottom: 0.2rem;
    width: 2px;
    background: linear-gradient(to bottom, var(--lawton-green), rgba(4, 155, 34, 0.1));
}

.lawton-timeline-item {
    position: relative;
    padding-bottom: 1.1rem;
}

.lawton-timeline-item:last-child {
    padding-bottom: 0;
}

.lawton-timeline-marker {
    position: absolute;
    left: -0.1rem;
    top: 0;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 999px;
    background: #ffffff;
    border: 2px solid var(--lawton-green);
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lawton-green);
}

.lawton-timeline-content h3 {
    font-size: 0.95rem;
    color: #111827;
}

.lawton-timeline-content p {
    font-size: 0.9rem;
    color: #4b5563;
}

/* PAIN POINTS AND OUTCOMES */

.lawton-painpoints-section {
    background: #020617;
    color: #f9fafb;
}

.lawton-painpoints-section h2,
.lawton-painpoints-section p {
    color: #e5e7eb;
}

.lawton-issue-list p {
    font-size: 0.9rem;
    color: #e5e7eb;
}

.lawton-issue-icon {
    flex-shrink: 0;
    margin-right: 0.5rem;
}

.lawton-issue-icon i {
    font-size: 1.1rem;
}

.lawton-outcomes-panel {
    border-radius: 1.25rem;
    border: 1px solid var(--lawton-border-soft);
    background: #ffffff;
    color: #111827;
}

.lawton-outcomes-panel h3,
.lawton-outcomes-panel p,
.lawton-outcomes-panel li {
    color: #111827;
}

.lawton-outcomes-panel p {
    font-size: 0.9rem;
}

.lawton-outcomes-list {
    margin-bottom: 0.5rem;
}

/* MICROSOFT 365 SECTION */

.lawton-m365-section {
    background: var(--lawton-bg-soft);
    color: #111827;
}

.lawton-m365-section h2,
.lawton-m365-section p {
    color: #111827;
}

.lawton-section-label .badge {
    border-radius: 999px;
    padding-inline: 0.9rem;
    padding-block: 0.32rem;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
}

.lawton-m365-list {
    margin-top: 0.75rem;
}

.lawton-m365-list .lawton-dot {
    display: inline-block;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 999px;
    background: var(--lawton-green);
    margin-top: 0.38rem;
    flex-shrink: 0;
    margin-right: 0.4rem;
}

.lawton-m365-list span {
    font-size: 0.9rem;
    color: #111827;
}

/* Stat cards on right side */

.lawton-m365-stats .lawton-stat-card {
    border-radius: 1rem;
    background: #ffffff;
    border: 1px solid var(--lawton-border-soft);
    padding: 0.9rem 1rem;
    color: #111827;
}

.lawton-m365-stats h3 {
    font-size: 0.95rem;
    margin-bottom: 0.1rem;
    color: #111827;
}

.lawton-m365-stats p {
    font-size: 0.9rem;
    color: #4b5563;
}

/* COMPARE SECTION */

.lawton-compare-section {
    background: #ffffff;
    color: #111827;
}

.lawton-compare-section h2,
.lawton-compare-section p {
    color: #111827;
}

.lawton-compare-card {
    border-radius: 1.25rem;
    border: 1px solid var(--lawton-border-soft);
}

/* FAQ SECTION */

.lawton-faq-section h2 {
    margin-bottom: 0.5rem;
    color: #111827;
}

.lawton-faq-item h3 {
    font-size: 1.05rem;
    color: #111827;
}

.lawton-faq-item p {
    font-size: 0.95rem;
    color: #4b5563;
}

/* FINAL CTA */

.lawton-final-cta .lawton-btn-primary {
    min-width: 190px;
}

/* RESPONSIVE TWEAKS */

@media (max-width: 991.98px) {
    .lawton-hero-section {
        padding-top: 150px;
        padding-bottom: 70px;
    }
    .lawton-hero-panel {
        margin-top: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .lawton-hero-section {
        padding-top: 130px;
        padding-bottom: 60px;
    }
    .lawton-horizontal-cards .lawton-card {
        padding: 1.1rem 1rem;
    }
    .lawton-timeline {
        padding-left: 1.5rem;
    }
}

/* Fix hero panel heading color */
.lawton-hero-panel h2 {
    color: #111827 !important;
}

/* Fix hero panel paragraph text color */
.lawton-hero-panel p {
    color: #111827 !important;
}

/* Normalize the "large" class inside Lawton hero panel */
.lawton-hero-panel p.large {
    font-size: 0.95rem !important;   /* match your standard body size */
    line-height: 1.5;
}

/* Restore the intended larger size ONLY for the fit-check paragraph */
.lawton-hero-panel p.large {
    font-size: 1.1rem !important;   /* adjust up/down as needed */
    line-height: 1.55;
    font-weight: 400;
}
/* Make hero panel paragraph size match bullet points */
.lawton-hero-panel p {
    font-size: 1.0rem !important;
    line-height: 1.55;
    font-weight: 400;
    color: #111827;
}
/* Fix overlap of timeline step numbers and titles */
.lawton-timeline {
    padding-left: 0;              /* reset extra padding */
}

.lawton-timeline-item {
    padding-left: 0;              /* let content control its own offset */
}

.lawton-timeline-marker {
    left: 0;                      /* keep marker on the line */
}

.lawton-timeline-content {
    margin-left: 2.4rem;          /* push h3 + text to the right of the numbers */
    position: relative;
}
