/* =========================================================
   Dumpster Rental Cincinnati OH - Base & Components
   Poppins font, brand colors: Navy #0B3D91 / Orange #F97316
   ========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --navy: #0B3D91;
    --navy-dark: #082E70;
    --navy-deeper: #06275A;
    --orange: #F97316;
    --orange-dark: #EA6A0C;
    --text: #333333;
    --text-muted: #666666;
    --light: #F4F7FC;
    --white: #FFFFFF;
    --radius: 10px;
    --shadow: 0 4px 14px rgba(11, 61, 145, 0.12);
    --font: 'Poppins', 'Segoe UI', Arial, sans-serif;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

a {
    color: var(--navy);
    text-decoration: none;
    transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

ul {
    list-style: none;
}

button {
    font-family: var(--font);
    cursor: pointer;
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid rgba(249, 115, 22, 0.6);
    outline-offset: 2px;
}

::selection {
    background: var(--orange);
    color: var(--white);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.component-error {
    background: #FFF3EA;
    color: #B45309;
    border: 1px solid #FDBA74;
    border-radius: 8px;
    padding: 14px 18px;
    margin: 16px 20px;
    font-size: 0.9rem;
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 50px;
    font-family: var(--font);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border: 2px solid transparent;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
    text-align: center;
}

.btn:active {
    transform: scale(0.97);
}

.btn-block {
    width: 100%;
}

.btn-orange {
    background: var(--orange);
    color: var(--white);
}

.btn-orange:hover {
    background: var(--orange-dark);
    color: var(--white);
}

.btn-outline {
    border-color: var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--navy);
}

.btn-outline-white {
    border-color: rgba(255, 255, 255, 0.55);
    color: var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--navy);
}

/* =========================================================
   Header
   ========================================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow);
    transition: box-shadow 0.25s ease;
}

.site-header.scrolled {
    box-shadow: 0 6px 22px rgba(11, 61, 145, 0.18);
}

.header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
    padding-top: 14px;
    padding-bottom: 14px;
}

.brand-logo {
    display: block;
    line-height: 0;
    justify-self: start;
    flex: none;
}

.brand-logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-self: end;
}

.header-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--orange);
    color: var(--white);
    padding: 9px 20px;
    border-radius: 50px;
    font-weight: 600;
    flex: none;
}

.header-call-btn:hover {
    background: var(--orange-dark);
    color: var(--white);
    transform: translateY(-1px);
}

.header-call-btn svg {
    width: 20px;
    height: 20px;
    flex: none;
}

.header-call-btn span {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

/* Mobile-only controls (hidden on desktop) */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 11px;
    background: var(--navy);
    border: 0;
    border-radius: 8px;
    flex: none;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    border-radius: 3px;
    background: var(--white);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle:hover {
    background: var(--navy-dark);
}

.header-call-icon {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: var(--orange);
    color: var(--white);
    flex: none;
}

.header-call-icon:hover {
    background: var(--orange-dark);
    color: var(--white);
}

.header-call-icon svg {
    width: 20px;
    height: 20px;
}

/* Desktop nav - centered */
.site-nav {
    justify-self: stretch;
    background: transparent;
    min-width: 0;
    max-width: 100%;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: auto;
    padding-bottom: 340px;
    margin-bottom: -340px;
    scrollbar-width: none;
}

.nav-inner::-webkit-scrollbar {
    display: none;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 0;
    margin: 0 auto;
    overflow: visible;
    scrollbar-width: none;
}

.nav-list::-webkit-scrollbar {
    display: none;
}

.nav-list > li {
    position: relative;
    flex: none;
}

.nav-list > li > a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 14px 12px;
    color: var(--navy);
    font-size: 0.87rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
}

.nav-list > li > a:hover,
.nav-list > li > a.active {
    color: var(--orange);
}

.nav-list > li > a.active {
    border-bottom-color: var(--orange);
}

.caret {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    margin-left: 2px;
    transition: transform 0.25s ease;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 265px;
    background: var(--white);
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: 0 12px 28px rgba(11, 61, 145, 0.22);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    z-index: 50;
    padding: 8px 0;
}

.nav-list > li:hover > .dropdown,
.nav-list > li:focus-within > .dropdown,
.nav-list > li.active > .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    display: block;
    padding: 11px 18px;
    color: var(--text);
    font-size: 0.86rem;
    border-left: 3px solid transparent;
}

