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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%
}

body {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.55;
    color: #1a1a1a;
    background: #fff;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased
}

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

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

button {
    font: inherit;
    cursor: pointer;
    border: 0;
    background: transparent
}

.skip {
    position: absolute;
    left: -9999px;
    top: 0;
    background: #E63946;
    color: #fff;
    padding: 10px 16px;
    z-index: 9999
}

.skip:focus {
    left: 8px;
    top: 8px
}

.wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 22px;
    border-radius: 10px;
    font-weight: 700;
    font-size: .95rem;
    letter-spacing: .01em;
    transition: transform .15s, box-shadow .15s;
    white-space: nowrap
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, .12)
}

.btn-wa {
    background: #25D366;
    color: #0a2e15
}

.btn-call {
    background: #E63946;
    color: #fff
}

.btn-ghost {
    background: transparent;
    color: #1a1a1a;
    border: 1.5px solid #d4d4d4
}

.btn-ghost:hover {
    border-color: #E63946;
    color: #E63946
}

.topbar {
    background: #0e1116;
    color: #e6e6e6;
    font-size: .82rem
}

.topbar .wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-block: 8px;
    flex-wrap: wrap;
    gap: 8px
}

.topbar a {
    color: #F4A261;
    font-weight: 600
}

.topbar a:hover {
    color: #fff
}

.topbar-left {
    display: flex;
    gap: 18px;
    align-items: center;
    flex-wrap: wrap
}

.topbar-right {
    display: flex;
    gap: 14px;
    align-items: center
}

.header {
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 50;
    border-bottom: 1px solid #ececec;
    box-shadow: 0 1px 0 rgba(0, 0, 0, .02)
}

.header .wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-block: 14px;
    gap: 16px
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    font-size: 1.15rem;
    color: #0e1116
}

.logo svg {
    flex-shrink: 0
}

.logo b {
    color: #E63946
}

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

.nav a {
    padding: 10px 14px;
    font-weight: 600;
    font-size: .92rem;
    color: #333;
    border-radius: 8px;
    transition: background .15s
}

.nav a:hover,
.nav a[aria-current="page"] {
    background: #fdf3f4;
    color: #E63946
}

.nav .has-sub {
    position: relative
}

.nav .has-sub>a::after {
    content: " ▾";
    color: #999;
    font-size: .75em
}

.subnav {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 260px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .12);
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 8px;
    display: none
}

.has-sub:hover .subnav,
.has-sub:focus-within .subnav {
    display: block
}

.subnav a {
    display: block;
    padding: 10px 12px;
    border-radius: 6px;
    font-size: .88rem;
    font-weight: 500
}

.subnav a:hover {
    background: #fdf3f4;
    color: #E63946
}

.lang-switch {
    display: flex;
    gap: 4px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden
}

.lang-switch button {
    padding: 8px 12px;
    font-weight: 700;
    font-size: .82rem;
    color: #555;
    transition: background .15s
}

.lang-switch button[aria-pressed="true"] {
    background: #E63946;
    color: #fff
}

.header-cta {
    display: flex;
    gap: 10px;
    align-items: center
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background: #f5f5f5
}

.menu-toggle:hover {
    background: #fdf3f4
}

.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #fff 0%, #fff5f3 60%, #ffe8d9 100%);
    padding: 60px 0 40px
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 48px;
    align-items: center
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #E63946;
    color: #fff;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 18px
}

.hero-eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
    animation: pulse 1.4s infinite
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1
    }
    50% {
        opacity: .3
    }
}

.hero h1 {
    font-size: clamp(2rem, 4.6vw, 3.4rem);
    line-height: 1.08;
    font-weight: 900;
    color: #0e1116;
    letter-spacing: -.02em;
    margin-bottom: 18px
}

.hero h1 span {
    color: #E63946
}

.hero-lede {
    font-size: 1.08rem;
    color: #444;
    margin-bottom: 24px;
    max-width: 560px
}

.hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    color: #555;
    font-size: .86rem;
    font-weight: 600
}

.hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 6px
}

.hero-trust svg {
    flex-shrink: 0;
    color: #10a060
}

.hero-img-wrap {
    position: relative
}

.hero-img {
    aspect-ratio: 4/3;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 22px 60px -22px rgba(230, 57, 70, .45)
}

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

