/* Guide mirror styles — imported verbatim from the CRD guide pages
   (custom <style> blocks; Bootstrap 5.3 + Bootstrap Icons + Inter come
   from the app's public header). */


        :root {
            --primary-color: #333335;
            --secondary-color: #1a5120;
            --accent-color: #949494;
            --button-color: #fe6b01;
            --light-bg: #f8f9fa;
            --text-dark: #333333;
        }

        * {
            font-family: 'Inter', sans-serif;
        }

        body {
            margin: 0 !important;
            padding: 0 !important;
            color: var(--text-dark);
            margin-left: 0 !important;
        }

        /* Reset any wrapper margins */
        body > * {
            margin-left: 0 !important;
        }

        /* Full-width container override */
        .container {
            max-width: none !important;
            width: 100% !important;
            padding-left: 15px;
            padding-right: 15px;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }

        /* Override all Bootstrap container breakpoints */
        @media (min-width: 576px) {
            .container { max-width: none !important; }
        }
        @media (min-width: 768px) {
            .container { max-width: none !important; }
        }
        @media (min-width: 992px) {
            .container { max-width: none !important; }
        }
        @media (min-width: 1200px) {
            .container { max-width: none !important; }
        }
        @media (min-width: 1400px) {
            .container { max-width: none !important; }
        }

        /* Ensure no element has unwanted left margin */
        .main-content,
        .content-wrapper,
        main {
            margin-left: 0 !important;
        }

        /* Override app-style.css content-wrapper at all screen sizes */
        @media (min-width: 1024px) {
            .content-wrapper {
                margin-left: 0 !important;
            }
        }

        /* Header CTA Section with Contact Info */
        .header-cta-section {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .header-contact-info {
            margin-bottom: 0.5rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.25rem;
        }

        .header-contact-link {
            color: #fff;
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 500;
            transition: color 0.3s;
            white-space: nowrap;
        }

        .header-contact-link:hover {
            color: var(--accent-color);
        }

        .header-contact-link i {
            margin-right: 0.35rem;
        }

        /* Navigation */
        .top-nav {
            background: var(--secondary-color);
            min-height: 150px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            /* Positioning context for the absolute-positioned mobile
               hamburger inside (see .mobile-menu-toggle in the
               max-width:991.98px media query). */
            position: relative;
        }
        .top-nav > .container {
            display: flex;
            align-items: center;
            min-height: 150px;
        }

        .top-nav .navbar-brand {
            color: #fff;
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
        }

        .top-nav .navbar-brand:hover {
            color: var(--accent-color);
        }

        .top-nav .navbar-brand img {
            transition: opacity 0.3s;
        }

        .top-nav .navbar-brand img:hover {
            opacity: 0.8;
        }

        .top-nav .nav-link {
            color: #fff;
            font-weight: 500;
            margin: 0 1.25rem;
            transition: color 0.3s;
            font-size: 1.1rem;
        }

        .top-nav .nav-link:hover {
            color: var(--accent-color);
        }

        .top-nav .nav-link.active {
            color: #fff;
        }

        /* Dropdown Menu */
        .nav-item {
            position: relative;
        }

        .dropdown-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background: var(--secondary-color);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            min-width: 300px;
            padding: 0.5rem 0;
            margin-top: 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            z-index: 1000;
        }

        .nav-item:hover .dropdown-menu,
        .dropdown-menu:hover {
            display: block;
        }

        .dropdown-item {
            color: #fff;
            padding: 0.5rem 1.5rem;
            text-decoration: none;
            display: block;
            transition: all 0.3s;
            font-size: 0.95rem;
        }

        .dropdown-item:hover {
            background: rgba(255, 255, 255, 0.1);
            color: var(--accent-color);
        }

        .dropdown-divider {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin: 0.5rem 0;
        }

        /* Service Area County Dropdown with Flyout */
        .service-area-mega {
            min-width: 220px !important;
            padding: 0.5rem 0 !important;
        }

        .service-area-county {
            position: relative;
        }

        .service-area-county > .county-label {
            color: #fff;
            padding: 0.5rem 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-size: 0.95rem;
            transition: all 0.2s;
        }

        .service-area-county > .county-label:hover {
            background: rgba(255, 255, 255, 0.1);
            color: var(--accent-color);
        }

        .service-area-county > .county-label .county-count {
            font-size: 0.75rem;
            opacity: 0.6;
        }

        .county-submenu {
            display: none;
            position: absolute;
            left: 100%;
            top: 0;
            background: var(--secondary-color);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            min-width: 250px;
            max-height: 60vh;
            overflow-y: auto;
            padding: 0.5rem 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            z-index: 1001;
        }

        .service-area-county:hover > .county-submenu {
            display: block;
        }

        .county-submenu .dropdown-item {
            font-size: 0.9rem;
            padding: 0.35rem 1.2rem;
        }

        @media (max-width: 768px) {
            .county-submenu {
                position: static;
                border: none;
                box-shadow: none;
                border-radius: 0;
                min-width: 100%;
                padding-left: 1rem;
                max-height: none;
            }
        }

        .btn-book-now {
            background: var(--button-color);
            color: #fff;
            font-weight: 700;
            padding: 0.75rem 2rem;
            border-radius: 8px;
            border: none;
            transition: all 0.3s;
            font-size: 1.1rem;
        }

        .btn-book-now:hover {
            background: var(--primary-color);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }

        /* Hero Section */
        .hero-section {
            background: #fff;
            color: var(--text-dark);
            padding: 2.5rem 0;
            text-align: center;
        }

        .hero-section h1 {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            color: var(--text-dark);
        }

        .hero-section p {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            color: var(--text-dark);
        }

        /* Content Sections */
        .content-section {
            padding: 2.5rem 0 4rem 0;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: var(--primary-color);
        }

        .section-subtitle {
            font-size: 1.25rem;
            color: #666;
            margin-bottom: 3rem;
        }

        /* Cards */
        .product-card {
            border: 2px solid #2d5f2e;
            border-radius: 12px;
            padding: 2rem;
            transition: all 0.3s;
            height: 100%;
        }

        .product-card:hover {
            border-color: var(--accent-color);
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }

        .product-card .price {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--text-dark);
            margin: 1rem 0;
        }

        .product-card .btn-select {
            background: var(--button-color);
            color: #fff;
            font-weight: 700;
            padding: 0.75rem 2rem;
            border-radius: 8px;
            border: none;
            width: 100%;
            transition: all 0.3s;
        }

        .product-card .btn-select:hover {
            background: var(--primary-color);
            color: #fff;
            transform: scale(1.05);
        }

        /* FAQ Accordion - matching product card styling */
        .accordion-item {
            border: 2px solid #2d5f2e !important;
            border-radius: 12px !important;
            overflow: hidden;
            transition: all 0.3s;
        }

        .accordion-item:hover {
            border-color: var(--accent-color) !important;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }

        .accordion-button {
            background-color: #2d5f2e;
            color: white;
            font-weight: 600;
            padding: 1.25rem 1.5rem;
        }

        .accordion-button:not(.collapsed) {
            background-color: #2d5f2e;
            color: white;
            box-shadow: none;
        }

        .accordion-button:focus {
            box-shadow: none;
            border-color: var(--accent-color);
        }

        .accordion-button::after {
            filter: brightness(0) invert(1);
        }

        .accordion-button:not(.collapsed)::after {
            filter: brightness(0) invert(1);
        }

        .accordion-body {
            padding: 1.5rem;
            background-color: #fff;
        }

        /* Footer */
        .footer {
            background: var(--secondary-color);
            color: #fff;
            padding: 3rem 0 1rem;
            margin-top: 2rem;
        }

        .footer h5 {
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .footer a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer a:hover {
            color: var(--accent-color);
        }

        /* Alerts */
        .alert-custom {
            border-radius: 8px;
            padding: 1rem 1.5rem;
            margin-bottom: 2rem;
        }

        /* Plus Tax */
        .plus-tax-text {
            font-size: 0.875rem;
            margin-top: -0.5em;
        }

        /* Product Features */
        .product-features li {
            padding-top: 0.75rem;
            padding-bottom: 0.75rem;
            border-top: 2px solid #e0e0e0;
        }

        .product-features li:first-child {
            border-top: none;
            padding-top: 0;
        }

        /* Mobile Navigation */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.5rem;
        }

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

        @media (max-width: 991.98px) {
            .top-nav {
                height: auto;
                min-height: auto;
                padding: 0.5rem 0;
            }
            .top-nav > .container {
                min-height: auto;
            }

            .top-nav .navbar-brand {
                font-size: 1.25rem;
            }

            .top-nav .navbar-brand img {
                max-height: 45px !important;
                max-width: 180px !important;
            }

            .mobile-menu-toggle {
                display: block;
                /* Take the hamburger out of flex flow and pin it to
                   the right edge of .top-nav (the positioned ancestor
                   established below). margin-left:auto and
                   space-between both failed to push it right in
                   practice, so use absolute positioning as the
                   bulletproof fallback. */
                position: absolute;
                right: 1rem;
                top: 50%;
                transform: translateY(-50%);
                margin: 0 !important;
                z-index: 2;
            }

            .nav-menu {
                display: none;
                flex-direction: column;
                position: fixed;
                top: 70px;
                left: 0;
                right: 0;
                background: var(--secondary-color);
                padding: 1rem;
                max-height: calc(100vh - 70px);
                overflow-y: auto;
                z-index: 999;
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            }

            .nav-menu.show {
                display: flex;
            }

            .top-nav .nav-link {
                margin: 0.5rem 0;
                padding: 0.75rem 1rem;
                border-radius: 8px;
                width: 100%;
                text-align: left;
            }

            .top-nav .nav-link:hover {
                background: rgba(255, 255, 255, 0.1);
            }

            .nav-item {
                margin: 0;
                padding: 0;
                width: 100%;
            }

            .nav-item .dropdown-menu {
                position: static;
                display: none;
                background: rgba(0, 0, 0, 0.2);
                border: none;
                margin: 0.5rem 0 0.5rem 1rem;
                min-width: auto;
                width: auto;
            }

            .nav-item .dropdown-menu.mobile-expanded {
                display: block;
            }

            .nav-item .nav-link {
                cursor: pointer;
            }

            .header-cta-section {
                width: 100%;
                margin: 1rem 0 0.5rem 0 !important;
            }

            .header-cta-section .btn-book-now {
                width: 100%;
                text-align: center;
            }

            .header-contact-info {
                flex-direction: row;
                flex-wrap: wrap;
                justify-content: center;
                gap: 0.75rem;
            }
        }

        /* Mobile overlay */
        .mobile-overlay {
            display: none;
            position: fixed;
            top: 70px;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 998;
        }

        .mobile-overlay.show {
            display: block;
        }

        /* Google Rating Badge */
        .google-rating-badge {
            display: inline-flex;
            flex-direction: column;
            align-items: center;
            gap: 0.25rem;
            background: #fff;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            font-size: 0.9rem;
            color: #333;
        }

        /* Optional link wrapper around the badge — keep it visually identical
           to the unlinked badge, just add a subtle affordance on hover. */
        .google-rating-badge-link {
            display: inline-block;
            text-decoration: none;
            color: inherit;
        }
        .google-rating-badge-link:hover .google-rating-badge {
            box-shadow: 0 4px 14px rgba(0,0,0,0.18);
            transform: translateY(-1px);
            transition: box-shadow .15s ease, transform .15s ease;
        }

        .google-rating-badge .badge-top {
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }

        .google-rating-badge .google-icon {
            width: 18px;
            height: 18px;
        }

        .google-rating-badge .rating-text {
            font-weight: 600;
            color: #333;
        }

        .google-rating-badge .stars {
            color: #FBBC04;
            font-size: 1.1rem;
            letter-spacing: 1px;
        }

        .google-rating-badge .review-count {
            font-size: 0.75rem;
            color: #666;
        }

        /* Header variant - smaller, fits in nav */
        .google-rating-badge.badge-header {
            padding: 0.4rem 0.75rem;
            font-size: 0.8rem;
        }

        .google-rating-badge.badge-header .stars {
            font-size: 0.95rem;
        }

        /* Hero variant - larger, more prominent */
        .google-rating-badge.badge-hero {
            padding: 0.75rem 1.5rem;
            font-size: 1rem;
        }

        .google-rating-badge.badge-hero .stars {
            font-size: 1.3rem;
        }

        .google-rating-badge.badge-hero .google-icon {
            width: 22px;
            height: 22px;
        }

        /* Footer variant - light background version */
        .google-rating-badge.badge-footer {
            background: rgba(255,255,255,0.1);
            color: #fff;
        }

        .google-rating-badge.badge-footer .rating-text,
        .google-rating-badge.badge-footer .review-count {
            color: #fff;
        }

        /* Why Choose Us variant */
        .google-rating-badge.badge-section {
            padding: 0.75rem 1.5rem;
            font-size: 1rem;
            margin-top: 1rem;
        }

        .google-rating-badge.badge-section .stars {
            font-size: 1.3rem;
        }

        @media (max-width: 991.98px) {
            .google-rating-badge.badge-header {
                margin: 0.75rem 0;
                justify-content: center;
            }
        }

        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 1.75rem;
            }
        }
    