.dropdown li a:hover {
    color: var(--navy);
    background: var(--light);
    border-left-color: var(--orange);
}

.nav-mobile-cta {
    display: none;
}

.nav-close {
    display: none;
}

.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(6, 39, 90, 0.55);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s;
}

body.menu-open {
    overflow: hidden;
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
    background: var(--navy);
    color: #DCE6FB;
    border-top: 4px solid var(--orange);
    margin-top: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
    gap: 40px;
    padding: 56px 20px 44px;
}

.footer-brand .footer-logo {
    display: inline-block;
    background: var(--white);
    padding: 10px 16px;
    border-radius: 10px;
    line-height: 0;
    margin-bottom: 18px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

.footer-brand .footer-logo img {
    height: 46px;
    width: auto;
    object-fit: contain;
}

.footer-brand p {
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 18px;
    max-width: 320px;
}

.footer-phone {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--orange);
    font-weight: 600;
    font-size: 1.02rem;
}

.footer-phone:hover {
    color: var(--white);
}

.footer-phone svg {
    width: 18px;
    height: 18px;
}

.footer-col h3 {
    color: var(--white);
    font-size: 1.02rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    position: relative;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 36px;
    height: 3px;
    border-radius: 3px;
    background: var(--orange);
}

.footer-links li,
.footer-contact li {
    margin-bottom: 11px;
}

.footer-links a {
    display: inline-block;
    color: #C9D8F5;
    font-size: 0.88rem;
    position: relative;
    padding-left: 14px;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--orange);
    transform: translateY(-50%);
}

.footer-links a:hover {
    color: var(--orange);
    padding-left: 18px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    line-height: 1.55;
}

.footer-contact svg {
    width: 18px;
    height: 18px;
    flex: none;
    margin-top: 3px;
    color: var(--orange);
}

.footer-contact a {
    color: #C9D8F5;
}

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

.footer-note {
    margin-top: 18px;
    font-size: 0.82rem;
    color: #AFC3EA;
    background: rgba(255, 255, 255, 0.07);
    border-left: 3px solid var(--orange);
    padding: 10px 14px;
    border-radius: 0 8px 8px 0;
}

.footer-bottom {
    background: var(--navy-deeper);
    padding: 18px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px 24px;
    font-size: 0.82rem;
    color: #9FB4DD;
}

.footer-bottom-inner a {
    color: var(--orange);
}

.footer-bottom-inner a:hover {
    color: var(--white);
}

/* =========================================================
   Page content (demo / shared sections)
   ========================================================= */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 55%, #0A2E6B 100%);
    color: var(--white);
    padding: 96px 0 118px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    right: -120px;
    top: -120px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.28), transparent 65%);
}

.hero::after {
    content: '';
    position: absolute;
    left: -140px;
    bottom: -180px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.16), transparent 60%);
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 780px;
}

.hero-eyebrow {
    display: inline-block;
    background: rgba(249, 115, 22, 0.18);
    border: 1px solid rgba(249, 115, 22, 0.5);
    color: var(--orange);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 22px;
}