.hero-badge {
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border-radius: 14px;
    padding: 14px 20px;
    display: flex;
    gap: 12px;
    align-items: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
    min-width: 280px
}

.hero-badge .num {
    font-size: 1.6rem;
    font-weight: 900;
    color: #E63946;
    line-height: 1
}

.hero-badge .lbl {
    font-size: .78rem;
    color: #555;
    line-height: 1.3
}

.crumbs {
    background: #fafafa;
    border-bottom: 1px solid #efefef;
    padding: 14px 0;
    font-size: .85rem;
    color: #666
}

.crumbs ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center
}

.crumbs li {
    display: flex;
    align-items: center;
    gap: 8px
}

.crumbs li::after {
    content: "›";
    color: #bbb;
    margin-left: 8px
}

.crumbs li:last-child::after {
    content: ""
}

.crumbs a {
    color: #666;
    font-weight: 600
}

.crumbs a:hover {
    color: #E63946
}

.crumbs li[aria-current="page"] {
    color: #0e1116;
    font-weight: 700
}

section {
    padding: 64px 0
}

.eyebrow {
    color: #E63946;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-size: .78rem;
    margin-bottom: 8px
}

.h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    line-height: 1.15;
    color: #0e1116;
    font-weight: 900;
    margin-bottom: 14px;
    letter-spacing: -.015em
}

.h3 {
    font-size: clamp(1.2rem, 2vw, 1.55rem);
    font-weight: 800;
    color: #0e1116;
    line-height: 1.25;
    margin-bottom: 10px
}

.section-intro {
    max-width: 680px;
    color: #555;
    margin-bottom: 36px;
    font-size: 1.02rem
}

.section-head {
    margin-bottom: 32px;
    text-align: center
}

.section-head .h2 {
    margin-inline: auto
}

.section-head .section-intro {
    margin-inline: auto
}

.lead {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.65;
    max-width: 760px
}

.prose {
    max-width: 880px;
    margin: 0 auto;
    color: #333;
    font-size: 1rem;
    line-height: 1.7
}

.prose p {
    margin-bottom: 14px
}

.prose h3 {
    font-size: 1.3rem;
    color: #0e1116;
    font-weight: 800;
    margin-top: 28px;
    margin-bottom: 10px
}

.prose ul,
.prose ol {
    padding-left: 22px;
    margin: 10px 0 14px
}

.prose li {
    margin-bottom: 6px
}

.services {
    background: #fafafa;
    border-block: 1px solid #efefef
}

.svc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px
}

.svc-card {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 14px;
    padding: 24px;
    transition: all .2s;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-decoration: none;
    color: inherit
}

.svc-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(230, 57, 70, .1);
    border-color: #fbcdd1
}

.svc-icon {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    background: #fdf3f4;
    display: grid;
    place-items: center;
    color: #E63946
}

.svc-card h3 {
    font-size: 1.1rem;
    color: #0e1116;
    font-weight: 800;
    margin-top: 6px
}

.svc-card p {
    color: #666;
    font-size: .92rem;
    flex-grow: 1
}

.svc-card .more {
    color: #E63946;
    font-weight: 700;
    font-size: .88rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px
}

.svc-card:hover .more {
    transform: translateX(2px)
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
    position: relative
}

.step {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 14px;
    padding: 28px 24px;
    position: relative
}

.step-num {
    position: absolute;
    top: -18px;
    left: 24px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #E63946;
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 900;
    font-size: 1.1rem;
    box-shadow: 0 6px 14px rgba(230, 57, 70, .4)
}

.step h3 {
    margin-top: 14px;
    font-size: 1.1rem;
    color: #0e1116
}

.step p {
    color: #555;
    font-size: .92rem;
    margin-top: 8px
}

.why {
    background: linear-gradient(180deg, #fff 0%, #fafafa 100%)
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px
}

.why-item {
    display: flex;
    gap: 14px;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 12px;
    padding: 18px
}

.why-item .icon {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: #fdf3f4;
    display: grid;
    place-items: center;
    color: #E63946
}

.why-item h4 {
    font-size: 1rem;
    color: #0e1116;
    margin-bottom: 4px
}

.why-item p {
    color: #666;
    font-size: .86rem;
    line-height: 1.5
}

.gallery-section {
    background: #fafafa;
    border-block: 1px solid #efefef
}

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

.gal-item {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 16/9;
    background: #ddd;
    cursor: zoom-in;
    transition: transform .25s, box-shadow .25s
}

.gal-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, .12)
}

