:root {
    --primary-green: #153f2e;
    --primary-green-2: #216247;
    --charcoal: #18212b;
    --charcoal-2: #263241;
    --text: #344154;
    --muted: #66758a;
    --line: #dfe7e2;
    --soft: #f4f7f3;
    --white: #ffffff;
    --accent: #e9a326;
    --accent-dark: #c77f12;
    --shadow: 0 18px 45px rgba(24, 33, 43, 0.12);
    --shadow-soft: 0 10px 28px rgba(24, 33, 43, 0.08);
    --radius: 8px;
    --font-main: "Manrope", Arial, sans-serif;
    --transition: 220ms ease;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 130px;
}

body {
    background: var(--white);
    color: var(--text);
    font-family: var(--font-main);
    line-height: 1.65;
    overflow-x: hidden;
    width: 100%;
}

body.nav-open {
    overflow: hidden;
}

h1,
h2,
h3,
h4 {
    color: var(--charcoal);
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 16px;
}

h1 {
    font-size: clamp(2.45rem, 6vw, 5.4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
}

h3 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 16px;
}

a {
    color: var(--primary-green);
    text-decoration: none;
    transition: color var(--transition), background-color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

ul {
    list-style: none;
}

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

.container {
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 22px;
}

.section-padding {
    padding: 96px 0;
    position: relative;
}

.bg-soft {
    background:
        linear-gradient(135deg, rgba(21, 63, 46, 0.035), transparent 28%),
        var(--soft);
}

.bg-dark {
    background:
        radial-gradient(circle at 12% 20%, rgba(233, 163, 38, 0.16), transparent 28%),
        linear-gradient(135deg, var(--charcoal), #111a22);
    color: #dbe5df;
}

.section-texture {
    background-image: linear-gradient(90deg, rgba(21, 63, 46, 0.04) 1px, transparent 1px), linear-gradient(rgba(21, 63, 46, 0.035) 1px, transparent 1px);
    background-size: 32px 32px;
    inset: 0;
    opacity: 0.55;
    pointer-events: none;
    position: absolute;
}

.angled-section::before,
.angled-section::after {
    background: inherit;
    content: "";
    height: 48px;
    left: 0;
    position: absolute;
    width: 100%;
    z-index: 0;
}

.angled-section::before {
    top: -24px;
    transform: skewY(-1.5deg);
}

.angled-section::after {
    bottom: -24px;
    transform: skewY(1.5deg);
}

.angled-section > .container,
.bg-soft > .container,
.bg-dark > .container {
    position: relative;
    z-index: 1;
}

.subtitle,
.hero-kicker,
.service-pill {
    color: var(--accent-dark);
    display: inline-flex;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.service-pill {
    background: rgba(233, 163, 38, 0.16);
    border: 1px solid rgba(233, 163, 38, 0.32);
    border-radius: 999px;
    color: var(--primary-green);
    padding: 7px 12px;
}

.section-heading {
    margin: 0 auto 48px;
    max-width: 760px;
    text-align: center;
}

.section-heading p {
    color: var(--muted);
    font-size: 1.05rem;
    margin: 0 auto;
    max-width: 660px;
}

.section-heading.light {
    margin: 0;
    text-align: left;
}

.section-heading.light h2,
.section-heading.light p {
    color: var(--white);
}

.btn {
    align-items: center;
    border: 2px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    display: inline-flex;
    font-size: 0.98rem;
    font-weight: 800;
    justify-content: center;
    min-height: 48px;
    padding: 12px 22px;
    text-align: center;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--primary-green);
    color: var(--white);
    box-shadow: 0 12px 24px rgba(21, 63, 46, 0.2);
}

.btn-primary:hover {
    background: var(--primary-green-2);
    color: var(--white);
    box-shadow: 0 16px 30px rgba(21, 63, 46, 0.28);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.74);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--primary-green);
}

.btn-outline {
    background: transparent;
    border-color: var(--primary-green);
    color: var(--primary-green);
}

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

.btn-accent {
    background: var(--accent);
    color: #1e211a;
    box-shadow: 0 12px 24px rgba(199, 127, 18, 0.24);
}

.btn-accent:hover {
    background: #f0b541;
    color: #1e211a;
}

.btn-light {
    background: var(--white);
    color: var(--primary-green);
}

.btn-light:hover {
    background: #eef4ef;
    color: var(--primary-green);
}

