/* mowlawners.com */

:root {
    --green: #38a91f;
    --green-dark: #1f7c1d;
    --green-soft: #ecf8ea;
    --blue: #0d67b8;
    --blue-bright: #149de4;
    --blue-dark: #0a2e55;
    --ink: #102033;
    --muted: #5d6b7c;
    --line: #d9e5ef;
    --bg: #f7fbff;
    --white: #ffffff;
    --shadow: 0 20px 55px rgba(10, 46, 85, 0.12);
    --radius: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background: var(--white);
    line-height: 1.55;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
}

.container {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(217, 229, 239, 0.9);
}

.nav-wrap {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    width: min(360px, 58vw);
    text-decoration: none;
}

.top-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 0.94rem;
}

.top-nav a {
    text-decoration: none;
    padding: 10px 12px;
    border-radius: 999px;
    color: var(--blue-dark);
}

.top-nav a:hover,
.top-nav a:focus-visible {
    background: var(--green-soft);
    outline: none;
}

.nav-cta {
    background: var(--blue);
    color: var(--white) !important;
}

.hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 15%, rgba(56, 169, 31, 0.17), transparent 30%),
        radial-gradient(circle at 88% 12%, rgba(20, 157, 228, 0.18), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    padding: 78px 0 66px;
}

.hero::after {
    content: "";
    position: absolute;
    left: -6%;
    right: -6%;
    bottom: -86px;
    height: 156px;
    background: var(--white);
    border-radius: 50% 50% 0 0;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.72fr);
    gap: 40px;
    align-items: center;
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--green-dark);
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    font-size: 0.76rem;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    margin-bottom: 18px;
    font-size: clamp(2.55rem, 6vw, 5.35rem);
    line-height: 0.96;
    letter-spacing: -0.07em;
    max-width: 780px;
}

h2 {
    margin-bottom: 12px;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1;
    letter-spacing: -0.055em;
}

h3 {
    font-size: 1.22rem;
    margin-bottom: 8px;
}

.hero-text {
    max-width: 680px;
    color: var(--muted);
    font-size: clamp(1.06rem, 2vw, 1.22rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 26px 0 22px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 20px;
    border-radius: 999px;
    border: 0;
    text-decoration: none;
    font-weight: 900;
    cursor: pointer;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-1px);
    outline: none;
}

.button.primary {
    background: linear-gradient(135deg, var(--green), var(--blue));
    color: var(--white);
    box-shadow: 0 12px 30px rgba(13, 103, 184, 0.22);
}

.button.secondary {
    background: var(--white);
    color: var(--blue-dark);
    border: 1px solid var(--line);
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.trust-row span {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--white);
    color: var(--blue-dark);
    border: 1px solid var(--line);
    font-weight: 800;
    font-size: 0.9rem;
}

.hero-card {
    background: var(--white);
    border: 1px solid rgba(217, 229, 239, 0.9);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 28px;
}

.hero-card-top {
    display: grid;
    gap: 6px;
    margin-bottom: 24px;
}

.hero-card-top strong {
    font-size: 1.7rem;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.mini-label {
    color: var(--blue);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.74rem;
}

.quick-services {
    display: grid;
    gap: 14px;
}

.quick-services div {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: var(--bg);
    border-radius: 16px;
    border: 1px solid var(--line);
}

.quick-services p {
    margin: 0;
    font-weight: 900;
}

.service-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-block;
    position: relative;
    flex: 0 0 auto;
}

.grass-icon {
    background: var(--green-soft);
}

.grass-icon::before,
.grass-icon::after {
    content: "";
    position: absolute;
    bottom: 9px;
    background: var(--green);
    transform-origin: bottom center;
    border-radius: 12px 12px 0 0;
}

.grass-icon::before {
    left: 12px;
    width: 7px;
    height: 22px;
    transform: rotate(-16deg);
}

.grass-icon::after {
    left: 23px;
    width: 7px;
    height: 27px;
    transform: rotate(16deg);
}

.water-icon {
    background: rgba(20, 157, 228, 0.13);
}

.water-icon::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    left: 11px;
    top: 13px;
    background: var(--blue-bright);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
}

.surface-icon {
    background: linear-gradient(135deg, rgba(56, 169, 31, 0.15), rgba(20, 157, 228, 0.18));
}

.surface-icon::before {
    content: "";
    position: absolute;
    left: 9px;
    right: 9px;
    top: 16px;
    height: 5px;
    border-radius: 99px;
    background: var(--blue);
    box-shadow: 0 9px 0 var(--green);
}

.card-note {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 0.94rem;
}

.section {
    padding: 74px 0;
}

.section.muted {
    background: var(--bg);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 34px;
}

.section-heading p:not(.eyebrow) {
    color: var(--muted);
    font-size: 1.08rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 22px;
    box-shadow: 0 12px 34px rgba(10, 46, 85, 0.07);
    min-height: 220px;
}

.service-card .price {
    display: inline-flex;
    align-items: baseline;
    gap: 2px;
    background: var(--green-soft);
    color: var(--green-dark);
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 1.26rem;
    font-weight: 950;
    margin-bottom: 18px;
}