.gal-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s
}

.gal-item:hover img {
    transform: scale(1.05)
}

.gal-cap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 14px 16px;
    background: linear-gradient(0deg, rgba(10, 10, 15, .85) 0%, transparent 100%);
    color: #fff;
    font-weight: 700;
    font-size: .92rem;
    line-height: 1.3;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 10px
}

.gal-cap small {
    display: block;
    font-weight: 500;
    font-size: .78rem;
    color: #F4A261;
    margin-top: 2px;
    letter-spacing: .04em
}

.gal-cap .gal-arrow {
    flex-shrink: 0;
    color: #F4A261
}

.gal-tall {
    grid-row: span 2;
    aspect-ratio: auto
}

.gal-cta {
    text-align: center;
    margin-top: 30px
}

.lb {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 15, .96);
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 30px;
    flex-direction: column;
    gap: 14px
}

.lb.open {
    display: flex
}

.lb img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .5)
}

.lb-cap {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    max-width: 800px
}

.lb-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 1.4rem;
    font-weight: 700;
    cursor: pointer
}

.lb-close:hover {
    background: #E63946
}

.lb-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 1.6rem;
    font-weight: 700;
    cursor: pointer
}

.lb-nav:hover {
    background: #E63946
}

.lb-prev {
    left: 20px
}

.lb-next {
    right: 20px
}

@media (max-width:768px) {
    .lb-nav {
        width: 40px;
        height: 40px
    }
}

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

@media (max-width:560px) {
    .gal-grid {
        grid-template-columns: 1fr
    }
}

.areas-section {
    background: #0e1116;
    color: #e6e6e6;
    border-block: 1px solid #1a1f28
}

.areas-section .h2 {
    color: #fff
}

.areas-section .section-intro {
    color: #a8b0bd
}

.areas-section .eyebrow {
    color: #F4A261
}

.cluster-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px
}

.cluster {
    background: #161b22;
    border: 1px solid #1f2630;
    border-radius: 12px;
    padding: 18px;
    transition: all .2s;
    text-decoration: none;
    color: inherit;
    display: block
}

.cluster:hover {
    border-color: #F4A261;
    background: #1a2030;
    transform: translateY(-2px)
}

.cluster h4 {
    color: #fff;
    font-size: 1.02rem;
    margin-bottom: 6px
}

.cluster .areas {
    color: #9ba3b0;
    font-size: .84rem;
    line-height: 1.55
}

.cluster .more {
    color: #F4A261;
    font-size: .82rem;
    font-weight: 700;
    margin-top: 10px;
    display: inline-block
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 18px
}

.review {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 14px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.review .stars {
    color: #fbbf24;
    font-size: 1rem;
    letter-spacing: 2px
}

.review p {
    color: #444;
    font-size: .95rem;
    font-style: italic;
    flex-grow: 1
}

.review-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f0f0f0;
    padding-top: 12px;
    margin-top: auto
}

.review-author b {
    color: #0e1116;
    font-size: .92rem
}

.review-author span {
    color: #888;
    font-size: .82rem
}

.gbp-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 999px;
    padding: 8px 14px;
    font-size: .86rem;
    font-weight: 600;
    margin-top: 18px
}

.faq {
    background: #fafafa
}

.faq-list {
    max-width: 880px;
    margin: 0 auto
}

.faq-item {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 12px;
    margin-bottom: 10px;
    overflow: hidden
}

.faq-q {
    width: 100%;
    text-align: left;
    padding: 18px 22px;
    font-weight: 700;
    font-size: 1rem;
    color: #0e1116;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px
}

.faq-q:hover {
    background: #fdf3f4
}

.faq-q::after {
    content: "+";
    font-size: 1.4rem;
    color: #E63946;
    font-weight: 400;
    flex-shrink: 0;
    transition: transform .2s
}

.faq-item[open] .faq-q::after {
    content: "−"
}

.faq-a {
    padding: 0 22px 20px;
    color: #555;
    font-size: .95rem;
    line-height: 1.65
}

.contact-section {
    background: #0e1116;
    color: #e6e6e6
}

.contact-section .h2,
.contact-section .eyebrow {
    color: #fff
}