.btn-nav {
    background: var(--accent);
    color: #1e211a;
    min-height: 42px;
    padding: 9px 18px;
}

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

.announcement-bar {
    background: var(--charcoal);
    color: #eef4ef;
    font-size: 0.88rem;
    font-weight: 700;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1200;
}

.announcement-inner {
    align-items: center;
    display: flex;
    gap: 18px;
    justify-content: center;
    min-height: 36px;
}

.announcement-inner span:not(:last-child)::after {
    color: rgba(255, 255, 255, 0.35);
    content: "|";
    margin-left: 18px;
}

.announcement-inner a {
    color: var(--accent);
}

.site-header {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 8px 24px rgba(24, 33, 43, 0.08);
    left: 0;
    position: fixed;
    top: 36px;
    transition: box-shadow var(--transition), background-color var(--transition);
    width: 100%;
    z-index: 1100;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 12px 30px rgba(24, 33, 43, 0.12);
}

.nav-container {
    align-items: center;
    display: flex;
    gap: 24px;
    height: 78px;
    justify-content: space-between;
    transition: height var(--transition);
}

.site-header.scrolled .nav-container {
    height: 64px;
}

.logo {
    align-items: center;
    color: var(--primary-green);
    display: inline-flex;
    font-size: 1.18rem;
    font-weight: 800;
    white-space: nowrap;
}

.logo img,
.footer-logo img {
    display: block;
    height: auto;
    width: min(235px, 56vw);
}

.footer-logo {
    display: inline-block;
    margin-bottom: 18px;
}

.nav-list {
    align-items: center;
    display: flex;
    gap: 28px;
}

.nav-list a {
    color: var(--charcoal-2);
    font-size: 0.96rem;
    font-weight: 800;
    position: relative;
}

.nav-list a::after {
    background: var(--accent);
    bottom: -9px;
    content: "";
    height: 3px;
    left: 0;
    position: absolute;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
    width: 100%;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--primary-green);
}

.nav-list a:hover::after,
.nav-list a.active::after {
    transform: scaleX(1);
}

.hamburger {
    background: transparent;
    border: 0;
    cursor: pointer;
    display: none;
    height: 24px;
    position: relative;
    width: 32px;
    z-index: 1201;
}

.hamburger span {
    background: var(--charcoal);
    border-radius: 3px;
    height: 3px;
    left: 0;
    position: absolute;
    transition: transform var(--transition), opacity var(--transition), top var(--transition);
    width: 100%;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 10px;
}

.hamburger span:nth-child(3) {
    top: 20px;
}

.hamburger.active span:nth-child(1) {
    top: 10px;
    transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    top: 10px;
    transform: rotate(-45deg);
}

.hero {
    align-items: center;
    display: flex;
    min-height: 760px;
    overflow: hidden;
    padding-top: 116px;
    position: relative;
}

.hero-bg {
    animation: heroZoom 18s ease-out forwards;
    height: 100%;
    inset: 0;
    object-fit: cover;
    object-position: center;
    position: absolute;
    width: 100%;
    z-index: -2;
}

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(9, 20, 16, 0.9) 0%, rgba(21, 63, 46, 0.76) 42%, rgba(21, 63, 46, 0.18) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.12));
    inset: 0;
    position: absolute;
    z-index: -1;
}

.hero-content {
    color: var(--white);
    max-width: 760px;
    padding: 70px 0;
    width: 100%;
}

.hero-content h1 {
    color: var(--white);
    margin-bottom: 22px;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1.08rem, 2vw, 1.28rem);
    max-width: 680px;
}

.hero-kicker {
    color: var(--accent);
    max-width: 100%;
    white-space: normal;
}

.hero-buttons,
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.hero-proof span {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.9rem;
    font-weight: 800;
    padding: 8px 12px;
}

.trust-strip {
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 35px rgba(24, 33, 43, 0.06);
    position: relative;
    z-index: 2;
}

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

.trust-item {
    align-items: center;
    display: flex;
    gap: 12px;
    justify-content: center;
    min-height: 92px;
    padding: 20px 12px;
}

.trust-icon,
.feature-icon,
.service-icon,
.info-icon {
    align-items: center;
    background: rgba(21, 63, 46, 0.09);
    border: 1px solid rgba(21, 63, 46, 0.14);
    border-radius: 8px;
    color: var(--primary-green);
    display: inline-flex;
    flex: 0 0 auto;
    font-size: 0.9rem;
    font-weight: 900;
    height: 42px;
    justify-content: center;
    width: 42px;
}