.hero h1 {
    font-size: clamp(1.9rem, 4.6vw, 3.4rem);
    line-height: 1.14;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero h1 span {
    color: var(--orange);
}

.hero p {
    font-size: clamp(0.98rem, 1.6vw, 1.14rem);
    color: #D9E5FB;
    max-width: 640px;
    margin-bottom: 32px;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.section {
    padding: 76px 0;
}

.section-light {
    background: var(--light);
}

.section-head {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 46px;
}

.section-head .eyebrow {
    color: var(--orange);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    font-size: 0.78rem;
    margin-bottom: 10px;
}

.section-head h2 {
    font-size: clamp(1.5rem, 3.4vw, 2.3rem);
    color: var(--navy);
    line-height: 1.2;
    font-weight: 700;
}

.section-head p {
    color: var(--text-muted);
    margin-top: 14px;
    font-size: 0.98rem;
}

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

.service-card {
    background: var(--white);
    border: 1px solid #E5ECF8;
    border-radius: var(--radius);
    padding: 28px 26px;
    box-shadow: 0 2px 10px rgba(11, 61, 145, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: var(--orange);
}

.service-icon {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    background: rgba(249, 115, 22, 0.12);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.service-icon svg {
    width: 26px;
    height: 26px;
}

.service-card h3 {
    color: var(--navy);
    font-size: 1.04rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.65;
    margin-bottom: 16px;
}

.service-card .card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--orange);
    font-weight: 600;
    font-size: 0.88rem;
}

.service-card .card-link svg {
    width: 15px;
    height: 15px;
    transition: transform 0.25s ease;
}

.service-card:hover .card-link svg {
    transform: translateX(4px);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-item {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(11, 61, 145, 0.06);
    border: 1px solid #E5ECF8;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.feature-item .service-icon {
    margin: 0 auto 16px;
}

.feature-item h3 {
    color: var(--navy);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-item p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
}

.cta-banner {
    background: var(--orange);
    color: var(--white);
    padding: 58px 0;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.cta-banner h2 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 6px;
}

.cta-banner p {
    font-size: 0.98rem;
    opacity: 0.95;
}

.cta-banner .btn-orange {
    background: var(--white);
    color: var(--orange);
}

.cta-banner .btn-orange:hover {
    background: var(--navy);
    color: var(--white);
}

.cta-banner .btn-outline:hover {
    background: var(--white);
    color: var(--orange);
}

.cta-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

/* =========================================================
   Responsive - tablet & small laptop
   ========================================================= */
@media (max-width: 1199px) {
    .header-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .brand-logo img {
        height: 48px;
    }

    .header-actions {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .header-call-icon {
        display: inline-flex;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .header-call-btn {
        display: none;
    }

    .site-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: min(84%, 340px);
        height: 100vh;
        height: 100dvh;
        background: var(--navy);
        box-shadow: 6px 0 28px rgba(6, 39, 90, 0.35);
        transform: translateX(-105%);
        transition: transform 0.32s ease;
        z-index: 1060;
        overflow-y: auto;
        overflow-x: hidden;
    }

    body.menu-open .site-nav {
        transform: translateX(0);
    }

    .nav-close {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        margin: 16px 16px 6px auto;
        background: rgba(255, 255, 255, 0.12);
        border: 0;
        border-radius: 8px;
        color: var(--white);
        font-size: 1.5rem;
        line-height: 1;
        transition: background 0.25s ease;
    }

    .nav-close:hover {
        background: var(--orange);
    }

    .nav-inner {
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        padding: 0 0 36px;
        min-height: 0;
        overflow: visible;
        margin-bottom: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 0;
        overflow-x: visible;
    }

    .nav-list > li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-list > li > a {
        padding: 15px 24px;
        font-size: 0.98rem;
        color: var(--white);
        border-bottom: none;
    }

    .nav-list > li > a:hover,
    .nav-list > li > a.active {
        background: rgba(249, 115, 22, 0.14);
        border-bottom: none;
    }

    .nav-list > li.has-dropdown.open > a {
        background: rgba(249, 115, 22, 0.14);
        color: var(--orange);
    }

    .nav-list > li.has-dropdown.open .caret {
        transform: rotate(225deg) translateY(1px);
    }

    .dropdown {
        position: static;
        min-width: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.22);
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        transition: none;
    }

    .nav-list > li.open .dropdown {
        display: block;
    }

    .nav-list > li:hover > .dropdown {
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .dropdown li a {
        padding: 13px 24px 13px 42px;
        color: #D5E0F7;
        border-left: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        font-size: 0.9rem;
    }

    .dropdown li a:hover {
        color: var(--white);
        background: rgba(255, 255, 255, 0.08);
        border-left: none;
    }

    .nav-mobile-cta {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin: 28px 24px 0;
    }

    body.menu-open .nav-overlay {
        opacity: 1;
        visibility: visible;
    }

    body.menu-open .nav-toggle span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    body.menu-open .nav-toggle span:nth-child(2) {
        opacity: 0;
    }

    body.menu-open .nav-toggle span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

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

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px;
        padding: 50px 20px 40px;
    }
}

/* =========================================================
   Responsive - mobile
   ========================================================= */
@media (max-width: 600px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 64px 0 80px;
    }

    .section {
        padding: 58px 0;
    }

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

    .cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-btns {
        width: 100%;
    }

    .cta-btns .btn {
        flex: 1;
        min-width: 160px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 34px;
        padding: 46px 16px 36px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .brand-logo img {
        height: 44px;
    }

    .header-inner {
        gap: 10px;
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .nav-toggle,
    .header-call-icon {
        width: 40px;
        height: 40px;
    }

    .nav-toggle {
        gap: 4px;
        padding: 10px;
    }

    .hero-eyebrow {
        font-size: 0.7rem;
        padding: 6px 14px;
    }

    .hero-btns .btn {
        width: 100%;
    }

    .footer-brand .footer-logo img {
        height: 40px;
    }

    .footer-bottom-inner {
        font-size: 0.78rem;
    }
}

/* =========================================================
   Home page - hero split layout
   ========================================================= */
.hero-split {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: center;
}

.hero-media {
    position: relative;
    z-index: 1;
}

.hero-media img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.32);
    aspect-ratio: 1050 / 634;
    object-fit: cover;
}

.hero-badge {
    position: absolute;
    bottom: 18px;
    left: -14px;
    background: var(--orange);
    color: var(--white);
    padding: 12px 18px;
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(249, 115, 22, 0.45);
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-badge svg {
    width: 26px;
    height: 26px;
    flex: none;
}

.hero-badge strong {
    display: block;
    font-size: 0.88rem;
    line-height: 1.3;
}

.hero-badge small {
    display: block;
    font-size: 0.72rem;
    font-weight: 400;
    opacity: 0.92;
}

.hero-bullets {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    margin-bottom: 28px;
}

.hero-bullets li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 500;
    color: #D9E5FB;
}

.hero-bullets svg {
    width: 17px;
    height: 17px;
    color: var(--orange);
    flex: none;
}

/* Trust bar */
.trust-bar {
    background: var(--white);
    border-bottom: 1px solid #E5ECF8;
}

.trust-bar-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 10px;
    text-align: left;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--navy);
    border-right: 1px solid #E5ECF8;
}

