
        #bmo-landing h1, #bmo-landing h2, #bmo-landing h3, #bmo-landing h4 {
            font-family: 'PT Sans', 'Alef', Arial, sans-serif;
        }
        #bmo-landing p, #bmo-landing li {
            font-family: 'PT Sans', Arial, sans-serif;
            font-size: 1.05rem;
            line-height: 1.6;
        }

        /* HERO */
        #bmo-hero {
            position: relative;
            min-height: 70vh;
            display: flex;
            align-items: center;
            padding: 90px 0;
            color: #fff;
            background:
                linear-gradient(180deg, rgba(0,40,25,0.65) 0%, rgba(0,40,25,0.45) 50%, rgba(0,40,25,0.82) 100%),
                url('https://i.ytimg.com/vi/HtIE_zpeWoo/maxresdefault.jpg') center/cover no-repeat;
        }
        #bmo-hero .hero-inner { max-width: 820px; }
        #bmo-hero .kicker {
            display: inline-block;
            background: #FFE52B;
            color: #1c2a24;
            padding: 6px 16px;
            border-radius: 3px;
            font-weight: 800;
            font-size: 0.82rem;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            margin-bottom: 22px;
        }
        #bmo-hero h1 {
            color: #fff;
            font-weight: 900;
            font-size: clamp(2rem, 4.6vw, 3.6rem);
            line-height: 1.1;
            text-shadow: 0 2px 20px rgba(0,0,0,0.6);
            margin-bottom: 20px;
        }
        #bmo-hero h1 em { font-style: normal; color: #FFE52B; }
        #bmo-hero p.hero-sub {
            font-size: 1.2rem;
            max-width: 680px;
            color: #f4f4f4;
            text-shadow: 0 1px 10px rgba(0,0,0,0.6);
            margin-bottom: 28px;
        }
        #bmo-hero .hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
        #bmo-landing .btn-bmo {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 15px 30px;
            border-radius: 6px;
            font-weight: 800;
            font-size: 1.05rem;
            letter-spacing: 0.4px;
            text-decoration: none;
            transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
            border: none;
            cursor: pointer;
        }
        #bmo-landing .btn-bmo-primary { background: #008752; color: #fff; }
        #bmo-landing .btn-bmo-primary:hover { background: #005a37; color: #fff; transform: translateY(-2px); box-shadow: 0 10px 22px rgba(0,0,0,0.25); text-decoration: none; }
        #bmo-landing .btn-bmo-yellow { background: #FFE52B; color: #1c2a24; }
        #bmo-landing .btn-bmo-yellow:hover { background: #f2d20a; color: #1c2a24; transform: translateY(-2px); box-shadow: 0 10px 22px rgba(0,0,0,0.25); text-decoration: none; }
        #bmo-landing .btn-bmo-ghost {
            background: rgba(255,255,255,0.12); color: #fff;
            border: 2px solid rgba(255,255,255,0.55);
        }
        #bmo-landing .btn-bmo-ghost:hover { background: rgba(255,255,255,0.22); color: #fff; transform: translateY(-2px); text-decoration: none; }

        /* CRED BAR */
        #bmo-cred {
            background: #f5f6f5;
            padding: 34px 0;
            border-bottom: 1px solid #e3e3e3;
        }
        #bmo-cred .cred-label {
            text-align: center;
            font-size: 0.8rem;
            letter-spacing: 3.2px;
            font-weight: 800;
            text-transform: uppercase;
            color: #4b5a53;
            margin-bottom: 16px;
        }
        #bmo-cred .cred-list {
            display: flex; flex-wrap: wrap; justify-content: center;
            gap: 14px 36px; font-weight: 700; color: #2a3a33;
        }
        #bmo-cred .cred-list span::before {
            content: "\2713"; color: #008752; font-weight: 900; margin-right: 8px;
        }

        /* SECTIONS */
        #bmo-landing .bmo-section { padding: 70px 0; }
        #bmo-landing .bmo-section.alt { background: #eaf3ee; }
        #bmo-landing .bmo-eyebrow {
            display: inline-block; color: #008752; font-weight: 800;
            font-size: 0.82rem; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 12px;
        }
        #bmo-landing .bmo-section h2 {
            font-weight: 900; letter-spacing: -0.3px;
            font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 14px;
            color: #1c2a24;
        }
        #bmo-landing .bmo-header { text-align: center; margin-bottom: 40px; }
        #bmo-landing .bmo-header p { color: #455; max-width: 720px; margin: 0 auto; font-size: 1.1rem; }

        /* VIDEO */
        #bmo-video-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 44px; align-items: center; }
        .video-embed {
            position: relative; padding-bottom: 56.25%; height: 0;
            border-radius: 10px; overflow: hidden;
            box-shadow: 0 28px 52px rgba(0,0,0,0.22);
        }
        .video-embed iframe,
        .video-embed video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; object-fit: cover; background: #000; }
        #bmo-landing .quote {
            font-size: 1.25rem; font-weight: 600; line-height: 1.45;
            color: #1c2a24; border-left: 4px solid #008752;
            padding: 4px 0 4px 20px; margin: 18px 0 18px;
        }
        #bmo-landing .quote-attrib {
            font-size: 0.9rem; color: #556; font-weight: 700;
            letter-spacing: 0.4px; text-transform: uppercase;
        }

        /* DIFFS */
        #bmo-diffs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
        .diff-card {
            background: #fff; border: 1px solid #e5e5e5; border-radius: 10px;
            padding: 28px 24px; transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        .diff-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(0,0,0,0.08); }
        .diff-icon {
            width: 50px; height: 50px; background: #008752; color: #fff;
            border-radius: 50%; display: flex; align-items: center; justify-content: center;
            font-weight: 900; font-size: 1.3rem; margin-bottom: 16px;
        }
        .diff-card h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 8px; color: #1c2a24; }
        .diff-card p { color: #445; font-size: 0.98rem; }

        /* BY THE NUMBERS STRIP */
        #bmo-landing .bmo-numbers {
            margin-top: 44px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0;
            background: #fff;
            border: 1px solid #e5e5e5;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 8px 18px rgba(0,0,0,0.04);
        }
        #bmo-landing .num-item {
            padding: 26px 18px;
            text-align: center;
            border-right: 1px solid #e5e5e5;
        }
        #bmo-landing .num-item:last-child { border-right: none; }
        #bmo-landing .num {
            display: block;
            font-size: clamp(1.8rem, 3.4vw, 2.6rem);
            font-weight: 900;
            color: #008752;
            line-height: 1;
            margin-bottom: 8px;
        }
        #bmo-landing .num-lbl {
            display: block;
            font-size: 0.85rem;
            color: #445;
            font-weight: 600;
            letter-spacing: 0.3px;
        }

        /* BRING IT HOME */
        #bmo-bring { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
        .bh-card {
            background: #fff; border: 1px solid #e5e5e5; border-radius: 10px;
            padding: 30px 26px; text-align: center;
            box-shadow: 0 8px 18px rgba(0,0,0,0.04);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            display: flex;
            flex-direction: column;
        }
        .bh-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(0,0,0,0.09); }
        .bh-badge {
            display: inline-block; background: #FFE52B; color: #1c2a24;
            padding: 4px 12px; font-size: 0.72rem; font-weight: 900;
            letter-spacing: 1.5px; border-radius: 3px; margin-bottom: 12px;
            text-transform: uppercase;
            align-self: center;
        }
        .bh-card h3 { color: #008752; font-size: 1.25rem; font-weight: 800; margin-bottom: 10px; }
        .bh-card p { color: #445; font-size: 0.98rem; margin-bottom: 16px; flex-grow: 1; }
        .bh-card .btn-bmo { width: 100%; justify-content: center; margin-top: auto; }

        /* PICKUP LOCATIONS */
        #bmo-pickup-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 16px;
        }
        .pickup-card {
            background: #fff;
            border: 1px solid #e5e5e5;
            border-radius: 10px;
            padding: 24px 20px;
            text-align: center;
            box-shadow: 0 6px 16px rgba(0,0,0,0.04);
            display: flex;
            flex-direction: column;
            transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
        }
        .pickup-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 18px 34px rgba(0,0,0,0.09);
            border-color: #008752;
        }
        .pickup-card h3 {
            color: #008752;
            font-size: 1.25rem;
            font-weight: 800;
            margin-bottom: 2px;
        }
        .pickup-brand {
            font-weight: 700;
            color: #1c2a24;
            font-size: 0.88rem;
            margin-bottom: 12px;
            letter-spacing: 0.3px;
        }
        .pickup-addr {
            color: #445;
            font-size: 0.9rem;
            line-height: 1.5;
            margin-bottom: 10px;
            flex-grow: 1;
        }
        .pickup-phone {
            display: block;
            color: #008752;
            font-weight: 800;
            font-size: 0.98rem;
            margin-bottom: 14px;
            text-decoration: none;
        }
        .pickup-phone:hover { text-decoration: underline; color: #005a37; }
        .pickup-card .btn-bmo { width: 100%; justify-content: center; padding: 12px 16px; font-size: 0.98rem; }

        /* PHONE CTA */
        .bmo-phone-cta {
            background: linear-gradient(135deg, #008752 0%, #005a37 100%);
            color: #fff; text-align: center; padding: 64px 24px;
            position: relative; overflow: hidden;
        }
        .bmo-phone-cta > * { position: relative; z-index: 1; }
        .bmo-phone-cta h2 { color: #fff; margin-bottom: 10px; }
        .bmo-phone-cta p { color: #d8eee3; font-size: 1.12rem; max-width: 640px; margin: 0 auto 26px; }
        .bmo-phone-cta .phone-number {
            display: inline-block;
            font-family: 'PT Sans', Arial, sans-serif;
            font-size: clamp(2rem, 4.8vw, 3.4rem);
            font-weight: 900; color: #FFE52B;
            padding: 14px 34px;
            background: rgba(0,0,0,0.25);
            border-radius: 8px;
            letter-spacing: 1px;
            text-decoration: none;
        }
        .bmo-phone-cta .phone-number:hover { background: rgba(0,0,0,0.4); color: #FFE52B; text-decoration: none; }
        .bmo-phone-cta .phone-note { margin-top: 16px; font-size: 0.95rem; color: #bfd9cc; }

        /* FAQ */
        #bmo-faq-list { max-width: 820px; margin: 0 auto; }
        #bmo-faq-list details {
            background: #fff; border: 1px solid #e5e5e5; border-radius: 8px;
            padding: 18px 22px; margin-bottom: 10px;
            transition: box-shadow 0.2s ease, border-color 0.2s ease;
        }
        #bmo-faq-list details[open] { box-shadow: 0 8px 22px rgba(0,0,0,0.06); border-color: #008752; }
        #bmo-faq-list summary {
            font-weight: 800; font-size: 1.05rem; color: #1c2a24;
            cursor: pointer; list-style: none;
            display: flex; justify-content: space-between; align-items: center; gap: 12px;
        }
        #bmo-faq-list summary::-webkit-details-marker { display: none; }
        #bmo-faq-list summary::after { content: "+"; color: #008752; font-weight: 900; font-size: 1.4rem; }
        #bmo-faq-list details[open] summary::after { content: "\2212"; }
        #bmo-faq-list details p { margin-top: 12px; color: #445; font-size: 1rem; }

        /* === ULTIMATE SPORTS TURF page-specific sections === */

        /* 4-column WHY CHOOSE diff grid (overrides BMO's 3-col) */
        #bmo-landing #bmo-diffs[style*="repeat(4"] { grid-template-columns: repeat(4, 1fr); }

        /* Project Showcase grid */
        #project-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 22px;
        }
        .project-card {
            background: #fff;
            border: 1px solid #e5e5e5;
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            display: flex;
            flex-direction: column;
        }
        .project-card:hover { transform: translateY(-5px); box-shadow: 0 22px 46px rgba(0,40,20,0.13); }
        .project-img {
            aspect-ratio: 16/9;
            background-size: cover;
            background-position: center;
            background-color: #006b42;
        }
        .project-body { padding: 22px 24px 26px; flex-grow: 1; display: flex; flex-direction: column; }
        .project-tag {
            display: inline-block;
            font-size: 0.72rem;
            font-weight: 800;
            letter-spacing: 1.6px;
            text-transform: uppercase;
            color: #008653;
            background: #fffbe6;
            padding: 4px 10px;
            border-radius: 3px;
            margin-bottom: 10px;
            align-self: flex-start;
        }
        .project-card h3 { color: #003d26; font-size: 1.2rem; margin-bottom: 8px; font-family: 'PT Sans', sans-serif; font-weight: 700; }
        .project-card p { color: #445; font-size: 0.95rem; flex-grow: 1; }
        .project-card-cta {
            background: #fffbe6;
            border-color: #FFE52B;
            justify-content: center;
            align-items: center;
            display: flex;
        }
        .project-card-cta .project-tag { background: #008653; color: #fff; }

        /* Natural vs Artificial comparison */
        #vs-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }
        .vs-col {
            background: #fff;
            border: 1px solid #e5e5e5;
            border-radius: 10px;
            padding: 32px 30px;
            position: relative;
        }
        .vs-col h3 {
            font-size: 1.4rem;
            margin-bottom: 18px;
            padding-bottom: 14px;
            border-bottom: 2px solid;
            color: #003d26;
            font-family: 'PT Sans', sans-serif;
            font-weight: 700;
        }
        .vs-natural { border-top: 5px solid #008653; }
        .vs-natural h3 { border-bottom-color: #008653; }
        .vs-natural h3::before {
            content: "\2713";
            display: inline-block;
            background: #008653;
            color: #fff;
            width: 26px; height: 26px;
            border-radius: 50%;
            text-align: center;
            line-height: 26px;
            font-size: 0.95rem;
            margin-right: 10px;
            vertical-align: -3px;
            font-weight: 900;
        }
        .vs-artificial { border-top: 5px solid #b94545; opacity: 0.95; }
        .vs-artificial h3 { border-bottom-color: #b94545; color: #5e1f1f; }
        .vs-artificial h3::before {
            content: "\2715";
            display: inline-block;
            background: #b94545;
            color: #fff;
            width: 26px; height: 26px;
            border-radius: 50%;
            text-align: center;
            line-height: 26px;
            font-size: 0.95rem;
            margin-right: 10px;
            vertical-align: -3px;
            font-weight: 900;
        }
        .vs-col ul { list-style: none; padding: 0; margin: 0; }
        .vs-col ul li {
            position: relative;
            padding: 10px 0 10px 28px;
            font-size: 0.96rem;
            color: #2a3a33;
            border-bottom: 1px dotted rgba(0,134,83,0.15);
            line-height: 1.5;
        }
        .vs-col ul li:last-child { border-bottom: none; }
        .vs-col ul li::before {
            position: absolute;
            left: 0; top: 12px;
            font-size: 1.1rem;
            line-height: 1;
            font-weight: 900;
        }
        .vs-natural ul li::before { content: "\2713"; color: #008653; }
        .vs-artificial ul li::before { content: "\2715"; color: #b94545; }

        /* Request Info form section (JotForm embed target) */
        #request-info-section { background: #f5f1e0; }
        #request-info-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 50px;
            align-items: start;
        }
        #request-info-grid .ri-text { padding-top: 8px; }
        #request-info-grid .ri-text h2 { margin-bottom: 14px; }
        #request-info-grid .ri-text p { color: #455; margin-bottom: 18px; max-width: 460px; }
        #request-info-grid .ri-text ul {
            list-style: none; padding: 0; margin: 22px 0 0;
        }
        #request-info-grid .ri-text ul li {
            padding: 9px 0 9px 30px; position: relative; font-size: 0.96rem; color: #2a3a33;
        }
        #request-info-grid .ri-text ul li::before {
            content: "\2713"; position: absolute; left: 0; top: 9px;
            width: 22px; height: 22px;
            background: #008653; color: #fff;
            border-radius: 50%;
            text-align: center; line-height: 22px;
            font-size: 0.8rem; font-weight: 900;
        }
        /* JotForm container card - clean white card matching the
           homeowner / pro brand treatment. Internal form spacing is
           controlled inside JotForm via Custom CSS, see jotform-css.txt */
        #jotform-placeholder {
            background: #fff;
            border: 1px solid #d8d3c2;
            border-radius: 8px;
            padding: 6px 10px;
            box-shadow: 0 18px 36px rgba(0,40,20,0.10);
            overflow: hidden;
        }
        /* Make the JotForm iframe responsive */
        #jotform-placeholder iframe,
        #jotform-placeholder form {
            width: 100% !important;
            min-width: 100% !important;
            max-width: 100% !important;
            border: 0 !important;
            display: block;
        }

        /* Data Sheet CTA */
        #data-sheet-cta {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 50px;
            align-items: center;
            background: linear-gradient(135deg, #fffbe6 0%, #fff7c4 100%);
            border: 2px solid #FFE52B;
            border-radius: 12px;
            padding: 48px 50px;
            box-shadow: 0 18px 36px rgba(0,40,20,0.08);
        }
        .ds-text h2 { margin-bottom: 14px; }
        .ds-text p { color: #455; margin-bottom: 22px; max-width: 560px; }
        .ds-icon-wrap { max-width: 180px; margin-left: auto; }

        /* Mobile */
        @media (max-width: 900px) {
            #bmo-video-grid { grid-template-columns: 1fr; gap: 30px; }
            #bmo-diffs { grid-template-columns: 1fr; }
            #bmo-landing #bmo-diffs[style*="repeat(4"] { grid-template-columns: repeat(2, 1fr); }
            #bmo-bring { grid-template-columns: 1fr; }
            #bmo-pickup-grid { grid-template-columns: 1fr; }
            #project-grid { grid-template-columns: 1fr; }
            #vs-grid { grid-template-columns: 1fr; }
            #data-sheet-cta { grid-template-columns: 1fr; padding: 32px 28px; gap: 20px; }
            .ds-icon-wrap { max-width: 120px; margin: 0 auto; }
            #request-info-grid { grid-template-columns: 1fr; gap: 30px; }
            #jotform-placeholder { padding: 24px 20px; min-height: 0; }
            .ph-form-row { grid-template-columns: 1fr; gap: 12px; }
            #bmo-landing .bmo-numbers { grid-template-columns: repeat(2, 1fr); }
            #bmo-landing .num-item:nth-child(2) { border-right: none; }
            #bmo-landing .num-item:nth-child(1), #bmo-landing .num-item:nth-child(2) { border-bottom: 1px solid #e5e5e5; }
            #bmo-hero { min-height: auto; padding: 60px 0; text-align: center; }
            #bmo-hero .hero-ctas { justify-content: center; }
            #bmo-landing .bmo-section { padding: 50px 0; }
        }
