.site-header {
    position: sticky;
    top: 10px;
    z-index: 30;
    background: transparent;
    border-bottom: 0;
}

.nav-wrap {
    min-height: 88px;
    display: flex;
    align-items: center;
}

.header-shell {
    width: 100%;
    min-height: 72px;
    border-radius: 24px;
    border: 1px solid rgba(21, 40, 25, 0.2);
    background: rgba(250, 255, 247, 0.82);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 12px 28px rgba(20, 43, 24, 0.16);
    padding: 10px 14px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 14px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: max-content;
}

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 13px;
    display: grid;
    place-items: center;
    font-family: var(--font-brand);
    font-size: 0.9rem;
    font-weight: 700;
    background: var(--gradient-main);
    box-shadow: 0 12px 24px rgba(255, 122, 0, 0.35);
}

.brand-text {
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.site-nav ul {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 5px;
    border-radius: 999px;
    border: 1px solid rgba(21, 40, 25, 0.18);
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.site-nav a {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 999px;
    color: #213426;
    transition: 0.25s ease;
    font-weight: 500;
}

.site-nav a:hover,
.site-nav a.active {
    background: rgba(255, 255, 255, 0.95);
    color: #13271b;
    box-shadow: 0 4px 12px rgba(25, 52, 30, 0.16);
}

.menu-toggle {
    display: none;
    border: 1px solid var(--line);
    background: rgba(35, 165, 93, 0.08);
    color: #183023;
    border-radius: 10px;
    padding: 8px 10px;
}

.header-contact-btn {
    min-width: 122px;
    justify-self: end;
}

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

.conversion-strip {
    position: relative;
    z-index: 22;
    margin-top: 8px;
    border: 1px solid rgba(21, 40, 25, 0.18);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 22px rgba(29, 60, 35, 0.12);
}

.conversion-strip-wrap {
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 0.92rem;
    padding: 0 14px;
}

.conversion-strip-wrap p {
    margin: 0;
    color: #2a3b2d;
}

.conversion-strip-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.conversion-strip-actions a,
.strip-quote-btn {
    border: 1px solid rgba(31, 56, 35, 0.18);
    border-radius: 999px;
    padding: 7px 12px;
    background: rgba(255, 255, 255, 0.9);
    color: #1e3221;
    font: inherit;
}

.strip-quote-btn {
    cursor: pointer;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    font-weight: 560;
    border: 1px solid transparent;
    transition: 0.2s ease;
    cursor: pointer;
}

.btn,
.strip-quote-btn,
.filter-btn,
.float-btn,
.quote-close,
.conversion-strip-actions a,
.mobile-cta-bar a,
.mobile-cta-bar button,
.menu-toggle {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    transition: color 0.25s ease, border-color 0.25s ease, background-color 0.25s ease, transform 0.22s ease;
}

.btn::before,
.strip-quote-btn::before,
.filter-btn::before,
.float-btn::before,
.quote-close::before,
.conversion-strip-actions a::before,
.mobile-cta-bar a::before,
.mobile-cta-bar button::before,
.menu-toggle::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(120deg, rgba(35, 165, 93, 0.28), rgba(255, 122, 0, 0.26));
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.28s ease;
    pointer-events: none;
}

.btn:hover::before,
.strip-quote-btn:hover::before,
.filter-btn:hover::before,
.float-btn:hover::before,
.quote-close:hover::before,
.conversion-strip-actions a:hover::before,
.mobile-cta-bar a:hover::before,
.mobile-cta-bar button:hover::before,
.menu-toggle:hover::before {
    transform: scaleX(1);
}

.btn-small {
    padding: 10px 15px;
    font-size: 0.9rem;
}

.btn-large {
    padding: 13px 22px;
    font-size: 0.96rem;
}

.btn-primary {
    background: linear-gradient(125deg, #109954, #ff9800 56%, #ff6d00);
    color: #fff;
    box-shadow: 0 12px 26px rgba(255, 122, 0, 0.34);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(255, 122, 0, 0.42);
}

.btn-primary::before {
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.12));
}

.btn-ghost {
    color: #27452d;
    border-color: rgba(31, 56, 35, 0.25);
    background: rgba(255, 255, 255, 0.92);
}

.btn-ghost:hover {
    background: rgba(35, 165, 93, 0.12);
}