.trust-item:last-child {
    border-right: 0;
}

.trust-item svg {
    width: 22px;
    height: 22px;
    color: var(--orange);
    flex: none;
}

/* Dumpster sizes */
.sizes-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.size-card {
    background: var(--white);
    border: 1px solid #E5ECF8;
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.size-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: var(--orange);
}

.size-card .size-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.size-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--orange);
    color: var(--white);
    font-size: 0.68rem;
    font-weight: 600;
    padding: 5px 11px;
    border-radius: 20px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(249, 115, 22, 0.4);
}

.size-info {
    padding: 18px 16px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.size-info h3 {
    color: var(--navy);
    font-size: 1.02rem;
    font-weight: 600;
}

.size-dim {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin: 3px 0 8px;
}

.size-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 14px;
    flex: 1;
}

.size-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.btn-sm {
    padding: 10px 14px;
    font-size: 0.85rem;
}

.btn-outline-navy {
    border-color: var(--navy);
    color: var(--navy);
}

.btn-outline-navy:hover {
    background: var(--navy);
    color: var(--white);
}

/* How it works */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.step-item {
    text-align: center;
    padding: 36px 26px;
    background: var(--white);
    border: 1px solid #E5ECF8;
    border-radius: var(--radius);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 auto 16px;
    box-shadow: 0 6px 14px rgba(11, 61, 145, 0.3);
}

.step-item h3 {
    color: var(--navy);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.step-item p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.65;
}

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

.area-card {
    background: var(--white);
    border: 1px solid #E5ECF8;
    border-radius: var(--radius);
    padding: 22px 16px;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--orange);
}

.area-card svg {
    width: 26px;
    height: 26px;
    color: var(--orange);
    margin: 0 auto 10px;
}

.area-card h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy);
}

.area-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid #E5ECF8;
    border-radius: var(--radius);
    padding: 28px;
    display: flex;
    flex-direction: column;
}

.stars {
    display: flex;
    gap: 3px;
    color: var(--orange);
    margin-bottom: 14px;
}

.stars svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.testimonial-card blockquote {
    color: var(--text);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 18px;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.95rem;
    flex: none;
}

.author-name {
    font-weight: 600;
    color: var(--navy);
    font-size: 0.9rem;
}

.author-loc {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* FAQ */
.faq-list {
    max-width: 820px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid #E5ECF8;
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    padding: 18px 20px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--navy);
    list-style: none;
    transition: color 0.2s ease;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '';
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--orange);
    border-bottom: 2px solid var(--orange);
    transform: rotate(45deg) translateY(-3px);
    transition: transform 0.25s ease;
    flex: none;
}

