:root {
    --primary: #185fa5;
    --primary-dark: #042c53;
    --bg: #f2f8ff;
    --text: #042c53;
    --muted: #2e5c88;
    --white: #ffffff;
    --success: #0a8f55;
    --danger: #c62828;
    --shadow: 0 10px 30px rgba(4, 44, 83, 0.12);
    --container-x: 16px;
    --section-y: 44px;
}

* {
    box-sizing: border-box;
}

svg.icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    flex-shrink: 0;
    vertical-align: -0.15em;
    fill: currentColor;
}

body {
    margin: 0;
    font-family: "Segoe UI", Arial, Helvetica, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.55;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1140px, calc(100% - (var(--container-x) * 2)));
    margin: 0 auto;
}

.menu-toggle-icons {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 1.125em;
    height: 1.125em;
}

.menu-toggle .icon-menu-close {
    display: none;
    position: absolute;
    inset: 0;
    margin: auto;
}

.menu-toggle[aria-expanded="true"] .icon-menu-open {
    display: none;
}

.menu-toggle[aria-expanded="true"] .icon-menu-close {
    display: block;
}

.submenu-toggle .icon-chevron {
    width: 14px;
    height: 14px;
    transition: transform 0.2s ease;
}

.submenu-toggle[aria-expanded="true"] .icon-chevron {
    transform: rotate(180deg);
}

.topbar {
    background: var(--primary-dark);
    color: var(--white);
    padding: 10px 0;
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.topbar-inner p {
    margin: 0;
    font-size: 14px;
}

.topbar-actions {
    display: flex;
    gap: 8px;
}

.navbar {
    background: var(--white);
    border-bottom: 1px solid #d8e7fa;
    position: sticky;
    top: 0;
    z-index: 99;
}

.navbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 64px;
    gap: 16px;
}

.brand {
    display: inline-flex;
    align-items: center;
}

.brand-logo {
    width: 250px;
    height: auto;
    display: block;
}

.menu-toggle {
    display: none;
    border: 1px solid #b7d0f3;
    background: #f2f8ff;
    color: var(--primary-dark);
    border-radius: 12px;
    font-weight: 700;
    padding: 9px 12px;
    cursor: pointer;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 18px rgba(10, 62, 110, 0.12);
}

.menu-toggle .menu-toggle-icons svg.icon {
    width: 18px;
    height: 18px;
}

.menu-toggle span {
    font-size: 14px;
}

.menu {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 6px;
}

.menu-panel {
    display: block;
}

.menu-panel-head {
    display: none;
}

.menu-panel-meta {
    display: none;
}

.menu-close {
    display: none;
}

.menu-panel-footer {
    display: none;
}

.menu a {
    display: block;
    padding: 10px 12px;
    border-radius: 8px;
    font-weight: 600;
    color: #124276;
}

.menu-link-main {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.menu-count {
    font-size: 11px;
    line-height: 1;
    background: #e4f1ff;
    color: #1b5f9e;
    border: 1px solid #cfe4ff;
    border-radius: 999px;
    padding: 3px 6px;
    font-weight: 700;
}

.menu > li {
    position: relative;
}

.has-submenu {
    display: flex;
    align-items: center;
}

.submenu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    color: #1a5b98;
    cursor: pointer;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    margin-right: 4px;
    transition: background 0.2s ease, color 0.2s ease;
}

.submenu-toggle:hover {
    background: #e9f3ff;
    color: #0e4c86;
}

.submenu {
    list-style: none;
    margin: 0;
    padding: 8px;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    max-height: 340px;
    overflow: auto;
    background: #ffffff;
    border: 1px solid #d7e9ff;
    border-radius: 12px;
    box-shadow: 0 14px 30px rgba(4, 44, 83, 0.15);
    display: block;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(6px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
    z-index: 120;
}

.submenu li a {
    padding: 9px 10px;
    font-weight: 500;
    border-radius: 8px;
    color: #245486;
}

.submenu-bottom-link {
    margin-top: 6px;
    padding-top: 6px;
    border-top: 1px dashed #d8eafe;
}

.submenu-bottom-link a {
    font-weight: 600;
    color: #1a64ab;
}

.submenu li a:hover {
    background: #eef6ff;
}

.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.menu a.active,
.menu a:hover {
    background: #e6f2ff;
    color: var(--primary-dark);
}

.menu-backdrop {
    display: none;
}

body.menu-open {
    overflow: hidden;
}

.btn {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 8px;
    border: 0;
    cursor: pointer;
    transition: background 0.2s ease;
}

.btn:hover {
    background: var(--primary-dark);
}

.btn svg.icon {
    margin-right: 7px;
}

.btn-small {
    padding: 8px 14px;
    font-size: 14px;
}

.btn-icon-only {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 999px;
}

.btn-icon-only svg.icon {
    margin-right: 0;
    width: 18px;
    height: 18px;
}

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

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

.btn-outline-light {
    border: 1px solid #8eb9ea;
    color: var(--white);
    background: transparent;
}

.btn-outline-light:hover {
    background: #0c3b70;
}

.btn-block {
    width: 100%;
}

section {
    padding: var(--section-y) 0;
}

.hero {
    padding-top: 44px;
}

.hero-v2 {
    position: relative;
    padding: 52px 0;
    background:
        linear-gradient(100deg, rgba(4, 44, 83, 0.94) 0%, rgba(4, 44, 83, 0.76) 52%, rgba(4, 44, 83, 0.48) 100%),
        url("slider-1.webp") center/cover no-repeat;
    color: #f1f7ff;
}

.hero-v2-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
    align-items: stretch;
}