.btn:not(.btn-primary):hover,
.strip-quote-btn:hover,
.filter-btn:hover,
.conversion-strip-actions a:hover,
.mobile-cta-bar a:hover,
.mobile-cta-bar button:hover,
.menu-toggle:hover,
.float-btn:hover,
.quote-close:hover {
    color: #10271a;
    border-color: rgba(35, 165, 93, 0.45);
}

.hero {
    position: relative;
    padding: 92px 0 70px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 34px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 8px 13px;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #21482b;
    background: rgba(255, 255, 255, 0.84);
}

.hero-card,
.glass-card {
    background: var(--surface);
    border: 1px solid var(--line);
    backdrop-filter: blur(14px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.hero-card {
    padding: 26px;
}

.hero-image {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid rgba(31, 56, 35, 0.2);
    margin-bottom: 14px;
}

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

.media-frame {
    overflow: hidden;
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.97);
}

.media-frame img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.media-frame p {
    padding: 10px 12px 12px;
    margin: 0;
    font-size: 0.9rem;
}

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

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

.stat-card {
    padding: 22px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--line);
    box-shadow: 0 8px 18px rgba(22, 44, 27, 0.09);
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 1.9rem;
    font-weight: 650;
    margin-bottom: 6px;
}

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

.feature-card {
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-md);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-9px);
    border-color: rgba(35, 165, 93, 0.55);
    box-shadow: 0 16px 30px rgba(22, 44, 27, 0.16);
}

.icon-bubble {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    margin-bottom: 14px;
    background: var(--gradient-secondary);
}

.icon-bubble .material-symbols-rounded {
    font-size: 1.35rem;
}

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

.process-step {
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.93);
    box-shadow: 0 8px 16px rgba(22, 44, 27, 0.08);
}

.process-step .index {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    display: grid;
    place-items: center;
    font-size: 0.8rem;
    font-weight: 700;
    background: rgba(35, 165, 93, 0.16);
    margin-bottom: 10px;
}

.execution-card {
    padding: 30px;
}

.execution-card .section-head {
    margin-bottom: 18px;
}

.execution-track {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 18px;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid rgba(21, 40, 25, 0.14);
    background: linear-gradient(120deg, rgba(20, 171, 93, 0.12), rgba(255, 160, 0, 0.12));
}

.execution-track span {
    text-align: center;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #314834;
    font-weight: 580;
}

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

.execution-step {
    border-radius: 14px;
    border: 1px solid rgba(21, 40, 25, 0.14);
    background: rgba(255, 255, 255, 0.96);
    padding: 16px;
    box-shadow: 0 8px 16px rgba(22, 44, 27, 0.08);
    position: relative;
    overflow: hidden;
}

.execution-step::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 3px;
    background: linear-gradient(90deg, #15a55a, #ff8f00);
}

.execution-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.execution-step .index {
    margin: 0;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    font-weight: 700;
}

.execution-step h4 {
    margin: 0;
    font-size: 1.08rem;
}

.execution-step p {
    margin: 0;
    font-size: 0.98rem;
    color: #435746;
}

.cta-band {
    margin-top: 24px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(31, 56, 35, 0.18);
    padding: 32px;
    background: linear-gradient(120deg, rgba(35, 165, 93, 0.2), rgba(255, 122, 0, 0.2));
}

.lead-card {
    padding: 28px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 22px;
    align-items: start;
}

.inline-lead-form {
    padding: 18px;
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.94);
}

.lead-note {
    margin: 4px 0 0;
    font-size: 0.86rem;
}

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

.testimonial {
    padding: 22px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--line);
}

.testimonial-author {
    margin-top: 14px;
    color: #17311f;
    font-weight: 600;
}

.pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pill-list li {
    padding: 9px 14px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.96);
    color: #2b4130;
    font-size: 0.9rem;
}

.split-layout {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 28px;
    align-items: start;
}

.split-layout > .glass-card {
    padding: 30px;
    height: 100%;
}

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

.detail-list li {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}

.detail-list span {
    color: #17311f;
    font-weight: 520;
}

.why-leader-block {
    padding: 28px;
    border-radius: 22px;
    border: 1px solid rgba(21, 40, 25, 0.14);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(238, 247, 232, 0.76));
    box-shadow: 0 14px 30px rgba(22, 44, 27, 0.1);
}

.why-leader-block h2 {
    max-width: 14ch;
}

.why-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 14px 0 18px;
}

.why-points {
    display: grid;
    gap: 12px;
    margin-top: 10px;
}