.contact-section .eyebrow {
    color: #F4A261
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 32px;
    align-items: stretch
}

.contact-info {
    background: #161b22;
    border: 1px solid #1f2630;
    border-radius: 14px;
    padding: 30px
}

.contact-info h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 14px
}

.contact-row {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 12px 0;
    border-top: 1px solid #1f2630
}

.contact-row:first-of-type {
    border-top: 0
}

.contact-row .icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #E63946;
    color: #fff;
    display: grid;
    place-items: center;
    flex-shrink: 0
}

.contact-row b {
    color: #fff;
    display: block;
    font-size: .85rem;
    margin-bottom: 2px
}

.contact-row a,
.contact-row span {
    color: #cfd2dd;
    font-size: .95rem;
    font-weight: 600
}

.contact-row a:hover {
    color: #F4A261
}

.contact-cta {
    margin-top: 18px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.map-wrap {
    border-radius: 14px;
    overflow: hidden;
    min-height: 380px;
    border: 1px solid #1f2630
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    min-height: 380px;
    display: block;
    border: 0;
    filter: saturate(.9) brightness(.92)
}

.cta-banner {
    background: linear-gradient(135deg, #E63946 0%, #F4A261 100%);
    color: #fff;
    text-align: center;
    padding: 64px 20px
}

.cta-banner h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 900;
    margin-bottom: 10px;
    letter-spacing: -.02em
}

.cta-banner p {
    color: rgba(255, 255, 255, .92);
    max-width: 620px;
    margin: 0 auto 22px;
    font-size: 1.05rem
}

.cta-banner .btn {
    background: #fff;
    color: #E63946
}

.cta-banner .btn-call {
    background: #0e1116;
    color: #fff
}

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

.cta-banner .row {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap
}

.rel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px
}

.rel-card {
    background: #fff;
    border: 1px solid #ececec;
    border-left: 4px solid #E63946;
    border-radius: 12px;
    padding: 18px;
    color: inherit;
    text-decoration: none;
    transition: all .2s
}

.rel-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .08);
    border-left-color: #F4A261
}

.rel-card h4 {
    color: #0e1116;
    font-size: 1.02rem;
    font-weight: 800;
    margin-bottom: 5px
}

.rel-card p {
    color: #666;
    font-size: .86rem
}

.rel-card .more {
    color: #E63946;
    font-size: .82rem;
    font-weight: 700;
    margin-top: 10px;
    display: inline-flex;
    gap: 4px
}

.qa-block {
    background: #fff8f3;
    border-left: 5px solid #F4A261;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 32px;
    max-width: 880px
}

.qa-block h2,
.qa-block h3 {
    color: #0e1116;
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 8px
}

.qa-block p {
    color: #333;
    font-size: .97rem;
    line-height: 1.65
}

.long-article-section {
    background: #fafafa;
    border-block: 1px solid #efefef;
    padding: 48px 0
}

.long-article-wrap {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px
}

.long-article-head {
    text-align: center;
    margin-bottom: 24px
}

.long-article-head .eyebrow {
    color: #E63946;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-size: .78rem;
    margin-bottom: 6px
}

.long-article-head h2 {
    font-size: clamp(1.4rem, 2.6vw, 2rem);
    color: #0e1116;
    font-weight: 900;
    margin-bottom: 8px;
    letter-spacing: -.015em
}

.long-article-head p {
    color: #666;
    font-size: .95rem;
    max-width: 720px;
    margin: 0 auto
}

.long-article-body {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 14px;
    padding: 28px 32px;
    max-height: 640px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #E63946 #f4f4f4;
    box-shadow: inset 0 -22px 22px -22px rgba(0, 0, 0, .08), inset 0 22px 22px -22px rgba(0, 0, 0, .04)
}

.long-article-body::-webkit-scrollbar {
    width: 8px
}

.long-article-body::-webkit-scrollbar-track {
    background: #f4f4f4;
    border-radius: 4px
}

.long-article-body::-webkit-scrollbar-thumb {
    background: #E63946;
    border-radius: 4px
}

.long-article-body::-webkit-scrollbar-thumb:hover {
    background: #c42d3b
}

.long-article-body h3 {
    font-size: 1.18rem;
    color: #0e1116;
    font-weight: 800;
    margin: 22px 0 8px;
    line-height: 1.3
}