.faq-item[open] summary::after {
    transform: rotate(225deg) translateY(1px);
}

.faq-item summary:hover {
    color: var(--orange);
}

.faq-body {
    padding: 0 20px 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

.faq-body a {
    color: var(--orange);
    font-weight: 500;
}

.faq-body a:hover {
    color: var(--navy);
}

/* Quote form */
.quote-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 60%, #0A2E6B 100%);
    color: var(--white);
    padding: 76px 0;
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '';
    position: absolute;
    right: -140px;
    bottom: -180px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.2), transparent 60%);
}

.quote-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.quote-info h2 {
    font-size: clamp(1.5rem, 3.4vw, 2.3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.quote-info h2 span {
    color: var(--orange);
}

.quote-info > p {
    color: #D9E5FB;
    font-size: 0.98rem;
    margin-bottom: 26px;
    max-width: 460px;
}

.quote-contact {
    list-style: none;
}

.quote-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.quote-contact svg {
    width: 20px;
    height: 20px;
    color: var(--orange);
    flex: none;
    margin-top: 2px;
}

.quote-contact a {
    color: var(--white);
    font-weight: 500;
}

.quote-contact a:hover {
    color: var(--orange);
}

.quote-form {
    background: var(--white);
    border-radius: 14px;
    padding: 32px;
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.28);
}

.quote-form h3 {
    color: var(--navy);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.quote-form > p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-group {
    margin-bottom: 14px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
}

.form-control {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid #D6E0F4;
    border-radius: 8px;
    font-family: var(--font);
    font-size: 0.9rem;
    color: var(--text);
    background: var(--white);
    transition: border-color 0.2s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--orange);
}

.form-control::placeholder {
    color: #9AA7C4;
}

textarea.form-control {
    resize: vertical;
    min-height: 90px;
}

.form-success {
    display: none;
    background: #E8F7EE;
    color: #166534;
    border: 1px solid #86D9A8;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.88rem;
    margin-bottom: 16px;
}

.form-success.show {
    display: block;
}

.form-note {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 12px;
}

.form-note a {
    color: var(--orange);
    font-weight: 600;
}

/* Mobile sticky call bar */
.mobile-call-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 990;
    display: none;
    background: var(--navy);
    border-top: 3px solid var(--orange);
    box-shadow: 0 -6px 18px rgba(6, 39, 90, 0.28);
}

.mobile-call-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 14px 10px;
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
}

.mobile-call-bar svg {
    width: 21px;
    height: 21px;
    color: var(--orange);
    flex: none;
}

.mobile-call-bar .bar-call {
    flex: 1.3;
}

.mobile-call-bar .bar-quote {
    flex: 1;
    background: var(--orange);
}

.mobile-call-bar .bar-quote:hover {
    background: var(--orange-dark);
}

/* Home page responsive */
@media (max-width: 1199px) {
    .sizes-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .areas-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .hero-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-media {
        max-width: 560px;
    }

    .hero-badge {
        left: 0;
    }

    .trust-bar-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-item {
        border-right: 1px solid #E5ECF8;
        border-bottom: 1px solid #E5ECF8;
    }

    .trust-item:nth-child(2n) {
        border-right: 0;
    }

    .trust-item:nth-child(3),
    .trust-item:nth-child(4) {
        border-bottom: 0;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .step-item {
        padding: 28px 24px;
        text-align: left;
        display: flex;
        align-items: center;
        gap: 18px;
    }

    .step-num {
        margin: 0;
        flex: none;
    }

    .step-item h3 {
        margin-bottom: 4px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 560px;
        margin: 0 auto;
    }

    .quote-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

@media (max-width: 700px) {
    .sizes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

@media (max-width: 767px) {
    .mobile-call-bar {
        display: flex;
    }

    .has-mobile-bar {
        padding-bottom: 56px;
    }
}

@media (max-width: 480px) {
    .sizes-grid,
    .areas-grid {
        grid-template-columns: 1fr;
    }

    .trust-item {
        padding: 14px 8px;
        font-size: 0.78rem;
    }

    .trust-item svg {
        width: 19px;
        height: 19px;
    }

    .hero-badge {
        bottom: 12px;
        padding: 10px 14px;
    }

    .hero-badge svg {
        width: 22px;
        height: 22px;
    }

    .quote-form {
        padding: 24px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .faq-item summary {
        padding: 16px;
        font-size: 0.9rem;
    }

    .faq-body {
        padding: 0 16px 16px;
    }

    .mobile-call-bar a {
        padding: 12px 8px;
        font-size: 0.88rem;
    }

    .mobile-call-bar .bar-call span {
        display: none;
    }
}

/* =========================================================
   Inner pages - hero, breadcrumb, content, legal, contact
   ========================================================= */
.page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deeper) 100%);
    color: var(--white);
    padding: 64px 0 60px;
    position: relative;
    overflow: hidden;
}

.page-hero::after {
    content: '';
    position: absolute;
    right: -120px;
    top: -140px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.22), transparent 62%);
    pointer-events: none;
}

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