.why-points li {
    margin: 0;
    gap: 12px;
    padding: 12px;
    border-radius: 14px;
    border: 1px solid rgba(21, 40, 25, 0.12);
    background: rgba(255, 255, 255, 0.88);
    align-items: flex-start;
}

.point-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    font-size: 1.15rem;
    color: #113623;
    background: linear-gradient(125deg, rgba(20, 171, 93, 0.2), rgba(255, 143, 0, 0.16));
    border: 1px solid rgba(20, 171, 93, 0.24);
    flex-shrink: 0;
}

.why-points h4 {
    margin: 0 0 4px;
    font-size: 1.08rem;
    line-height: 1.2;
}

.why-points p {
    margin: 0;
    color: #445647;
}

form {
    display: grid;
    gap: 14px;
}

.field {
    display: grid;
    gap: 8px;
}

label {
    color: #1f3a24;
    font-size: 0.94rem;
}

input,
textarea,
select {
    width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(31, 56, 35, 0.25);
    background: rgba(255, 255, 255, 0.99);
    color: #17311f;
    font: inherit;
    padding: 12px 14px;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: rgba(35, 165, 93, 0.6);
}

textarea {
    min-height: 140px;
    resize: vertical;
}

.site-footer {
    margin-top: 48px;
    border-top: 1px solid var(--line);
    background: rgba(239, 248, 235, 0.98);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr;
    gap: 26px;
    padding: 52px 0 32px;
}

.site-footer h3,
.site-footer h4 {
    margin-bottom: 12px;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #35533a;
}

.footer-links a:hover {
    color: #1f3a24;
}

.footer-contact {
    color: #3f5a45;
}

.footer-bottom {
    border-top: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 20px 0 28px;
}

.page-hero {
    padding: 86px 0 38px;
}

.page-hero .glass-card {
    padding: 30px;
}

.service-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tag {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(35, 165, 93, 0.18);
    border: 1px solid rgba(35, 165, 93, 0.45);
    font-size: 0.8rem;
    color: #1e4a2d;
}

.gallery-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.filter-btn {
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.98);
    color: #1f3a24;
    cursor: pointer;
}

.filter-btn.active {
    background: var(--gradient-main);
    border-color: transparent;
}

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

.gallery-item {
    overflow: hidden;
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 16px rgba(22, 44, 27, 0.08);
}

.gallery-thumb {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, rgba(35, 165, 93, 0.35), rgba(255, 122, 0, 0.28));
    position: relative;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-thumb::after {
    content: none;
}

.gallery-content {
    padding: 15px 16px 18px;
}

.hidden {
    display: none !important;
}

.floating-actions {
    position: fixed;
    right: 16px;
    bottom: 96px;
    z-index: 40;
    display: grid;
    gap: 10px;
}

.float-btn {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    border: 1px solid rgba(31, 56, 35, 0.2);
    background: rgba(255, 255, 255, 0.98);
    display: grid;
    place-items: center;
    color: #1e3d25;
    box-shadow: var(--shadow-md);
    cursor: pointer;
}