.intro-grid,
.contact-grid,
.process-grid {
    align-items: center;
    display: grid;
    gap: 64px;
    grid-template-columns: 1fr 1fr;
}

.intro-grid.row-reverse {
    direction: rtl;
}

.intro-grid.row-reverse > * {
    direction: ltr;
}

.intro-text p {
    color: var(--muted);
}

.check-list,
.service-benefits {
    display: grid;
    gap: 12px;
    margin: 24px 0 30px;
}

.check-list li,
.service-benefits li {
    color: var(--charcoal-2);
    font-weight: 700;
    padding-left: 30px;
    position: relative;
}

.check-list li::before,
.service-benefits li::before {
    background: var(--accent);
    border-radius: 50%;
    color: #1e211a;
    content: "✓";
    font-size: 0.74rem;
    font-weight: 900;
    height: 20px;
    left: 0;
    line-height: 20px;
    position: absolute;
    text-align: center;
    top: 2px;
    width: 20px;
}

.image-feature {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    position: relative;
}

.image-feature img {
    aspect-ratio: 4 / 3;
    height: 100%;
    object-fit: cover;
    transition: transform 600ms ease;
    width: 100%;
}

.image-feature:hover img,
.service-card:hover img {
    transform: scale(1.04);
}

.image-note {
    background: rgba(255, 255, 255, 0.94);
    border-radius: var(--radius);
    bottom: 18px;
    box-shadow: var(--shadow-soft);
    left: 18px;
    max-width: calc(100% - 36px);
    padding: 16px;
    position: absolute;
}

.image-note strong,
.image-note span {
    display: block;
}

.image-note span {
    color: var(--muted);
    font-size: 0.9rem;
    margin-top: 4px;
}

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

.service-card {
    background: var(--white);
    border: 1px solid rgba(21, 63, 46, 0.08);
    border-radius: var(--radius);
    box-shadow: 0 6px 18px rgba(24, 33, 43, 0.05);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    text-align: left;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card:hover {
    border-color: rgba(21, 63, 46, 0.22);
    box-shadow: var(--shadow);
    transform: translateY(-8px);
}

.service-image {
    overflow: hidden;
}

.service-card img {
    aspect-ratio: 16 / 11;
    height: 100%;
    object-fit: cover;
    transition: transform 600ms ease;
    width: 100%;
}

.service-card-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 26px;
}

.service-card h3 {
    margin-top: 18px;
}

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

.text-link {
    color: var(--primary-green);
    font-weight: 900;
    margin-top: auto;
    padding-top: 16px;
}

.text-link::after {
    content: " →";
}

.text-link:hover {
    color: var(--accent-dark);
}

.cta-band {
    background: var(--primary-green);
    color: var(--white);
    padding: 44px 0;
}

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

.cta-band h2 {
    color: var(--white);
    font-size: clamp(1.6rem, 3vw, 2.35rem);
    margin-bottom: 0;
}

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