.page-hero-eyebrow {
    color: var(--orange);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    font-size: 0.78rem;
    margin-bottom: 12px;
}

.page-hero h1 {
    font-size: clamp(1.7rem, 4vw, 2.6rem);
    font-weight: 700;
    line-height: 1.2;
    max-width: 720px;
}

.page-hero p {
    color: #D9E5FB;
    font-size: 0.98rem;
    margin-top: 14px;
    max-width: 640px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    font-size: 0.8rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.75);
}

.breadcrumb a:hover {
    color: var(--orange);
}

.breadcrumb .bc-sep {
    color: rgba(255, 255, 255, 0.45);
}

.breadcrumb .bc-current {
    color: var(--orange);
    font-weight: 500;
}

.content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: center;
}

.content-split.reverse .content-text {
    order: 2;
}

.content-split.reverse .content-media {
    order: 1;
}

.content-text h2 {
    color: var(--navy);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 16px;
}

.content-text h3 {
    color: var(--navy);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.content-text p {
    color: var(--text-muted);
    font-size: 0.94rem;
    line-height: 1.75;
    margin-bottom: 14px;
}

.content-text .content-lead {
    color: var(--text);
    font-size: 1rem;
    font-weight: 500;
}

.content-media img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 18px 45px rgba(11, 61, 145, 0.18);
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.check-list {
    margin-top: 18px;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    font-size: 0.92rem;
    color: var(--text);
}

.check-list svg {
    width: 22px;
    height: 22px;
    color: var(--orange);
    flex: none;
    margin-top: 1px;
}

.stats-bar {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    color: var(--white);
    padding: 44px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.stat-num {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: var(--orange);
    line-height: 1.1;
}

.stat-label {
    font-size: 0.85rem;
    color: #D9E5FB;
    margin-top: 6px;
}

.legal-wrap {
    max-width: 820px;
    margin: 0 auto;
}

.legal-updated {
    display: inline-block;
    background: rgba(249, 115, 22, 0.12);
    color: var(--orange);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 22px;
}

.legal-block {
    margin-bottom: 30px;
}

.legal-block h2 {
    color: var(--navy);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.legal-block p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.75;
    margin-bottom: 10px;
}

.legal-block ul {
    list-style: disc;
    padding-left: 22px;
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.75;
    margin-bottom: 10px;
}

.legal-block ul li {
    margin-bottom: 6px;
}

.legal-block a {
    color: var(--orange);
    font-weight: 500;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.contact-card {
    background: var(--white);
    border: 1px solid #E5ECF8;
    border-radius: var(--radius);
    padding: 26px 22px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(11, 61, 145, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.contact-card .service-icon {
    margin: 0 auto 14px;
}

.contact-card h3 {
    color: var(--navy);
    font-size: 0.98rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.contact-card p {
    color: var(--text-muted);
    font-size: 0.84rem;
    line-height: 1.6;
}

.contact-card a {
    color: var(--orange);
    font-weight: 600;
}

.contact-map {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(11, 61, 145, 0.15);
    line-height: 0;
}

.contact-map iframe {
    width: 100%;
    height: 380px;
    border: 0;
}

.page-hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 26px;
}

.page-hero .btn-orange:hover {
    background: var(--white);
    color: var(--orange);
}

.page-hero .btn-outline {
    border-color: rgba(255, 255, 255, 0.55);
}

.page-hero .btn-outline:hover {
    background: var(--white);
    color: var(--navy);
}

@media (max-width: 991px) {
    .content-split {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .content-split.reverse .content-text,
    .content-split.reverse .content-media {
        order: 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .contact-cards {
        grid-template-columns: 1fr;
        max-width: 460px;
        margin: 0 auto;
    }

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

@media (max-width: 600px) {
    .page-hero {
        padding: 48px 0 44px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-map iframe {
        height: 300px;
    }
}

/* =========================================================
   Blog page
   ========================================================= */
.blog-featured {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    background: var(--white);
    border: 1px solid #E5ECF8;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(11, 61, 145, 0.06);
    margin-bottom: 32px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.blog-featured:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--orange);
}

.blog-featured-img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

.blog-featured-body {
    padding: 34px 34px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-featured-body h2 {
    color: var(--navy);
    font-size: clamp(1.2rem, 2.6vw, 1.6rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
}

.blog-tag {
    display: inline-block;
    align-self: flex-start;
    background: rgba(249, 115, 22, 0.12);
    color: var(--orange);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.blog-excerpt {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.78rem;
    margin-bottom: 18px;
}

.blog-meta-sep {
    color: var(--orange);
}

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

.blog-card {
    background: var(--white);
    border: 1px solid #E5ECF8;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: var(--orange);
}

.blog-card-img {
    display: block;
    line-height: 0;
    overflow: hidden;
}

.blog-card-img img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.05);
}

.blog-card-body {
    padding: 22px 22px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card h3 {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.45;
    margin-bottom: 10px;
}

.blog-card h3 a {
    color: var(--navy);
}

.blog-card h3 a:hover {
    color: var(--orange);
}

.blog-card .blog-excerpt {
    flex: 1;
    margin-bottom: 14px;
}

.blog-card .blog-meta {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .blog-featured {
        grid-template-columns: 1fr;
    }

    .blog-featured-img {
        min-height: 0;
        aspect-ratio: 4 / 3;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-featured-body {
        padding: 24px 22px;
    }
}

/* =========================================================
   Dumpster size detail pages
   ========================================================= */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.spec-card {
    background: var(--white);
    border: 1px solid #E5ECF8;
    border-radius: var(--radius);
    padding: 22px 16px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(11, 61, 145, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.spec-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.spec-num {
    display: block;
    color: var(--navy);
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.35;
    margin-bottom: 4px;
}

.spec-label {
    display: block;
    color: var(--text-muted);
    font-size: 0.78rem;
    line-height: 1.45;
}

.spec-table {
    background: var(--white);
    border: 1px solid #E5ECF8;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(11, 61, 145, 0.06);
    max-width: 820px;
    margin: 0 auto;
}

.spec-table .spec-row {
    display: grid;
    grid-template-columns: 230px 1fr;
    border-bottom: 1px solid #E5ECF8;
}

.spec-table .spec-row:last-child {
    border-bottom: 0;
}

.spec-row dt {
    padding: 15px 20px;
    background: var(--light);
    font-weight: 600;
    color: var(--navy);
    font-size: 0.88rem;
}

.spec-row dd {
    padding: 15px 20px;
    margin: 0;
    color: var(--text);
    font-size: 0.88rem;
    line-height: 1.6;
}

.spec-row dd a {
    color: var(--orange);
    font-weight: 600;
}

.pricing-note {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(249, 115, 22, 0.1);
    border: 1px dashed var(--orange);
    border-radius: var(--radius);
    padding: 18px 22px;
    margin-top: 22px;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-note svg {
    width: 26px;
    height: 26px;
    color: var(--orange);
    flex: none;
}

.pricing-note p {
    font-size: 0.9rem;
    color: var(--text);
    flex: 1;
}

.pricing-note a {
    color: var(--orange);
    font-weight: 700;
    white-space: nowrap;
}

.related-sizes {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.related-size {
    background: var(--white);
    border: 1px solid #E5ECF8;
    border-radius: var(--radius);
    padding: 20px 12px;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.related-size:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--orange);
}

.related-size .rs-num {
    display: block;
    color: var(--navy);
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.2;
}

.related-size .rs-name {
    display: block;
    color: var(--text-muted);
    font-size: 0.75rem;
    margin-top: 3px;
}

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

    .related-sizes {
        grid-template-columns: repeat(3, 1fr);
    }

    .spec-table .spec-row {
        grid-template-columns: 1fr;
    }

    .spec-row dt {
        padding-bottom: 8px;
    }

    .pricing-note {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .related-sizes {
        grid-template-columns: repeat(2, 1fr);
    }
}