.service-card .price span {
    font-size: 0.76rem;
}

.service-card h3 {
    color: var(--blue-dark);
}

.service-card p {
    color: var(--muted);
    margin-bottom: 0;
}

.featured-service {
    background: linear-gradient(145deg, var(--blue-dark), var(--blue));
    color: var(--white);
    border-color: transparent;
}

.featured-service .price {
    background: rgba(255, 255, 255, 0.16);
    color: var(--white);
}

.featured-service h3,
.featured-service p {
    color: var(--white);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.step-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 26px;
    border: 1px solid var(--line);
}

.step-card span {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--green), var(--blue));
    color: var(--white);
    font-weight: 950;
    margin-bottom: 18px;
}

.step-card p {
    color: var(--muted);
    margin-bottom: 0;
}

.request-section {
    background:
        linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.request-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.58fr) minmax(0, 1fr);
    gap: 34px;
    align-items: start;
}

.request-copy {
    position: sticky;
    top: 112px;
}

.request-copy p:not(.eyebrow) {
    color: var(--muted);
    font-size: 1.06rem;
}

.estimate-box {
    margin-top: 24px;
    padding: 24px;
    border-radius: var(--radius);
    background: linear-gradient(145deg, var(--blue-dark), var(--blue));
    color: var(--white);
    box-shadow: var(--shadow);
}

.estimate-box span {
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.75rem;
    font-weight: 900;
    opacity: 0.85;
}

.estimate-box strong {
    display: block;
    font-size: 3rem;
    line-height: 1;
    margin: 10px 0 8px;
}

.estimate-box p {
    margin: 0;
    color: rgba(255, 255, 255, 0.84) !important;
    font-size: 0.95rem !important;
}

.form-panel {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: calc(var(--radius) + 4px);
    box-shadow: var(--shadow);
    padding: 28px;
}

.form-status {
    padding: 14px 16px;
    border-radius: 16px;
    margin-bottom: 18px;
    font-weight: 800;
}

.form-status ul {
    margin: 8px 0 0 20px;
    padding: 0;
}

.form-status.success {
    background: var(--green-soft);
    color: var(--green-dark);
    border: 1px solid rgba(56, 169, 31, 0.25);
}

.form-status.error {
    background: #fff2f2;
    color: #9b1c1c;
    border: 1px solid #ffd0d0;
}

.service-form {
    display: grid;
    gap: 18px;
}

.field-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

label,
fieldset {
    min-width: 0;
}

label span,
legend {
    display: block;
    font-weight: 900;
    color: var(--blue-dark);
    margin-bottom: 7px;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid #cbd9e6;
    border-radius: 14px;
    padding: 13px 14px;
    color: var(--ink);
    font: inherit;
    background: var(--white);
    outline: none;
}

textarea {
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(13, 103, 184, 0.12);
}

.services-picker {
    border: 0;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.service-choice {
    position: relative;
    display: block;
    cursor: pointer;
}

.service-choice input {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
}

.service-choice span {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: center;
    padding: 15px 16px;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: var(--bg);
    margin: 0;
    transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.service-choice strong {
    color: var(--blue-dark);
}

.service-choice em {
    font-style: normal;
    color: var(--muted);
    font-weight: 800;
    text-align: right;
}

.service-choice input:checked + span {
    border-color: var(--blue);
    background: #eff8ff;
    box-shadow: 0 0 0 4px rgba(13, 103, 184, 0.09);
}

.service-choice.full-choice input:checked + span {
    background: var(--green-soft);
    border-color: var(--green);
}

.service-choice input:disabled + span {
    opacity: 0.46;
    cursor: not-allowed;
}

.dynamic-fields {
    display: grid;
    gap: 14px;
}

.conditional-field {
    display: none;
    padding: 16px;
    border: 1px dashed rgba(13, 103, 184, 0.35);
    border-radius: 18px;
    background: #f8fcff;
}

.conditional-field.is-visible {
    display: block;
}

.field-help {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 0.92rem;
}

.hidden-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-submit {
    width: 100%;
    min-height: 54px;
    font-size: 1rem;
}

.privacy-note {
    margin: -4px 0 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.site-footer {
    padding: 26px 0;
    background: var(--blue-dark);
    color: rgba(255, 255, 255, 0.86);
}

.footer-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.footer-grid p {
    margin: 0;
}

@media (max-width: 1060px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 820px) {
    .nav-wrap {
        min-height: auto;
        padding: 16px 0;
        align-items: flex-start;
        flex-direction: column;
    }

    .top-nav {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 2px;
    }

    .hero {
        padding-top: 46px;
    }

    .hero-grid,
    .request-grid {
        grid-template-columns: 1fr;
    }

    .request-copy {
        position: static;
    }

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

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

    .footer-grid {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 520px) {
    .container {
        width: min(100% - 24px, 1120px);
    }

    .brand {
        width: 100%;
    }

    .top-nav a {
        white-space: nowrap;
    }

    .hero-card,
    .form-panel {
        padding: 20px;
    }

    .service-choice span {
        align-items: flex-start;
        flex-direction: column;
    }

    .service-choice em {
        text-align: left;
    }
}