.feature-item,
.testimonial-card {
    background: var(--white);
    border: 1px solid rgba(21, 63, 46, 0.08);
    border-radius: var(--radius);
    box-shadow: 0 5px 18px rgba(24, 33, 43, 0.05);
    padding: 28px;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.feature-item:hover,
.testimonial-card:hover {
    border-color: rgba(21, 63, 46, 0.2);
    box-shadow: var(--shadow-soft);
    transform: translateY(-6px);
}

.feature-item h3 {
    margin-top: 18px;
}

.feature-item p,
.testimonial-card p {
    color: var(--muted);
    margin-bottom: 0;
}

.process-grid {
    align-items: start;
}

.process-list {
    display: grid;
    gap: 18px;
}

.process-step {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    display: grid;
    gap: 18px;
    grid-template-columns: auto 1fr;
    padding: 24px;
}

.process-step span {
    align-items: center;
    background: var(--accent);
    border-radius: 8px;
    color: #1e211a;
    display: inline-flex;
    font-weight: 900;
    height: 40px;
    justify-content: center;
    width: 40px;
}

.process-step h3 {
    color: var(--white);
}

.process-step p {
    color: #c7d4ce;
    margin-bottom: 0;
}

.stars {
    color: var(--accent-dark);
    font-size: 1rem;
    margin-bottom: 18px;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 22px;
}

.testimonial-card strong {
    color: var(--charcoal);
}

.cta-section {
    background:
        linear-gradient(135deg, rgba(21, 63, 46, 0.96), rgba(24, 33, 43, 0.96)),
        url("images/hero-pest-control.jpg") center / cover;
    color: var(--white);
    padding: 86px 0;
}

.cta-section-inner {
    margin: 0 auto;
    max-width: 820px;
    text-align: center;
}

.cta-section h2,
.cta-section p {
    color: var(--white);
}

.cta-section .hero-buttons {
    justify-content: center;
    margin-top: 28px;
}

.page-header {
    background:
        linear-gradient(135deg, rgba(24, 33, 43, 0.94), rgba(21, 63, 46, 0.9)),
        url("images/hero-pest-control.jpg") center / cover;
    color: var(--white);
    padding: 190px 0 86px;
    position: relative;
}

.page-header::after {
    background: var(--white);
    bottom: -1px;
    content: "";
    height: 40px;
    left: 0;
    position: absolute;
    transform: skewY(-1.4deg);
    transform-origin: left;
    width: 100%;
}

.page-header-inner {
    max-width: 850px;
    position: relative;
    z-index: 1;
}

.page-header h1,
.page-header p {
    color: var(--white);
}

.page-header p {
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.12rem;
    max-width: 700px;
}

.service-area-content {
    margin: 0 auto;
    max-width: 860px;
    text-align: center;
}

.service-area-content p {
    color: var(--muted);
}

.service-area-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 28px;
}

.area-badge {
    background: var(--soft);
    border: 1px solid rgba(21, 63, 46, 0.12);
    border-radius: 999px;
    color: var(--primary-green);
    font-weight: 800;
    padding: 10px 16px;
}

.mt-3 {
    margin-top: 18px;
}

.contact-grid {
    align-items: start;
}

.contact-info-block p {
    color: var(--muted);
}

.info-item {
    display: grid;
    gap: 16px;
    grid-template-columns: auto 1fr;
    margin-top: 24px;
}

.info-item h3 {
    font-size: 1.02rem;
    margin-bottom: 4px;
}

.contact-link {
    color: var(--charcoal-2);
    font-weight: 800;
    overflow-wrap: anywhere;
}

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

.service-area-box {
    background: var(--soft);
    border-left: 4px solid var(--primary-green);
    border-radius: var(--radius);
    margin-top: 34px;
    padding: 24px;
}

.contact-form-block h2 {
    font-size: 1.8rem;
}

.contact-form {
    background: var(--white);
    border: 1px solid rgba(21, 63, 46, 0.1);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 34px;
}

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

.form-group label {
    color: var(--charcoal-2);
    display: block;
    font-size: 0.9rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: #fbfdfb;
    border: 1px solid #d9e3dc;
    border-radius: var(--radius);
    color: var(--charcoal);
    font: inherit;
    padding: 13px 14px;
    transition: border-color var(--transition), box-shadow var(--transition), background-color var(--transition);
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    background: var(--white);
    border-color: var(--primary-green);
    box-shadow: 0 0 0 4px rgba(21, 63, 46, 0.1);
    outline: none;
}

.w-100 {
    width: 100%;
}

.map-card {
    background: var(--white);
    border: 1px solid rgba(21, 63, 46, 0.1);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    padding: 10px;
}

.map-card iframe {
    border: 0;
    border-radius: 6px;
    display: block;
    height: 460px;
    width: 100%;
}

.site-footer {
    background: var(--charcoal);
    color: #c7d4ce;
    padding: 78px 0 28px;
}

.footer-grid {
    display: grid;
    gap: 42px;
    grid-template-columns: 1.7fr 1fr 1fr 1.35fr;
    margin-bottom: 48px;
}

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

.footer-col h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 18px;
}

.footer-col p {
    color: #c7d4ce;
}

.footer-col li {
    color: #c7d4ce;
    margin-bottom: 12px;
}

.footer-col a {
    color: #c7d4ce;
}

.contact-info span {
    color: var(--accent);
    display: block;
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #9faea8;
    font-size: 0.9rem;
    padding-top: 24px;
    text-align: center;
}