.long-article-body h3:first-child {
    margin-top: 0
}

.long-article-body h4 {
    font-size: 1.02rem;
    color: #0e1116;
    font-weight: 700;
    margin: 18px 0 6px
}

.long-article-body p {
    color: #333;
    font-size: .97rem;
    line-height: 1.72;
    margin-bottom: 12px
}

.long-article-body ul,
.long-article-body ol {
    padding-left: 22px;
    margin: 8px 0 14px;
    color: #333
}

.long-article-body li {
    margin-bottom: 6px;
    line-height: 1.65
}

.long-article-body strong {
    color: #0e1116
}

.long-article-body em {
    color: #E63946;
    font-style: normal;
    font-weight: 600
}

.long-article-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 14px 0;
    font-size: .92rem
}

.long-article-body th,
.long-article-body td {
    padding: 8px 10px;
    border-bottom: 1px solid #eee;
    text-align: left
}

.long-article-body th {
    background: #fafafa;
    color: #0e1116;
    font-weight: 800
}

.long-article-meter {
    font-size: .76rem;
    color: #888;
    text-align: right;
    margin-top: 6px;
    font-style: italic
}

@media (max-width:640px) {
    .long-article-body {
        padding: 20px 18px;
        max-height: 540px
    }
    .long-article-body h3 {
        font-size: 1.05rem
    }
}

.cmp {
    width: 100%;
    border-collapse: collapse;
    font-size: .92rem;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 12px;
    overflow: hidden
}

.cmp th,
.cmp td {
    padding: 12px 14px;
    border-bottom: 1px solid #f0f0f0;
    text-align: left
}

.cmp th {
    background: #fafafa;
    color: #0e1116;
    font-weight: 800;
    font-size: .85rem
}

.cmp .yes {
    color: #10a060;
    font-weight: 700
}

.cmp .no {
    color: #bb1721;
    font-weight: 700
}

.variants-list {
    padding: 50px 0;
    background: #fafafa;
    border-top: 1px solid #ececec;
    content-visibility: auto;
    contain-intrinsic-size: auto 500px
}

.variants-list .h2 {
    margin-bottom: 8px
}

.variants-list .section-intro {
    margin-bottom: 22px;
    color: #5b6470;
    max-width: 760px
}

.variants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 14px;
    margin-bottom: 18px
}

.variants-card {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px 18px;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 10px;
    color: #0e1116;
    transition: transform .15s, box-shadow .15s, border-color .15s
}

.variants-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, .06);
    border-color: #E63946
}

.variants-card b {
    color: #0e1116;
    font-size: .98rem
}

.variants-card span {
    color: #5b6470;
    font-size: .85rem;
    line-height: 1.45
}

.other-emirates {
    padding: 50px 0;
    background: #fafafa;
    border-top: 1px solid #ececec;
    content-visibility: auto;
    contain-intrinsic-size: auto 400px
}

.emirate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 14px
}

.emirate-card {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px 18px;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 10px;
    color: #0e1116;
    transition: transform .15s, border-color .15s
}

.emirate-card:hover {
    transform: translateY(-2px);
    border-color: #E63946
}

.emirate-card b {
    color: #0e1116
}

.emirate-card span {
    color: #5b6470;
    font-size: .85rem
}

#cookie-consent {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 90;
    background: #0e1116;
    color: #e8eaf0;
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .35);
    max-width: 520px;
    margin-left: auto
}

#cookie-consent .cc-inner {
    padding: 18px 20px
}

#cookie-consent .cc-h {
    font-weight: 800;
    font-size: 1rem;
    color: #fff;
    margin-bottom: 6px
}

#cookie-consent .cc-p {
    font-size: .84rem;
    line-height: 1.55;
    color: #bcc3cf;
    margin-bottom: 14px
}

#cookie-consent .cc-p a {
    color: #F4A261;
    text-decoration: underline
}

#cookie-consent .cc-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

#cookie-consent .btn {
    padding: 10px 16px;
    font-size: .85rem
}

#cookie-consent .btn-ghost {
    background: transparent;
    color: #bcc3cf;
    border: 1px solid #2a2f38
}

#cookie-consent .btn-ghost:hover {
    background: #1a1f28;
    color: #fff
}

@media (max-width:640px) {
    #cookie-consent {
        left: 8px;
        right: 8px;
        bottom: 72px;
        max-width: none
    }
}