.mobile-cta-bar {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 45;
    background: rgba(243, 252, 238, 0.98);
    border-top: 1px solid rgba(31, 56, 35, 0.16);
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mobile-cta-bar a,
.mobile-cta-bar button {
    border: 0;
    border-right: 1px solid rgba(31, 56, 35, 0.12);
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: transparent;
    color: #1d3221;
    font: inherit;
}

.mobile-cta-bar button {
    cursor: pointer;
}

.quick-quote-modal {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: grid;
    place-items: center;
    background: rgba(20, 39, 24, 0.34);
    backdrop-filter: blur(7px);
    padding: 18px;
}

.quick-quote-panel {
    width: min(520px, 100%);
    background: var(--surface-strong);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 24px;
    position: relative;
    box-shadow: var(--shadow-xl);
}

.quote-close {
    position: absolute;
    right: 12px;
    top: 10px;
    width: 32px;
    height: 32px;
    border-radius: 9px;
    border: 1px solid rgba(31, 56, 35, 0.2);
    background: rgba(255, 255, 255, 0.95);
    color: #1d3221;
    font-size: 1.25rem;
    cursor: pointer;
}

.trust-strip {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.trust-pill {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 11px 12px;
    text-align: center;
    color: #1f3a24;
    font-size: 0.88rem;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.95);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    border: 0;
    background: transparent;
    color: #1f3a24;
    padding: 14px 16px;
    font: inherit;
    font-weight: 520;
    cursor: pointer;
}

.faq-answer {
    padding: 0 16px 16px;
    color: var(--text-dim);
}

@media (pointer: fine) {
    body.custom-cursor-active,
    body.custom-cursor-active a,
    body.custom-cursor-active button,
    body.custom-cursor-active input,
    body.custom-cursor-active textarea,
    body.custom-cursor-active select,
    body.custom-cursor-active label {
        cursor: none !important;
    }
}

.custom-cursor {
    --cursor-sx: 1;
    --cursor-sy: 1;
    --cursor-rot: 0deg;
    position: fixed;
    left: 0;
    top: 0;
    width: 88px;
    height: 88px;
    transform: translate(-50%, -50%);
    pointer-events: none;
    opacity: 0;
    z-index: 120;
    transition: opacity 0.2s ease;
}

.custom-cursor.visible {
    opacity: 1;
}

.cursor-ring,
.cursor-dot,
.cursor-label {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.cursor-ring {
    width: 58px;
    height: 58px;
    border-radius: 999px;
    border: 1.5px solid rgba(255, 255, 255, 0.55);
    background: rgba(10, 14, 18, 0.12);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
    transform:
        translate(-50%, -50%)
        scaleX(var(--cursor-sx))
        scaleY(var(--cursor-sy))
        rotate(var(--cursor-rot));
    transition: background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #ffffff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.cursor-label {
    font-family: var(--font-heading);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    min-width: 56px;
    text-align: center;
    line-height: 1;
    padding: 7px 10px;
    color: #ffffff;
    opacity: 0;
    text-transform: uppercase;
    transition: opacity 0.2s ease;
}

.custom-cursor.dragging .cursor-ring {
    border-color: rgba(255, 255, 255, 0.75);
    background: rgba(12, 16, 20, 0.18);
}

.custom-cursor.hovering .cursor-ring {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(5, 6, 8, 0.64);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
}

.custom-cursor.hovering .cursor-label {
    opacity: 1;
}

@media (pointer: coarse) {
    .custom-cursor {
        display: none;
    }
}

@media (max-width: 1080px) {
    .hero-grid,
    .split-layout,
    .contact-grid,
    .lead-card {
        grid-template-columns: 1fr;
    }

    .card-grid,
    .testimonial-grid,
    .gallery-grid,
    .media-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .execution-flow {
        grid-template-columns: 1fr;
    }

    .execution-track {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    body {
        padding-bottom: 58px;
    }

    .site-header {
        top: 6px;
    }

    .header-shell {
        grid-template-columns: auto auto;
        justify-content: space-between;
        padding: 10px 12px;
        border-radius: 18px;
        position: relative;
    }

    .menu-toggle {
        display: inline-flex;
        order: 3;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        right: 0;
        padding: 14px;
        border-radius: 14px;
        border: 1px solid var(--line);
        background: rgba(251, 255, 248, 0.92);
        backdrop-filter: blur(12px);
        flex-direction: column;
        align-items: stretch;
        transform-origin: top;
        transform: scaleY(0);
        opacity: 0;
        pointer-events: none;
        transition: 0.25s ease;
    }

    .site-nav.open {
        transform: scaleY(1);
        opacity: 1;
        pointer-events: all;
    }

    .site-nav ul {
        flex-direction: column;
        padding: 0;
        border: 0;
        background: transparent;
    }

    .site-nav a {
        width: 100%;
    }

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

    .nav-mobile-cta {
        display: inline-flex !important;
        width: 100%;
        margin-top: 10px;
    }

    .brand-text {
        display: none;
    }

    .conversion-strip-wrap {
        min-height: auto;
        padding: 10px 12px;
        flex-direction: column;
        align-items: flex-start;
    }

    .conversion-strip-actions {
        width: 100%;
    }

    .conversion-strip-actions a,
    .strip-quote-btn {
        flex: 1;
        text-align: center;
    }

    .card-grid,
    .testimonial-grid,
    .service-link-grid,
    .gallery-grid,
    .media-grid,
    .stats-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

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

    .split-layout > .glass-card {
        padding: 22px;
    }

    .execution-card {
        padding: 22px;
    }

    .why-leader-block {
        padding: 22px;
    }

    .floating-actions {
        display: none;
    }

    .mobile-cta-bar {
        display: grid;
    }

    .trust-strip {
        grid-template-columns: 1fr;
    }
}