.faq-wrap{background:#f7f7f8;border-radius:20px;padding:2rem 2rem 2.5rem;margin-top:.25rem}
.faq-section-head{display:flex;align-items:baseline;gap:.6rem;margin:2.5rem 0 1.1rem}
.faq-section-head:first-of-type{margin-top:0}
.faq-section-head h2{font-size:1.3rem;font-weight:800;margin:0;letter-spacing:-.01em}
.faq-section-head .cnt{font-size:.8rem;font-weight:700;color:#fe6b01;background:#fff2e8;border-radius:999px;padding:.15rem .6rem}
.faq-card{display:flex;flex-direction:column;background:#fff;border:1px solid #ececec;border-radius:14px;padding:1.3rem 1.4rem 1.1rem;height:100%;box-shadow:0 1px 3px rgba(0,0,0,.04);transition:box-shadow .15s ease,transform .15s ease}
.faq-card:hover{box-shadow:0 8px 22px rgba(0,0,0,.09);transform:translateY(-2px)}
.faq-card h3{font-size:1.03rem;font-weight:750;line-height:1.35;margin:0 0 .55rem;letter-spacing:-.01em}
.faq-card h3::before{content:"";display:block;width:2rem;height:3px;background:#fe6b01;border-radius:2px;margin-bottom:.6rem}
.faq-card p{color:#4a4a4a;font-size:.94rem;line-height:1.6;margin:0 0 .9rem}
.faq-card .more{margin-top:auto;padding-top:.65rem;border-top:1px solid #f1f1f1;font-size:.9rem;font-weight:700;color:#fe6b01;text-decoration:none}
.faq-card .more:hover{text-decoration:underline}
.faq-chips{justify-content:center}
@media (max-width:575px){.faq-wrap{padding:1.1rem 1rem 1.5rem;border-radius:14px}}



.faq-chips{display:flex;flex-wrap:wrap;gap:.5rem;margin:0 0 1.75rem}
.faq-chips a{border:1px solid #1a5120;border-radius:999px;padding:.28rem .85rem;font-size:.88rem;font-weight:600;color:#fff;text-decoration:none;background:#1a5120}
.faq-chips a:hover{background:#123a17;border-color:#123a17;color:#fff}
.faq-chips a.chip-truth{background:#fe6b01;border-color:#fe6b01;color:#fff}
.faq-chips a.chip-truth:hover{background:#fe6b01;border-color:#fe6b01;color:#fff}
.truth-block{background:#1a5120;color:#fff;border-radius:14px;padding:1.75rem 2rem;margin-top:2.75rem}
.truth-block h2{font-size:1.3rem;font-weight:800;color:#fff;margin-bottom:.5rem}
.truth-block p{color:#d8e4d8;margin-bottom:.9rem}
.truth-block ul{list-style:none;margin:0;padding:0;columns:2;column-gap:2rem}
.truth-block li{margin:.35rem 0;break-inside:avoid}
.truth-block a{color:#fff;font-weight:600;text-decoration:none;border-bottom:1px solid #fe6b01}
.truth-block a:hover{color:#fe6b01}
@media (max-width:640px){.truth-block ul{columns:1}}
.faq-section-title,.faq-sheet,.truth-block,.faq-qa{scroll-margin-top:90px}



:root{ --orange:#FE6B01; --green:#1A5120; --ink:#1c1c1c; --dim:#5b6560; --line:#e7e3dc; --bg:#faf8f4; --card:#fff; }
.guide-article *{box-sizing:border-box;margin:0}
.guide-article{background:var(--bg);color:var(--ink);font-family:Georgia,'Times New Roman',serif;line-height:1.7}
.guide-article .wrap{max-width:720px;margin:0 auto;padding:30px 20px 70px}
.guide-article .guide-topnav{font-family:-apple-system,system-ui,sans-serif;font-size:13px;color:var(--dim);margin-bottom:26px}
.guide-article .guide-topnav a{color:var(--orange);text-decoration:none;font-weight:700}
.guide-article .kick{font-family:-apple-system,system-ui,sans-serif;color:var(--orange);font-weight:800;letter-spacing:.09em;text-transform:uppercase;font-size:12.5px}
.guide-article h1{font-size:34px;line-height:1.18;margin:10px 0 16px;color:var(--green);font-family:Georgia,serif}
.guide-article .byline{font-family:-apple-system,system-ui,sans-serif;font-size:14px;color:var(--dim);
  border-bottom:1px solid var(--line);padding-bottom:20px;margin-bottom:26px;display:flex;align-items:center;gap:12px}
.guide-article .byline .av-img{width:40px;height:40px;border-radius:50%;flex-shrink:0}
.guide-article .byline .av{width:40px;height:40px;border-radius:50%;background:var(--green);color:#fff;display:flex;
  align-items:center;justify-content:center;font-weight:800;font-family:Georgia,serif;font-size:17px;flex-shrink:0}
.guide-article .byline b{color:var(--ink)}
.guide-article .lede{font-size:20px;line-height:1.6;color:#333;margin-bottom:24px}
.guide-article .tldr{background:#eef4ee;border-left:4px solid var(--green);border-radius:10px;padding:16px 20px;margin:24px 0;
  font-family:-apple-system,system-ui,sans-serif;font-size:15.5px;line-height:1.55}
.guide-article .tldr b{color:var(--green)}
.guide-article h2{font-size:24px;color:var(--green);margin:34px 0 6px;line-height:1.25}
.guide-article .ans{font-family:-apple-system,system-ui,sans-serif;font-weight:700;font-size:17px;color:var(--ink);margin:8px 0 6px}
.guide-article p{margin:12px 0;font-size:17.5px}
.guide-article .sizetable{width:100%;border-collapse:collapse;margin:20px 0;font-family:-apple-system,system-ui,sans-serif;font-size:15px}
.guide-article .sizetable th, .guide-article .sizetable td{border:1px solid var(--line);padding:10px 12px;text-align:left;vertical-align:top}
.guide-article .sizetable th{background:var(--green);color:#fff;font-weight:700}
.guide-article .sizetable td:first-child{font-weight:800;color:var(--green);white-space:nowrap}
.guide-article .faq{margin-top:44px;border-top:2px solid var(--line);padding-top:10px}
.guide-article .faq h2{font-size:26px}
.guide-article .faq details{border-bottom:1px solid var(--line);padding:14px 0}
.guide-article .faq summary{font-family:-apple-system,system-ui,sans-serif;font-weight:700;font-size:16.5px;color:var(--ink);cursor:pointer;list-style:none}
.guide-article .faq summary::-webkit-details-marker{display:none}
.guide-article .faq summary::before{content:"+ ";color:var(--orange);font-weight:800}
.guide-article .faq details[open] summary::before{content:"– "}
.guide-article .faq p{font-family:-apple-system,system-ui,sans-serif;font-size:15.5px;color:#333;margin:10px 0 2px}
.guide-article .cta{background:var(--green);color:#fff;border-radius:16px;padding:26px;text-align:center;margin-top:46px;font-family:-apple-system,system-ui,sans-serif}
.guide-article .cta h3{font-size:21px;margin-bottom:6px;color:#fff;font-family:Georgia,serif}
.guide-article .cta p{opacity:.9;font-size:15px;margin:6px 0 0}
.guide-article .cta a{display:inline-block;margin-top:16px;background:var(--orange);color:#fff;text-decoration:none;font-weight:800;padding:13px 30px;border-radius:12px}
.guide-article .updated{font-family:-apple-system,system-ui,sans-serif;font-size:13px;color:var(--dim);margin-top:30px;font-style:italic}
.guide-article .hub-head{text-align:center;margin-bottom:10px}
.guide-article .hub-head h1{font-size:38px}
.guide-article .hub-lede{font-family:-apple-system,system-ui,sans-serif;color:var(--dim);font-size:17px;text-align:center;max-width:600px;margin:0 auto 34px}
.guide-article .hub-grid{display:grid;gap:16px}
.guide-article .hub-card{display:block;background:var(--card);border:1px solid var(--line);border-left:4px solid var(--orange);
  border-radius:12px;padding:20px 22px;text-decoration:none;color:inherit;transition:box-shadow .15s ease}
.guide-article .hub-card:hover{box-shadow:0 4px 16px rgba(0,0,0,.07)}
.guide-article .hub-card .c-kick{font-family:-apple-system,system-ui,sans-serif;color:var(--orange);font-weight:800;font-size:11.5px;letter-spacing:.08em;text-transform:uppercase}
.guide-article .hub-card h2{font-size:21px;margin:5px 0 6px}
.guide-article .hub-card p{font-family:-apple-system,system-ui,sans-serif;font-size:15px;color:var(--dim);margin:0}
.guide-article .scrapcard{background:#fff7f0;border:2px solid var(--orange);border-radius:14px;padding:22px 24px;margin:26px 0;font-family:-apple-system,system-ui,sans-serif;text-align:center}
.guide-article .scrapcard .ic{font-size:34px;line-height:1;margin-bottom:6px}
.guide-article .scrapcard .bd b.hd{display:block;font-size:17px;color:var(--orange);margin-bottom:6px}
.guide-article .scrapcard .bd p{margin:0 auto;font-size:14.5px;line-height:1.55;color:#333;max-width:560px}
.guide-article .scrapcard a.btn{display:inline-block;margin-top:12px;margin-bottom:12px;background:var(--orange);color:#fff;text-decoration:none;font-weight:800;padding:11px 22px;border-radius:10px;font-size:15px}
.guide-article .scrapcard a.btn:hover{opacity:.92}
.guide-article .scrapcard .fine{margin-top:0;font-size:12.5px;color:#8a8a8a;font-weight:700}
.guide-article .wcalc{background:#fff;border:2px solid var(--green);border-radius:16px;padding:24px;margin:14px 0 30px;font-family:-apple-system,system-ui,sans-serif;font-size:15px}
.guide-article .wc-tabs{display:flex;gap:8px;flex-wrap:wrap;margin-bottom:20px}
.guide-article .wc-tab{border-radius:999px;padding:8px 16px;font-size:13.5px;font-weight:700;cursor:pointer;border:1.5px solid #d5d5d5;background:#fff;color:#444;transition:all .12s}
.guide-article .wc-tab:hover{border-color:var(--orange);color:var(--orange)}
.guide-article .wc-tab.on{background:var(--orange);border-color:var(--orange);color:#fff}
.guide-article .wc-panel{background:#faf8f4;border:1px solid #eee;border-radius:12px;padding:18px 18px 8px;margin-bottom:16px}
.guide-article .wc-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:14px;margin-bottom:10px}
.guide-article .wc-lab{display:block;font-size:11.5px;font-weight:700;text-transform:uppercase;letter-spacing:.06em;color:#777;margin-bottom:6px}
.guide-article .wc-panel select, .guide-article .wc-panel input{width:100%;box-sizing:border-box;height:44px;padding:0 12px;border:1px solid #ccc;border-radius:10px;font-size:15px;background:#fff}
.guide-article .wc-panel select:focus, .guide-article .wc-panel input:focus{outline:none;border-color:var(--orange)}
.guide-article .wc-hint{font-size:12.5px;color:#8a8a8a;margin:2px 0 10px}
.guide-article .wc-actions{display:flex;gap:10px;flex-wrap:wrap;align-items:center}
.guide-article .wc-go{background:var(--orange);color:#fff;border:none;font-weight:800;padding:0 26px;height:46px;border-radius:12px;font-size:15.5px;cursor:pointer}
.guide-article .wc-go:hover{opacity:.92}
.guide-article .wc-reset{background:#fff;color:#777;border:1px solid #ccc;font-weight:600;padding:0 18px;height:46px;border-radius:12px;font-size:14px;cursor:pointer}
.guide-article .wc-result{margin-top:18px;background:#eef4ee;border-left:4px solid var(--green);border-radius:12px;padding:16px 18px;line-height:1.65}
.guide-article .wc-result .big{font-size:19px;font-weight:800;color:var(--green);display:block;margin-bottom:4px}
.guide-article .wc-fine{margin:14px 0 0;font-size:12.5px;color:#8a8a8a}
.guide-article{background:#faf8f4}
.guide-article .wrap{max-width:960px;padding-left:24px;padding-right:24px}
.guide-article a{color:#fe6b01;font-weight:600;text-decoration:none}
.guide-article a:hover{text-decoration:underline}