#back-to-top {
    align-items: center;
    background: var(--primary-green);
    border: 0;
    border-radius: 50%;
    bottom: 24px;
    box-shadow: var(--shadow-soft);
    color: var(--white);
    cursor: pointer;
    display: flex;
    font-size: 1.3rem;
    height: 48px;
    justify-content: center;
    opacity: 0;
    position: fixed;
    right: 24px;
    transform: translateY(10px);
    transition: opacity var(--transition), transform var(--transition), background-color var(--transition), visibility var(--transition);
    visibility: hidden;
    width: 48px;
    z-index: 1000;
}

#back-to-top.show {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

#back-to-top:hover {
    background: var(--accent-dark);
}

.animate {
    opacity: 0;
    transition: opacity 700ms ease, transform 700ms ease;
}

.fade-up {
    transform: translateY(32px);
}

.fade-right {
    transform: translateX(-32px);
}

.fade-left {
    transform: translateX(32px);
}

.fade-in {
    transform: scale(0.98);
}

.animate.visible {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

.stagger-1 {
    transition-delay: 110ms;
}

.stagger-2 {
    transition-delay: 220ms;
}

.stagger-3 {
    transition-delay: 330ms;
}

@keyframes heroZoom {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.06);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .animate {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 1024px) {
    .section-padding {
        padding: 78px 0;
    }

    .intro-grid,
    .contact-grid,
    .process-grid {
        gap: 42px;
    }

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

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

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

@media (max-width: 820px) {
    .announcement-inner {
        gap: 10px;
        justify-content: flex-start;
        overflow-x: auto;
        white-space: nowrap;
    }

    .hamburger {
        display: block;
    }

    .btn-nav {
        display: none;
    }

    .main-nav {
        background: var(--white);
        box-shadow: var(--shadow);
        left: 0;
        opacity: 0;
        padding: 26px 22px;
        position: fixed;
        right: 0;
        top: 114px;
        transform: translateY(-12px);
        transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
        visibility: hidden;
    }

    .site-header.scrolled .main-nav {
        top: 100px;
    }

    .main-nav.active {
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
    }

    .nav-list {
        align-items: stretch;
        flex-direction: column;
        gap: 8px;
    }

    .nav-list a {
        border-radius: var(--radius);
        display: block;
        padding: 12px;
    }

    .nav-list a.active,
    .nav-list a:hover {
        background: var(--soft);
    }

    .nav-list a::after {
        display: none;
    }

    .hero {
        min-height: 680px;
    }

    .hero-overlay {
        background: linear-gradient(90deg, rgba(9, 20, 16, 0.92), rgba(21, 63, 46, 0.62));
    }

    .fade-left,
    .fade-right {
        transform: translateY(32px);
    }

    .trust-grid,
    .intro-grid,
    .contact-grid,
    .process-grid,
    .services-grid,
    .testimonial-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .trust-item {
        justify-content: flex-start;
        min-height: auto;
        padding: 18px 0;
    }

    .intro-grid.row-reverse {
        direction: ltr;
    }

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

    .image-note {
        position: static;
        border-radius: 0;
        max-width: none;
    }

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

@media (max-width: 560px) {
    .container {
        padding: 0 18px;
    }

    .announcement-bar {
        font-size: 0.78rem;
    }

    .announcement-inner {
        justify-content: center;
        overflow: hidden;
    }

    .announcement-inner span:first-child {
        display: none;
    }

    .announcement-inner span:not(:last-child)::after {
        margin-left: 10px;
    }

    .logo {
        font-size: 1rem;
    }

    .nav-container {
        height: 70px;
    }

    .site-header.scrolled .nav-container {
        height: 62px;
    }

    .main-nav {
        top: 106px;
    }

    .hero {
        min-height: 640px;
    }

    .hero-content {
        padding: 46px 0;
    }

    .hero-content h1 {
        font-size: 2.12rem;
        overflow-wrap: normal;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-kicker {
        display: block;
        font-size: 0.7rem;
        line-height: 1.4;
    }

    .hero-proof span {
        font-size: 0.82rem;
    }

    .hero-buttons,
    .cta-actions {
        width: 100%;
    }

    .hero-buttons .btn,
    .cta-actions .btn {
        width: 100%;
    }

    .section-padding {
        padding: 62px 0;
    }

    .page-header {
        padding: 164px 0 70px;
    }

    .contact-form {
        padding: 24px;
    }

    .map-card iframe {
        height: 360px;
    }
}