.hero-v2 .badge {
    background: #d8ebff;
}

.hero-v2 h1 {
    color: #ffffff;
}

.hero-v2 .lead {
    color: #e2edff;
}

.hero-points {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.hero-points li {
    position: relative;
    padding-left: 28px;
    font-weight: 500;
}

.hero-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: linear-gradient(180deg, #2d95ff 0%, #1462b0 100%);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.16);
}

.hero-v2-panel {
    border: 1px solid rgba(183, 208, 243, 0.48);
    background: rgba(255, 255, 255, 0.94);
    color: var(--text);
    backdrop-filter: blur(6px);
}

.hero-v2-kicker {
    margin: 0;
    color: #2a5888;
    font-size: 12px;
    letter-spacing: 1.1px;
    font-weight: 700;
}

.hero-v2-panel h2 {
    margin-top: 6px;
}

.hero-v2-note {
    display: block;
    margin-top: 12px;
    color: #5379a6;
    font-weight: 500;
}

.stats-v2-wrap {
    padding-top: 22px;
}

.stats-v2-head {
    max-width: 700px;
    margin-bottom: 14px;
}

.stats-v2-head h2 {
    margin-bottom: 8px;
}

.stats-v2-head .section-text {
    margin-bottom: 0;
}

.about-v2 {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 20px;
    align-items: start;
}

.about-v2-cards {
    display: grid;
    gap: 14px;
}

.about-v2-images {
    margin-top: 18px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.about-v2-metrics {
    margin-top: 12px;
    display: grid;
    gap: 10px;
}

.about-metric {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    background: #f2f8ff;
    border: 1px solid #d9e9fd;
}

.about-metric svg.icon {
    width: 15px;
    height: 15px;
    padding: 8.5px;
    box-sizing: content-box;
    border-radius: 999px;
    background: #deeeff;
    color: #1462a8;
    flex-shrink: 0;
}

.about-metric strong {
    display: block;
    color: #0f3f72;
    line-height: 1.25;
}

.about-metric span {
    display: block;
    color: #4a76a4;
    font-size: 13px;
}

.about-image-card {
    margin: 0;
    background: #ffffff;
    border: 1px solid #d9e9fd;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-image-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}

.about-image-card figcaption {
    padding: 9px 10px;
    font-size: 13px;
    color: #2d5d8d;
    background: #f6faff;
}

.about-point-card svg.icon {
    width: 18px;
    height: 18px;
    padding: 12px;
    box-sizing: content-box;
    border-radius: 10px;
    margin-bottom: 12px;
    color: #fff;
    background: linear-gradient(180deg, #2b8fff 0%, #185fa5 100%);
}

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

.service-v2-card {
    padding: 14px;
    display: grid;
    grid-template-columns: 116px 1fr;
    gap: 14px;
    align-items: center;
}

.service-v2-card img {
    width: 100%;
    height: 92px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.service-v2-card h3 {
    margin: 0 0 8px;
}

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

.services-v3-section {
    background: linear-gradient(180deg, #f5faff 0%, #ecf5ff 100%);
}

.services-v3-head {
    max-width: 740px;
}

.services-v3-grid {
    margin-top: 16px;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 16px;
    align-items: stretch;
}

.services-v3-feature {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: 16px;
    min-height: 420px;
    box-shadow: var(--shadow);
}

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

.services-v3-feature::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(4, 44, 83, 0.08) 0%, rgba(4, 44, 83, 0.82) 75%);
}

.services-v3-feature-overlay {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 2;
    color: #ffffff;
}

.services-v3-feature-overlay .badge {
    background: rgba(232, 244, 255, 0.95);
}

.services-v3-feature-overlay h3 {
    margin: 12px 0 8px;
    font-size: 30px;
    color: #ffffff;
}

.services-v3-feature-overlay p {
    margin: 0;
    color: #dbeaff;
}

.service-v3-link {
    display: inline-block;
    margin-top: 10px;
    color: #ffffff;
    text-decoration: underline;
}

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

.services-v3-item {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 12px;
    padding: 12px;
    align-items: center;
}

.services-v3-item img {
    width: 100%;
    height: 95px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.services-v3-item h3 {
    margin: 0 0 6px;
    font-size: 21px;
}

.services-v3-item h3 svg.icon {
    color: #1a6ab5;
    margin-right: 6px;
}

.services-v3-item p {
    margin: 0;
    color: var(--muted);
}

.home-before-after {
    background: #ffffff;
}

.home-before-after-head,
.home-work-video-head {
    max-width: 720px;
    margin-bottom: 6px;
}

.before-after-grid {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.before-after-card {
    padding: 16px;
    border: 1px solid #dcecff;
    overflow: hidden;
}

.before-after-title {
    margin: 0 0 12px;
    font-size: 18px;
    color: var(--primary-dark);
}

.before-after-figure {
    margin: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #cfe4ff;
    background: #f0f6fc;
}

.before-after-img {
    display: block;
    width: 100%;
    height: auto;
    vertical-align: bottom;
}

.before-after-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.before-after-cell {
    position: relative;
    margin: 0;
    border-radius: 12px;
    overflow: hidden;
    background: #e8f2fc;
    border: 1px solid #cfe4ff;
}

.before-after-cell img {
    display: block;
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.before-after-label {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 999px;
    color: #fff;
}

.before-after-label--before {
    background: rgba(198, 40, 40, 0.92);
}

.before-after-label--after {
    background: rgba(10, 143, 85, 0.94);
}

.home-work-video {
    background: linear-gradient(180deg, #f7fbff 0%, #eef6ff 100%);
    overflow-x: hidden;
}

.work-video-grid {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    align-items: start;
}

.work-video-card {
    padding: 16px;
    border: 1px solid #dcecff;
    display: flex;
    flex-direction: column;
    min-width: 0;
    max-width: 100%;
}

.work-video-card-title {
    margin: 0 0 6px;
    font-size: 18px;
    color: var(--primary-dark);
}

.work-video-card-desc {
    margin: 0 0 12px;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.45;
}

.work-video-frame {
    margin-top: 0;
    padding: 0;
    overflow: hidden;
    border: 1px solid #d0e5fb;
    border-radius: 12px;
    background: #0a1f33;
    line-height: 0;
    max-width: 100%;
}

.work-video-frame--native {
    margin-top: 0;
    align-self: stretch;
}

.work-video-el {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    vertical-align: bottom;
    background: #0a1f33;
}

.work-video-placeholder {
    margin-top: 16px;
    padding: 28px 22px;
    text-align: center;
    border: 1px dashed #b7d4f0;
    background: linear-gradient(180deg, #ffffff 0%, #f4f9ff 100%);
}

.work-video-placeholder-text {
    margin: 0;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.55;
}

.listing-hero {
    background: linear-gradient(180deg, #f5faff 0%, #ecf5ff 100%);
}

.listing-service-grid,
.listing-district-grid {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.listing-card {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 14px;
    align-items: center;
}

.listing-card img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 12px;
}

.listing-card h2 {
    margin: 0 0 8px;
    font-size: 23px;
}

.listing-card h2 svg.icon {
    color: #1a6ab5;
    margin-right: 6px;
}

.listing-card p {
    margin: 0 0 8px;
    color: var(--muted);
}

.detail-hero {
    padding-top: 44px;
    background: linear-gradient(180deg, #eef6ff 0%, #ffffff 100%);
}

.detail-hero-grid {
    display: grid;
    grid-template-columns: 1fr 0.95fr;
    gap: 18px;
    align-items: center;
}

.detail-hero-image {
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.detail-hero-image img {
    display: block;
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.detail-benefit-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    align-items: stretch;
}

.detail-benefit-card {
    border: 1px solid #dcecff;
    background: linear-gradient(180deg, #ffffff 0%, #f8fcff 100%);
}

.detail-benefit-card h2 {
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e3efff;
}

.detail-list,
.detail-order-list {
    margin: 0;
    padding-left: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.detail-list li,
.detail-order-list li {
    color: #2a5a89;
}

.detail-list li svg.icon {
    margin-right: 6px;
    color: #1564ad;
}

.detail-list li {
    padding: 10px 12px;
    border: 1px solid #deedff;
    border-radius: 10px;
    background: #f3f9ff;
    margin: 0;
}

.detail-order-list {
    counter-reset: step;
}

.detail-order-list li {
    position: relative;
    padding: 10px 12px 10px 40px;
    border: 1px solid #deedff;
    border-radius: 10px;
    background: #f3f9ff;
}

.detail-order-list li::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: 0;
    top: -1px;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: #dcedff;
    color: #0f4f8f;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.detail-benefit-card .text-link {
    display: inline-block;
    margin-top: 10px;
}

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

.mini-faq-list details {
    border: 1px solid #d8eafe;
    border-radius: 10px;
    padding: 10px 12px;
    background: #f8fcff;
}

.mini-faq-list summary {
    cursor: pointer;
    font-weight: 600;
    color: #1d527f;
}

.mini-faq-list p {
    margin: 8px 0 0;
    color: #4a77a4;
}

.contact-highlight {
    background: linear-gradient(180deg, #ffffff 0%, #f3f8ff 100%);
}

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

.contact-point-list {
    list-style: none;
    margin: 10px 0 14px;
    padding: 0;
    display: grid;
    gap: 8px;
}

.contact-point-list li {
    color: #2b5b88;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.contact-point-list svg.icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: #1a6ab5;
}

.contact-quick-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.contact-form-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 10px 0 14px;
}

.contact-form-steps span {
    background: #eef6ff;
    border: 1px solid #d8eafe;
    color: #275785;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.contact-form-steps b {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: #1a6ab5;
    color: #fff;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.contact-region-card .section-text {
    margin-bottom: 12px;
}

.about-page-hero {
    background: linear-gradient(180deg, #ecf5ff 0%, #ffffff 100%);
    padding-top: 42px;
}

.about-page-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 18px;
    align-items: center;
}

.about-page-hero-image {
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-page-hero-image img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
}

.about-page-kpis {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.about-page-kpis article {
    background: #f3f9ff;
    border: 1px solid #d8eafe;
    border-radius: 12px;
    padding: 10px;
    text-align: center;
}

.about-page-kpis strong {
    display: block;
    font-size: 22px;
    color: #0f4f8f;
}

.about-page-kpis span {
    font-size: 13px;
    color: #48739f;
}

.about-story p {
    margin: 0 0 10px;
    color: #2f608f;
}

.about-values {
    background: #f6fbff;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.about-values-grid h3 {
    font-size: 21px;
}

.about-values-grid h3 svg.icon {
    margin-right: 7px;
    color: #1a6ab5;
}

.about-links {
    text-align: center;
}

.about-links .cta-row {
    justify-content: center;
}

.region-highlight-grid {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.region-highlight-grid h3 {
    margin-bottom: 6px;
    font-size: 20px;
}

.region-highlight-grid h3 svg.icon {
    margin-right: 6px;
    color: #1a69b4;
}

.region-highlight-grid p {
    margin: 0;
    color: #4c789f;
}

.faq-page-hero .section-text {
    max-width: 860px;
}

.faq-top-badges {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1fr 0.85fr;
    gap: 14px;
    align-items: start;
}

.faq-group h2,
.faq-side h3 {
    margin-bottom: 10px;
}

.faq-group h2 svg.icon,
.faq-side h3 svg.icon {
    margin-right: 6px;
    color: #1a69b4;
}

.faq-group details {
    border: 1px solid #d8eafe;
    border-radius: 10px;
    padding: 11px 12px;
    margin-bottom: 8px;
    background: #f8fcff;
}

.faq-group summary {
    cursor: pointer;
    font-weight: 600;
}

.faq-group p {
    margin: 8px 0 0;
    color: #4c78a3;
}

.faq-side {
    position: sticky;
    top: 90px;
}

.faq-side p {
    color: #4c78a3;
}

.faq-side .detail-list li {
    font-size: 14px;
}

.contact-info-grid h3 svg.icon {
    margin-right: 6px;
    color: #1a69b4;
}

.process-v2 {
    background: #eaf4ff;
}

.rating-box {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.rating-score {
    min-width: 170px;
    text-align: center;
    border-radius: 12px;
    padding: 12px;
    background: #f3f8ff;
    border: 1px solid #d7e9ff;
}

.rating-score strong {
    display: block;
    font-size: 42px;
    line-height: 1;
    color: var(--primary-dark);
}

.rating-score span {
    display: block;
    margin-top: 6px;
    font-weight: 700;
    color: #195e9f;
}

.rating-score small {
    color: #5379a6;
}

.final-cta {
    padding-top: 14px;
}

.final-cta-box {
    border-radius: 18px;
    background: linear-gradient(140deg, #0f4e8e 0%, #0a3f73 100%);
    color: #f3f8ff;
    text-align: center;
    padding: 34px 24px;
}

.final-cta-box h2 {
    color: #ffffff;
    margin-bottom: 8px;
}

.final-cta-box p {
    margin: 0 0 18px;
    color: #d4e8ff;
}

.final-cta-box .cta-row {
    justify-content: center;
    margin-bottom: 0;
}

.final-cta-box .btn-outline {
    color: #ffffff;
    border-color: #96c5f6;
}

.final-cta-box .btn-outline:hover {
    background: #ffffff;
    color: #0f4e8e;
}

.trust-strip-wrap {
    padding: 8px 0 0;
}

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

.trust-strip p {
    margin: 0;
    background: #e6f2ff;
    border: 1px solid #d0e5ff;
    border-radius: 12px;
    padding: 14px 16px;
    color: #0e3f74;
    font-size: 15px;
}

.home-slider-section {
    padding: 0;
}

.home-slider {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    border-radius: 0;
    overflow: hidden;
    min-height: min(76vh, 760px);
    box-shadow: 0 18px 55px rgba(4, 44, 83, 0.2);
}

.home-slider::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: radial-gradient(circle at 82% 18%, rgba(94, 175, 255, 0.25) 0%, rgba(94, 175, 255, 0) 42%);
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease;
}

.slide.is-active {
    opacity: 1;
    visibility: visible;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(95deg, rgba(4, 44, 83, 0.82) 0%, rgba(4, 44, 83, 0.35) 52%, rgba(4, 44, 83, 0.1) 100%);
}

.slide-content {
    position: absolute;
    left: clamp(14px, 7vw, 86px);
    right: 14px;
    bottom: clamp(18px, 5vw, 54px);
    z-index: 4;
    max-width: 620px;
    color: var(--white);
    padding: clamp(14px, 3vw, 26px);
    border-radius: 18px;
    border: 1px solid rgba(205, 229, 255, 0.28);
    background: rgba(4, 44, 83, 0.3);
    backdrop-filter: blur(8px);
}

.slide-content h2 {
    color: var(--white);
    margin: 10px 0 10px;
}

.slide-content p {
    margin: 0 0 16px;
    color: #e9f2ff;
    font-size: clamp(15px, 2.2vw, 18px);
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    border: 0;
    width: 52px;
    height: 52px;
    border-radius: 999px;
    background: rgba(4, 44, 83, 0.44);
    border: 1px solid rgba(222, 240, 255, 0.46);
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.slider-nav:hover {
    transform: translateY(-50%) scale(1.05);
    background: rgba(4, 44, 83, 0.72);
}

.slider-nav.prev {
    left: 20px;
}

.slider-nav.next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.slider-dot {
    width: 11px;
    height: 11px;
    border-radius: 999px;
    border: 0;
    background: rgba(255, 255, 255, 0.55);
    cursor: pointer;
    transition: all 0.2s ease;
}

.slider-dot.is-active {
    background: #ffffff;
    width: 28px;
    border-radius: 999px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
    align-items: start;
}

.hero-panel {
    background: linear-gradient(160deg, #ffffff 0%, #eff6ff 100%);
    border: 1px solid #d9e8fb;
}

.hero-panel p {
    color: var(--muted);
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 14px 0;
}

.check-list li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 10px;
    color: #1b4b7e;
    font-weight: 500;
}

.check-list li::before {
    content: "";
    width: 13px;
    height: 13px;
    border-radius: 999px;
    position: absolute;
    left: 0;
    top: 6px;
    background: linear-gradient(180deg, #1e8bff 0%, #185fa5 100%);
}

.cta-column {
    display: grid;
    gap: 10px;
}

.panel-link {
    text-align: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #dcedff;
    color: #0f4f8f;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 999px;
}

.badge svg.icon {
    flex-shrink: 0;
}

h1, h2, h3 {
    line-height: 1.25;
    margin-top: 0;
}

h1 {
    font-size: clamp(28px, 5vw, 42px);
    margin: 12px 0 10px;
    font-weight: 700;
}

h2 {
    font-size: clamp(22px, 4vw, 32px);
    margin-bottom: 12px;
    font-weight: 600;
}

h3 {
    font-weight: 600;
}

.lead,
.section-text {
    color: var(--muted);
    font-size: 18px;
    margin-top: 0;
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.features {
    margin: 0;
    padding-left: 20px;
    color: var(--muted);
}

.card {
    background: var(--white);
    border-radius: 14px;
    padding: 22px;
    box-shadow: var(--shadow);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(4, 44, 83, 0.16);
}

.form-card h2 {
    margin-bottom: 8px;
}

label {
    display: block;
    font-weight: 700;
    margin: 12px 0 6px;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid #c6dbf5;
    border-radius: 8px;
    padding: 11px 12px;
    font: inherit;
}

textarea {
    resize: vertical;
}

.honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
}

.alert {
    border-radius: 8px;
    padding: 10px 12px;
    margin: 12px 0;
}

.alert-error {
    background: #ffe8e8;
    color: var(--danger);
}

.alert-success {
    background: #e5fff2;
    color: var(--success);
}

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

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

.stat-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    color: #ffffff;
    background: linear-gradient(180deg, #2b8fff 0%, #185fa5 100%);
}

.stat-icon svg.icon {
    width: 1.125rem;
    height: 1.125rem;
}

.stat h3 {
    margin-bottom: 6px;
    font-size: 30px;
    color: var(--primary-dark);
}

.stat p {
    margin: 0;
    color: var(--muted);
}

.review-card p {
    margin-top: 0;
    color: var(--muted);
}

.proof-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 18px;
}

.proof-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 270px;
    box-shadow: var(--shadow);
}

.proof-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.01);
    transition: transform 0.35s ease;
}

.proof-item:hover img {
    transform: scale(1.06);
}

.proof-overlay {
    position: absolute;
    inset: auto 0 0;
    padding: 16px;
    color: #fff;
    background: linear-gradient(180deg, rgba(4, 44, 83, 0) 0%, rgba(4, 44, 83, 0.85) 78%);
}

.proof-overlay h3 {
    margin: 0 0 4px;
    color: #fff;
    font-size: 20px;
}

.proof-overlay p {
    margin: 0;
    color: #dbe9ff;
}

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

.trust-card {
    border: 1px solid #d6e8ff;
    background: linear-gradient(165deg, #ffffff 0%, #f1f8ff 100%);
}

.trust-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    color: #fff;
    font-weight: 700;
    background: linear-gradient(180deg, #2b8fff 0%, #185fa5 100%);
    margin-bottom: 10px;
}

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

.step-card {
    position: relative;
    overflow: hidden;
}

.step-no {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: #0f4f8f;
    background: #deeeff;
    padding: 6px 10px;
    border-radius: 999px;
    margin-bottom: 10px;
}

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

.areas-v2 {
    background: linear-gradient(180deg, #edf6ff 0%, #e4f1ff 100%);
}

.areas-v2-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    align-items: start;
}

.areas-v2-content,
.areas-v2-list {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #d7e9ff;
    box-shadow: var(--shadow);
    padding: 20px;
}

.areas-v2-content .cta-row {
    margin-bottom: 0;
}

.areas-v2-list {
    background: linear-gradient(180deg, #ffffff 0%, #f5faff 100%);
}

.areas-v2-list h3 {
    margin: 0 0 12px;
    font-size: 20px;
}

.areas-v2-chips {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.areas-v2-highlights {
    list-style: none;
    margin: 14px 0 16px;
    padding: 0;
    display: grid;
    gap: 8px;
}

.areas-v2-highlights li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #275886;
    font-weight: 500;
}

.areas-v2-highlights svg.icon {
    width: 10px;
    height: 10px;
    padding: 6px;
    box-sizing: content-box;
    border-radius: 999px;
    background: #e2f0ff;
    color: #0d5ca1;
    flex-shrink: 0;
}

.text-link {
    color: #185fa5;
    font-weight: 700;
}

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

.chip {
    background: #e6f2ff;
    color: #0f4f8f;
    border-radius: 999px;
    padding: 8px 12px;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.chip svg.icon {
    color: #0f5ea4;
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

.faq details {
    background: var(--white);
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 10px;
    box-shadow: var(--shadow);
}

.faq summary {
    cursor: pointer;
    font-weight: 700;
}

.faq-preview {
    background: linear-gradient(180deg, #f4faff 0%, #eaf4ff 100%);
}

.faq-preview-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.faq-preview-head h2 {
    margin: 0;
}

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

.faq-preview-card {
    background: #ffffff;
    border: 1px solid #d7e9ff;
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 16px;
}

.faq-icon {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: linear-gradient(180deg, #2b8fff 0%, #185fa5 100%);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.faq-icon svg.icon {
    width: 22px;
    height: 22px;
}

.faq-preview-card h3 {
    font-size: 18px;
    margin: 0 0 8px;
    color: #0f3f72;
}

.faq-preview-card p {
    margin: 0;
    color: #416c98;
}

.reviews-v2 {
    padding-top: 26px;
}

.review-slider {
    position: relative;
    padding: 24px 56px 50px;
}

.review-viewport {
    overflow: hidden;
}

.review-track {
    display: flex;
    transition: transform 0.35s ease;
    will-change: transform;
}

.review-slider .review-card {
    flex: 0 0 calc(100% / 3);
    padding: 14px;
}

.review-slider .review-card p {
    margin: 8px 0 12px;
    color: var(--muted);
}

.review-slider .review-card strong {
    color: var(--primary-dark);
}

.review-stars {
    display: flex;
    gap: 4px;
    color: #f6b301;
}

.review-stars svg.icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.review-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: 1px solid #bfd9f8;
    background: #eff6ff;
    color: #124b87;
    cursor: pointer;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.review-nav svg.icon {
    width: 18px;
    height: 18px;
}

.review-nav.prev {
    left: 10px;
}

.review-nav.next {
    right: 10px;
}

.review-nav:hover {
    background: #dcebff;
}

.review-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 16px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.review-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 0;
    background: #bfd9f8;
    cursor: pointer;
}

.review-dot.active {
    width: 26px;
    background: #1b6cb8;
}

.footer {
    background: var(--primary-dark);
    color: #d6e2ff;
    padding: 34px 0 16px;
    margin-top: 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr;
    gap: 24px;
}

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

.small {
    font-size: 14px;
    color: #b7d0f3;
}

.footer-bottom {
    border-top: 1px solid #2c5f96;
    margin-top: 18px;
    padding-top: 12px;
    font-size: 14px;
    color: #b7d0f3;
}

.footer-brand {
    margin: 0 0 8px;
}

.footer-logo {
    width: 220px;
    max-width: 100%;
    height: auto;
    display: block;
}

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

@media (max-width: 940px) {
    :root {
        --section-y: 34px;
    }

    .navbar {
        z-index: 420;
    }

    .hero-grid,
    .hero-v2-grid,
    .about-v2,
    .service-grid,
    .footer-grid,
    .stats-grid,
    .process-grid,
    .trust-strip,
    .proof-gallery,
    .trust-badge-grid {
        grid-template-columns: 1fr;
    }

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

    .navbar-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 6px 0;
    }

    .brand {
        margin-left: 0;
    }

    .areas-v2-grid {
        grid-template-columns: 1fr;
    }

    .areas-v2-chips {
        grid-template-columns: 1fr;
    }

    .faq-preview-grid {
        grid-template-columns: 1fr;
    }

    .faq-preview-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .menu {
        gap: 0;
        display: grid;
        grid-template-columns: 1fr;
        margin: 0;
        padding: 0;
        background: transparent;
        border: 0;
        box-shadow: none;
        z-index: auto;
        overflow-y: auto;
        transform: none;
        opacity: 1;
        pointer-events: auto;
        transition: none;
    }

    .menu-panel {
        --drawer-pad-x: 14px;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(88vw, 370px);
        background: #ffffff;
        border-left: 1px solid #d8e9ff;
        border-radius: 18px 0 0 18px;
        box-shadow: -16px 0 36px rgba(4, 44, 83, 0.22);
        z-index: 430;
        transform: translateX(100%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.24s ease, opacity 0.24s ease;
        overflow: hidden;
    }

    .menu-panel.is-open {
        transform: translateX(0);
        opacity: 1;
        pointer-events: auto;
    }

    .menu-panel-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        padding: 16px var(--drawer-pad-x);
        border-bottom: 1px solid #e2efff;
        background: linear-gradient(180deg, #f5faff 0%, #eef6ff 100%);
    }

    .menu-panel-head-text strong {
        display: block;
        color: #114a80;
        font-size: 17px;
        font-weight: 600;
    }

    .menu-panel-head-text small {
        color: #5a82aa;
        font-size: 12px;
    }

    .menu-panel-meta {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        padding: 10px var(--drawer-pad-x) 0;
    }

    .menu-panel-meta a {
        border: 1px solid #d8eaff;
        background: #f7fbff;
        color: #1e5f9c;
        border-radius: 10px;
        padding: 8px 10px;
        font-size: 13px;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }

    .menu-panel-meta a svg.icon {
        color: #1a6ab5;
    }

    .menu-close {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 34px;
        border-radius: 10px;
        border: 1px solid #cde3ff;
        background: #ffffff;
        color: #1d5c99;
        cursor: pointer;
    }

    .menu-close:hover {
        background: #eaf3ff;
    }

    .menu-panel .menu {
        padding: 10px var(--drawer-pad-x) 16px;
        max-height: calc(100vh - 214px);
        overflow-y: auto;
    }

    .menu li {
        width: 100%;
        margin-bottom: 8px;
        border-radius: 12px;
        background: #ffffff;
        border: 1px solid #edf5ff;
        overflow: hidden;
    }

    .menu a {
        width: 100%;
        padding: 12px 12px;
        border-radius: 12px;
        background: transparent;
        border: 0;
        font-weight: 600;
    }

    .menu a.active {
        background: #eef6ff;
    }

    .menu-link-main {
        justify-content: space-between;
    }

    .has-submenu {
        flex-wrap: wrap;
        align-items: center;
    }

    .has-submenu > a {
        width: auto;
        flex: 1;
    }

    .submenu-toggle {
        width: 34px;
        height: 34px;
        margin-left: auto;
        margin-right: 6px;
        border: 1px solid #dcecff;
        background: #f7fbff;
    }

    .submenu {
        flex-basis: 100%;
        position: static;
        width: 100%;
        min-width: 0;
        max-height: none;
        border-radius: 10px;
        box-shadow: none;
        border: 1px solid #dcecff;
        margin: 0 var(--drawer-pad-x) 8px;
        background: #f7fbff;
        display: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
    }

    .submenu::-webkit-scrollbar,
    .menu-panel .menu::-webkit-scrollbar {
        width: 8px;
    }

    .submenu::-webkit-scrollbar-thumb,
    .menu-panel .menu::-webkit-scrollbar-thumb {
        background: #c7def8;
        border-radius: 999px;
    }

    .has-submenu.is-open .submenu {
        display: block;
    }

    .menu > li:last-child {
        margin-bottom: 0;
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin: 0;
        margin-right: 15px;
        width: auto;
        max-width: none;
        flex-shrink: 0;
    }

    .home-slider {
        min-height: 430px;
    }

    .service-v2-grid {
        grid-template-columns: 1fr;
    }

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

    .listing-service-grid,
    .listing-district-grid,
    .detail-hero-grid,
    .detail-benefit-wrap,
    .about-page-hero-grid,
    .about-values-grid,
    .region-highlight-grid,
    .faq-layout {
        grid-template-columns: 1fr;
    }

    .services-v3-feature {
        min-height: 300px;
    }

    .services-v3-list {
        grid-template-columns: 1fr;
    }

    .before-after-grid {
        grid-template-columns: 1fr;
    }

    .work-video-grid {
        grid-template-columns: 1fr;
    }

    .slide-content {
        left: 14px;
        right: 14px;
        bottom: 16px;
    }

    .slide-content p {
        font-size: 15px;
    }

    .brand-logo {
        width: 230px;
    }

    .menu-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(4, 25, 46, 0.45);
        border: 0;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.24s ease;
        z-index: 410;
    }

    .menu-backdrop.is-visible {
        opacity: 1;
        pointer-events: auto;
    }

    .menu-panel-footer {
        display: block;
        border-top: 1px solid #e3efff;
        padding: 12px var(--drawer-pad-x) 14px;
        background: linear-gradient(180deg, #ffffff 0%, #f5faff 100%);
    }

    .menu-panel-footer p {
        margin: 0 0 10px;
        color: #2f618f;
        font-size: 13px;
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }

    .menu-panel-footer p svg.icon {
        color: #1a6ab5;
    }

    .menu-panel-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .menu-panel-actions .btn {
        text-align: center;
        border-radius: 10px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .about-v2-images {
        grid-template-columns: 1fr;
    }

    .service-v2-card {
        grid-template-columns: 1fr;
    }

    .service-v2-card img {
        height: 170px;
    }

    .services-v3-item {
        grid-template-columns: 1fr;
    }

    .listing-card {
        grid-template-columns: 1fr;
    }

    .listing-card img {
        height: 180px;
    }

    .services-v3-item img {
        height: 170px;
    }

    .detail-hero-image img {
        height: 250px;
    }

    .about-page-hero-image img {
        height: 250px;
    }

    .about-page-kpis {
        grid-template-columns: 1fr;
    }

    .faq-side {
        position: static;
    }

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

    .rating-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .review-slider {
        padding-left: 14px;
        padding-right: 14px;
    }

    .review-nav {
        display: none;
    }

    .review-slider .review-card {
        flex: 0 0 50%;
    }
}

@media (max-width: 768px) {
    .hero-v2 {
        background:
            linear-gradient(100deg, rgba(4, 44, 83, 0.92) 0%, rgba(4, 44, 83, 0.82) 100%),
            url("slider-1.webp") center/cover no-repeat;
    }

    body {
        padding-bottom: 132px;
    }

    .topbar-actions {
        display: none;
    }

    .slider-nav {
        display: none;
    }

    .home-slider {
        min-height: 360px;
    }

    .mobile-sticky-cta {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 120;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
        pointer-events: none;
    }

    .sticky-whatsapp,
    .sticky-call {
        pointer-events: auto;
        width: min(420px, 100%);
        text-align: center;
        font-weight: 800;
        border-radius: 12px;
        padding: 13px 14px;
        box-shadow: 0 10px 22px rgba(4, 44, 83, 0.24);
    }

    .sticky-whatsapp {
        background: #11a63a;
        color: #ffffff;
    }

    .sticky-call {
        background: var(--primary-dark);
        color: #ffffff;
    }

    .sticky-whatsapp svg.icon,
    .sticky-call svg.icon {
        margin-right: 6px;
    }

    .review-slider .review-card {
        flex: 0 0 100%;
    }

    .before-after-pair {
        grid-template-columns: 1fr;
    }

    .before-after-cell img {
        height: 220px;
    }

    .work-video-grid {
        grid-template-columns: 1fr;
    }

    .topbar-inner p {
        font-size: 13px;
    }
}