html,
body {
    max-width: 100%;
    overflow-x: hidden
}

img,
video,
iframe {
    max-width: 100%
}

.megalink {
    background: #0e1116;
    color: #a8b0bd;
    padding: 34px 0 30px;
    font-size: .86rem;
    border-top: 1px solid #1c222c;
    content-visibility: auto;
    contain-intrinsic-size: auto 600px
}

.megalink .megalink-h {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 14px;
    letter-spacing: .02em
}

.megalink .megalink-row {
    margin-bottom: 10px;
    line-height: 1.85
}

.megalink .megalink-row b {
    color: #fff;
    font-weight: 700;
    margin-right: 6px
}

.megalink a {
    color: #a8b0bd;
    text-decoration: none
}

.megalink a:hover {
    color: #F4A261;
    text-decoration: underline
}

footer.foot {
    background: #0a0d12;
    color: #a8b0bd;
    padding: 50px 0 24px;
    font-size: .92rem;
    content-visibility: auto;
    contain-intrinsic-size: auto 400px
}

footer.foot .grid4 {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 36px
}

footer.foot h4 {
    color: #fff;
    font-size: .98rem;
    margin-bottom: 14px;
    letter-spacing: .03em
}

footer.foot ul {
    list-style: none
}

footer.foot li {
    margin-bottom: 8px
}

footer.foot a {
    color: #a8b0bd
}

footer.foot a:hover {
    color: #F4A261
}

footer.foot .brand {
    font-weight: 900;
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px
}

footer.foot .brand b {
    color: #E63946
}

footer.foot .nap {
    color: #cfd2dd;
    line-height: 1.7
}

footer.foot .nap a {
    color: #F4A261;
    font-weight: 600
}

footer.foot .copy {
    border-top: 1px solid #1a1f28;
    margin-top: 36px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    font-size: .82rem;
    color: #666
}

.wa-fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #25D366;
    display: grid;
    place-items: center;
    color: #fff;
    z-index: 55;
    box-shadow: 0 10px 28px rgba(37, 211, 102, .45);
    animation: wa-pulse 2.6s infinite
}

@keyframes wa-pulse {
    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 10px 28px rgba(37, 211, 102, .45)
    }
    50% {
        transform: scale(1.07);
        box-shadow: 0 12px 36px rgba(37, 211, 102, .7)
    }
}

.wa-fab:hover {
    transform: scale(1.08)
}

.mb-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
    grid-template-columns: 1fr 1fr;
    z-index: 60;
    box-shadow: 0 -6px 20px rgba(0, 0, 0, .25)
}

.mb-bar a {
    padding: 14px 8px;
    text-align: center;
    font-weight: 800;
    font-size: .95rem;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px
}

.mb-bar .bb-call {
    background: #E63946
}

.mb-bar .bb-wa {
    background: #25D366;
    color: #0a2e15
}

@media (max-width:980px) {
    .nav,
    .lang-switch {
        display: none
    }
    .menu-toggle {
        display: grid;
        place-items: center
    }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px
    }
    .hero {
        padding: 40px 0 60px
    }
    .topbar-left,
    .topbar-right {
        font-size: .74rem;
        gap: 10px
    }
    .topbar-left span {
        display: none
    }
    .topbar-left span:first-child {
        display: inline
    }
    .contact-grid {
        grid-template-columns: 1fr
    }
    footer.foot .grid4 {
        grid-template-columns: 1fr 1fr;
        gap: 24px
    }
}

@media (max-width:640px) {
    section {
        padding: 48px 0
    }
    footer.foot .grid4 {
        grid-template-columns: 1fr;
        gap: 20px
    }
    .wa-fab {
        bottom: 80px;
        width: 54px;
        height: 54px
    }
    .mb-bar {
        display: grid
    }
    body {
        padding-bottom: 62px
    }
    .hero h1 {
        font-size: 1.8rem
    }
    .header-cta .btn {
        padding: 10px 14px;
        font-size: .85rem
    }
}

body.m-open .nav {
    display: flex;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: #fff;
    padding: 16px;
    border-bottom: 1px solid #ececec;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .1)
}

body.m-open .has-sub {
    width: 100%
}

body.m-open .subnav {
    position: static;
    display: block;
    box-shadow: none;
    border: 0;
    padding-left: 14px
}