:root {
    --rd-bg: #f2f6fb;
    --rd-bg-soft: #eef4fb;
    --rd-surface: #ffffff;
    --rd-surface-alt: #f7fbff;
    --rd-text: #12253f;
    --rd-muted: #5f7086;
    --rd-line: #dbe4ed;
    --rd-navy: #183459;
    --rd-navy-strong: #0f2440;
    --rd-orange: #f59f18;
    --rd-teal: #3f8fc7;
    --rd-shadow: 0 18px 50px rgba(19, 37, 63, 0.10);
    --rd-shadow-soft: 0 12px 30px rgba(24, 52, 89, 0.08);
    --rd-radius-xl: 36px;
    --rd-radius-lg: 28px;
    --rd-radius-md: 20px;
    --rd-container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: "Manrope", system-ui, sans-serif;
    color: var(--rd-text);
    background:
        radial-gradient(circle at top left, rgba(63, 143, 199, 0.18), transparent 24%),
        radial-gradient(circle at 85% 0%, rgba(245, 159, 24, 0.18), transparent 18%),
        radial-gradient(circle at 50% 25%, rgba(24, 52, 89, 0.06), transparent 24%),
        linear-gradient(180deg, #fbfcff 0%, var(--rd-bg) 100%);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container {
    width: min(var(--rd-container), calc(100% - 32px));
    max-width: none;
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
}
.bg-light,
.section-muted { background: transparent; }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
    background: rgba(255, 255, 255, 0.90);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(24, 52, 89, 0.06);
    box-shadow: 0 10px 30px rgba(24, 52, 89, 0.05);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 82px;
}

.logo {
    display: inline-flex;
    align-items: center;
    min-width: 48px;
    min-height: 48px;
    padding: 8px 0;
}

.logo img { width: 168px; height: auto; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li { list-style: none; margin: 0; padding: 0; }

.nav-links a {
    font-weight: 700;
    color: var(--rd-navy);
    line-height: normal;
    transition: color .2s ease;
}

.nav-links a:hover,
.nav-links a.active { color: var(--rd-teal); }

.nav-links a.btn-primary,
.nav-links a.btn-primary:hover,
.nav-links a.btn-primary.active,
.mobile-only a.btn-primary,
.mobile-only a.btn-primary:hover,
.mobile-only a.btn-primary.active {
    color: #fff;
}

.hamburger {
    display: none;
    border: none;
    background: none;
    color: var(--rd-navy);
    font-size: 24px;
}

.mobile-only { display: none; }
.btn.nav-btn { display: none; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 14px 24px;
    font-weight: 800;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
    cursor: pointer;
    white-space: nowrap;
    font-family: inherit;
}

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

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, #183459 0%, #255489 52%, #3f8fc7 100%);
    box-shadow: 0 16px 34px rgba(24, 52, 89, 0.18);
}

.btn-secondary {
    color: var(--rd-navy);
    background: linear-gradient(135deg, #ffffff 0%, #f3f8ff 100%);
    border-color: rgba(63, 143, 199, 0.16);
    box-shadow: 0 10px 24px rgba(24, 52, 89, 0.07);
}

.btn-outline {
    color: var(--rd-navy);
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(24, 52, 89, 0.14);
    box-shadow: 0 8px 18px rgba(24, 52, 89, 0.06);
}

.btn-white {
    color: var(--rd-navy);
    background: #fff;
    box-shadow: 0 12px 24px rgba(24, 52, 89, 0.08);
}

.btn-outline-white {
    color: #fff;
    background: rgba(15, 36, 64, 0.14);
    border-color: rgba(255, 255, 255, 0.48);
}

.btn-block { width: 100%; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(24, 52, 89, 0.08), rgba(63, 143, 199, 0.12) 58%, rgba(245, 159, 24, 0.16));
    color: var(--rd-navy);
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.01em;
}

.hero {
    padding: 44px 0 28px;
    color: inherit;
    background: transparent;
    min-height: 0;
    text-align: left;
}

.hero-shell,
.section-shell,
.cta-panel {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(24, 52, 89, 0.08);
    box-shadow: var(--rd-shadow);
}

.hero-shell {
    background:
        radial-gradient(circle at top right, rgba(245, 159, 24, 0.16), transparent 28%),
        radial-gradient(circle at left center, rgba(63, 143, 199, 0.14), transparent 34%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(242, 247, 253, 0.98));
    border-radius: var(--rd-radius-xl);
}

.hero-shell::before,
.hero-shell::after,
.section-shell::before,
.cta-panel::before {
    content: "";
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
}

.hero-shell::before {
    right: -90px;
    top: -90px;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(245, 159, 24, 0.22), transparent 68%);
}

.hero-shell::after {
    left: -70px;
    bottom: -80px;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(63, 143, 199, 0.18), transparent 68%);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
    gap: 28px;
    padding: 32px;
    align-items: stretch;
}

.hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 18px;
    min-width: 0;
    padding-top: 4px;
}

.hero-copy h1,
.section-header h2,
.cta-panel h2,
.modal-title {
    color: var(--rd-navy-strong);
}

.hero-copy h1 {
    margin: 0;
    font-family: "Fraunces", Georgia, serif;
    font-size: clamp(2.4rem, 4.7vw, 4.45rem);
    font-weight: 600;
    line-height: 0.96;
    letter-spacing: -0.04em;
    max-width: 11ch;
}

.hero-copy p {
    margin: 0;
    color: var(--rd-muted);
    max-width: 60ch;
    font-size: 1.05rem;
    line-height: 1.7;
}

.hero-actions,
.cta-actions,
.meta-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

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

.fact-card,
.metric-card,
.pricing-card,
.feature-card,
.service-card,
.region-card,
.media-card {
    background: #fff;
    border: 1px solid rgba(24, 52, 89, 0.08);
    box-shadow: var(--rd-shadow-soft);
}

.fact-card {
    border-radius: 20px;
    padding: 18px;
}

.fact-card:nth-child(1) { background: linear-gradient(135deg, #fff8ec 0%, #ffffff 100%); }
.fact-card:nth-child(2) { background: linear-gradient(135deg, #edf6ff 0%, #ffffff 100%); }
.fact-card:nth-child(3) { background: linear-gradient(135deg, #eef3fb 0%, #ffffff 100%); }

.fact-card strong {
    display: block;
    margin-bottom: 6px;
    color: var(--rd-navy-strong);
    font-size: 1.02rem;
}

.fact-card span,
.price-note,
.metric-card p,
.feature-card p,
.service-body p,
.section-intro,
.section-header p,
.footer-links a,
.footer-areas p,
.footer-info p,
.media-card p {
    color: var(--rd-muted);
}

.hero-media {
    display: grid;
    grid-template-rows: 1fr auto;
    gap: 16px;
    min-width: 0;
}

.hero-media-main {
    position: relative;
    overflow: hidden;
    min-height: 470px;
    border-radius: 30px;
}

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

.hero-media-badge {
    position: absolute;
    left: 20px;
    bottom: 20px;
    padding: 16px 18px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(243, 249, 255, 0.94));
    border: 1px solid rgba(24, 52, 89, 0.08);
    box-shadow: 0 16px 34px rgba(24, 52, 89, 0.12);
    max-width: 320px;
}

.hero-media-badge strong,
.media-card strong,
.hero-media-small strong,
.service-body h3,
.feature-card h3,
.region-card h3,
.pricing-card h3 {
    display: block;
    color: var(--rd-navy-strong);
}

.hero-media-badge strong,
.media-card strong,
.hero-media-small strong { margin-bottom: 4px; }

.hero-media-badge span,
.media-card span,
.hero-media-small span,
.region-card span {
    display: block;
    color: var(--rd-muted);
    font-size: 0.92rem;
    line-height: 1.5;
}

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

.media-card,
.hero-media-small {
    display: block;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid rgba(24, 52, 89, 0.08);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--rd-shadow-soft);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

a.media-card:hover,
a.hero-media-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(24, 52, 89, 0.12);
    border-color: rgba(63, 143, 199, 0.22);
}

.media-card img,
.hero-media-small img {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.media-card-copy,
.hero-media-small > div { padding: 14px 16px 16px; }

.section {
    padding: 34px 0;
}

.section-shell {
    border-radius: 32px;
    padding: 28px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 255, 0.96));
}

.section-shell--soft {
    background: linear-gradient(135deg, rgba(237, 246, 255, 0.75), rgba(255, 244, 224, 0.52), rgba(255, 255, 255, 0.95));
}

.section-shell::before {
    top: -80px;
    right: -60px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(245, 159, 24, 0.16), transparent 68%);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
    margin-bottom: 22px;
}

.section-header--center {
    align-items: center;
    text-align: center;
    flex-direction: column;
}

.section-kicker {
    display: block;
    margin-bottom: 10px;
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--rd-teal);
}

.section-header h2,
.cta-panel h2 {
    margin: 0;
    font-family: "Fraunces", Georgia, serif;
    font-size: clamp(2rem, 4vw, 3.1rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.section-header p,
.cta-panel p {
    margin: 0;
    max-width: 60ch;
    line-height: 1.6;
}

.metric-grid,
.feature-grid,
.service-grid,
.region-grid,
.photo-grid {
    display: grid;
    gap: 18px;
}

.metric-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.feature-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.service-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.region-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.photo-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.metric-card,
.feature-card,
.service-card,
.region-card {
    border-radius: var(--rd-lg, 28px);
}

.metric-card,
.feature-card,
.region-card {
    padding: 24px;
}

.metric-card:nth-child(1) { background: linear-gradient(135deg, #edf6ff 0%, #ffffff 100%); }
.metric-card:nth-child(2) { background: linear-gradient(135deg, #fff2dc 0%, #ffffff 100%); }
.metric-card:nth-child(3) { background: linear-gradient(135deg, #eef3fb 0%, #ffffff 100%); }
.metric-card:nth-child(4) { background: linear-gradient(135deg, #eef9f6 0%, #ffffff 100%); }

.metric-card strong {
    display: block;
    margin-bottom: 6px;
    color: var(--rd-navy-strong);
    font-size: 1.8rem;
}

.metric-card p { margin: 0; line-height: 1.55; }

.feature-card,
.region-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.feature-icon {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(24, 52, 89, 0.09), rgba(63, 143, 199, 0.14), rgba(245, 159, 24, 0.18));
    color: var(--rd-navy);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 18px;
}

.feature-card h3,
.service-body h3,
.region-card h3,
.pricing-card h3 {
    margin: 0 0 10px;
    font-size: 1.45rem;
    line-height: normal;
}

.feature-card p,
.service-body p,
.region-card p {
    margin: 0;
    line-height: 1.65;
}

.feature-card .btn,
.region-card .btn,
.service-card .btn {
    margin-top: auto;
}

.service-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.service-card:nth-child(1) { background: linear-gradient(180deg, #ffffff 0%, #f5faff 100%); }
.service-card:nth-child(2) { background: linear-gradient(180deg, #ffffff 0%, #fff7eb 100%); }
.service-card:nth-child(3) { background: linear-gradient(180deg, #ffffff 0%, #f3f7fd 100%); }

.service-media {
    position: relative;
    overflow: hidden;
    min-height: 230px;
}

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

.service-body {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 24px;
    min-height: 0;
}

.service-link-row,
.chip-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.service-link-row a,
.chip {
    color: var(--rd-navy);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.split-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
    gap: 22px;
    align-items: start;
}

.stack {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.check-list,
.pricing-list,
.modal-features {
    list-style: none;
    margin: 0;
    padding: 0;
}

.check-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 18px;
}

.check-list li:last-child { margin-bottom: 0; }

.check-list i,
.pricing-list i,
.modal-features i {
    color: var(--rd-teal);
    margin-top: 4px;
    flex: 0 0 auto;
}

.check-list strong {
    display: block;
    margin-bottom: 4px;
    color: var(--rd-navy-strong);
}

.pricing-card {
    border-radius: 28px;
    padding: 28px;
    background: linear-gradient(180deg, #ffffff 0%, #f6faff 100%);
}

.pricing-list li,
.modal-price-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(24, 52, 89, 0.08);
}

.pricing-list li:last-child,
.modal-price-row:last-child {
    border-bottom: none;
}

.pricing-list span:first-child,
.modal-price-row span:first-child {
    font-weight: 700;
    color: var(--rd-text);
}

.pricing-list span:last-child,
.modal-price-row span:last-child {
    font-weight: 800;
    color: var(--rd-navy-strong);
}

.price-note {
    margin: 14px 0 0;
    font-size: 0.92rem;
    line-height: 1.6;
}

.cta-panel {
    border-radius: 32px;
    padding: 32px;
    background:
        radial-gradient(circle at top right, rgba(245, 159, 24, 0.16), transparent 24%),
        linear-gradient(135deg, rgba(16, 36, 64, 0.98), rgba(33, 74, 122, 0.98));
    color: rgba(255, 255, 255, 0.95);
}

.cta-panel::before {
    bottom: -70px;
    left: -40px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(63, 143, 199, 0.18), transparent 68%);
}

.cta-panel h2,
.cta-panel p,
.cta-panel .chip { color: #fff; }
.cta-panel .chip { text-decoration-color: rgba(255,255,255,0.4); }

.region-card:nth-child(1) { background: linear-gradient(135deg, #eef5ff 0%, #ffffff 100%); }
.region-card:nth-child(2) { background: linear-gradient(135deg, #fff2dd 0%, #ffffff 100%); }
.region-card:nth-child(3) { background: linear-gradient(135deg, #edf9ff 0%, #ffffff 100%); }
.region-card:nth-child(4) { background: linear-gradient(135deg, #f3f6fd 0%, #ffffff 100%); }

.footer {
    padding: 28px 0 56px;
    margin-top: 0;
    background: transparent;
    color: var(--rd-text);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.9fr 1fr;
    gap: 18px;
    margin-bottom: 0;
}

.footer-panel {
    background: #fff;
    border: 1px solid rgba(24, 52, 89, 0.08);
    border-radius: 24px;
    padding: 22px;
    box-shadow: 0 10px 28px rgba(24, 52, 89, 0.06);
}

.footer-panel:nth-child(1) { background: linear-gradient(135deg, #edf6ff 0%, #ffffff 100%); }
.footer-panel:nth-child(2) { background: linear-gradient(135deg, #fff4e2 0%, #ffffff 100%); }
.footer-panel:nth-child(3) { background: linear-gradient(135deg, #f3f7fd 0%, #ffffff 100%); }

.footer-panel h4 {
    margin: 0 0 14px;
    color: var(--rd-navy-strong);
    line-height: normal;
}

.footer-panel p,
.footer-panel li {
    margin: 0 0 10px;
    color: var(--rd-muted);
    line-height: normal;
}

.footer-panel ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-panel a {
    color: var(--rd-navy);
    line-height: normal;
    text-decoration: underline;
    text-decoration-color: rgba(24, 52, 89, 0.24);
    text-underline-offset: 3px;
}

.footer-panel a:hover {
    color: var(--rd-teal);
    text-decoration-color: rgba(63, 143, 199, 0.45);
}

.footer-bottom {
    text-align: center;
    padding-top: 18px;
    color: #738198;
    font-size: 0.92rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom p + p {
    margin-top: 8px;
}

.footer-bottom a {
    color: var(--rd-navy);
    text-decoration: underline;
    text-decoration-color: rgba(24, 52, 89, 0.28);
    text-underline-offset: 3px;
}

.footer-bottom a:hover {
    color: var(--rd-teal);
    text-decoration-color: rgba(63, 143, 199, 0.5);
}

.cookie-settings-link {
    border: none;
    background: none;
    padding: 0;
    color: var(--rd-navy);
    font: inherit;
    text-decoration: underline;
    text-decoration-color: rgba(24, 52, 89, 0.28);
    text-underline-offset: 3px;
    cursor: pointer;
}

.cookie-settings-link:hover {
    color: var(--rd-teal);
    text-decoration-color: rgba(63, 143, 199, 0.5);
}

.gallery-shell {
    background:
        radial-gradient(circle at left top, rgba(245, 159, 24, 0.10), transparent 22%),
        linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid rgba(24, 52, 89, 0.08);
    border-radius: 30px;
    padding: 28px;
    box-shadow: 0 14px 36px rgba(24, 52, 89, 0.08);
}

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

.before-after-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 248, 255, 0.98));
    border: 1px solid rgba(24, 52, 89, 0.08);
    border-radius: 24px;
    padding: 16px;
    box-shadow: 0 10px 28px rgba(24, 52, 89, 0.08);
}

.before-after-media-link {
    display: block;
    border-radius: 18px;
    overflow: hidden;
    background: #dbe4ee;
}

.before-after-media-link img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background: #dbe4ee;
}

.ec-compare {
    position: relative;
    overflow: hidden;
}

.ec-compare-media {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.ec-compare-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.ec-compare-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 0;
    pointer-events: none;
    z-index: 2;
}

.ec-compare-handle::before {
    content: "";
    position: absolute;
    left: -1px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 0 0 1px rgba(24, 52, 89, 0.10);
}

.ec-compare-knob {
    position: absolute;
    left: -22px;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(24, 52, 89, 0.82);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.68);
    font-weight: 800;
    letter-spacing: -0.04em;
}

.ec-compare-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    pointer-events: none;
    z-index: 2;
}

.ec-compare-badge {
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(24, 52, 89, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: rgba(255, 255, 255, 0.96);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.ec-compare-range {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
    margin: 0;
}

.before-after-card .ec-compare {
    border-radius: 18px;
    border-color: rgba(24, 52, 89, 0.08);
    box-shadow: none;
    background: #dbe4ee;
}

.before-after-card .ec-compare-media {
    aspect-ratio: 4 / 3;
    background: #dbe4ee;
}

.before-after-card .ec-compare-media img {
    object-fit: cover;
    background: #dbe4ee;
}

.before-after-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-top: 14px;
}

.before-after-title {
    margin: 0;
    font-size: 1.02rem;
    color: var(--rd-navy-strong);
}

.before-after-note {
    margin: 4px 0 0;
    color: var(--rd-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.before-after-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    padding: 8px 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, #edf5ff 0%, #fff3e2 100%);
    border: 1px solid rgba(24, 52, 89, 0.08);
    color: var(--rd-navy);
    font-weight: 700;
    font-size: 0.84rem;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 36, 64, 0.62);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 12000;
}

.modal-overlay.active { display: flex; }

.modal-content {
    width: min(680px, 100%);
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    border: 1px solid rgba(24, 52, 89, 0.08);
    box-shadow: 0 20px 52px rgba(15, 36, 64, 0.18);
    border-radius: 28px;
    overflow: hidden;
}

.modal-header,
.modal-body,
.modal-footer { padding: 24px 28px; }

.modal-header {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    border-bottom: 1px solid rgba(24, 52, 89, 0.08);
}

.modal-title {
    margin: 0;
    font-family: "Fraunces", Georgia, serif;
    font-size: 1.75rem;
}

.modal-close {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(24, 52, 89, 0.10);
    border-radius: 999px;
    background: #fff;
    color: var(--rd-navy);
    cursor: pointer;
}

.modal-body h4 {
    margin: 20px 0 14px;
    color: var(--rd-navy-strong);
}

.modal-price-box {
    border: 1px solid rgba(24, 52, 89, 0.08);
    border-radius: 20px;
    padding: 0 18px;
    background: #fff;
}

.modal-features li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 12px;
    color: var(--rd-muted);
}

.modal-footer {
    border-top: 1px solid rgba(24, 52, 89, 0.08);
    background: rgba(243, 248, 255, 0.7);
}

.cookie-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: flex-end;
    background: rgba(15, 36, 64, 0.42);
    padding: 18px;
    animation: fadeIn 160ms ease-out;
}

.cookie-panel {
    background:
        radial-gradient(circle at top right, rgba(245, 159, 24, 0.14), transparent 24%),
        radial-gradient(circle at left center, rgba(63, 143, 199, 0.12), transparent 28%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 255, 0.98));
    color: var(--rd-text);
    width: min(960px, 100%);
    margin: 0 auto;
    border-radius: 28px;
    border: 1px solid rgba(24, 52, 89, 0.08);
    padding: 22px;
    box-shadow: 0 24px 60px rgba(15, 36, 64, 0.18);
    animation: slideUp 220ms cubic-bezier(.22, 1, .36, 1);
}

.cookie-title {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--rd-navy-strong);
    margin-bottom: 6px;
}

.cookie-desc,
.cookie-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--rd-muted);
}

.cookie-desc a,
.cookie-text a {
    color: var(--rd-navy);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: rgba(24, 52, 89, 0.24);
    text-underline-offset: 3px;
}

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

.cookie-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(24, 52, 89, 0.08);
    border-radius: 20px;
    padding: 16px;
    box-shadow: 0 8px 18px rgba(24, 52, 89, 0.05);
}

.cookie-card h4 {
    margin: 0 0 4px;
    font-size: 0.96rem;
    color: var(--rd-navy-strong);
}

.cookie-card p {
    margin: 0;
    color: var(--rd-muted);
    font-size: 0.88rem;
    line-height: 1.5;
}

.cookie-actions { display: flex; gap: 10px; margin-top: 16px; }
.cookie-actions .btn { flex: 1; }

.cookie-switch {
    position: relative;
    width: 46px;
    height: 26px;
    border-radius: 999px;
    background: #dbe4ed;
    border: 1px solid rgba(24, 52, 89, 0.1);
    transition: background .2s ease;
    flex: 0 0 auto;
}

.cookie-switch input { display: none; }

.cookie-switch .thumb {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 4px 10px rgba(24, 52, 89, 0.12);
    transition: left .2s ease, background .2s ease;
}

.cookie-switch input:checked + .thumb { left: 22px; background: var(--rd-teal); }

.cookie-banner {
    position: fixed;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    width: min(980px, calc(100% - 32px));
    padding: 18px;
    z-index: 10000;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    align-items: center;
    border-radius: 24px;
    border: 1px solid rgba(24, 52, 89, 0.08);
    background:
        radial-gradient(circle at top right, rgba(245, 159, 24, 0.14), transparent 26%),
        radial-gradient(circle at left center, rgba(63, 143, 199, 0.12), transparent 28%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 255, 0.98));
    box-shadow: 0 18px 40px rgba(15, 36, 64, 0.16);
    contain: layout paint;
}

.cookie-banner .left {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 14px;
    align-items: center;
}

.cookie-badge {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rd-navy);
    background: linear-gradient(135deg, #eef5ff 0%, #fff1d7 100%);
    box-shadow: inset 0 0 0 1px rgba(24, 52, 89, 0.06);
}

.cookie-actions-inline {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

@keyframes slideUp {
    from {
        transform: translateY(12px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (min-width: 769px) {
    .btn.nav-btn { display: inline-flex; }
}

@media (max-width: 1080px) {
    .hero-grid,
    .split-grid,
    .metric-grid,
    .feature-grid,
    .service-grid,
    .region-grid,
    .before-after-grid,
    .photo-grid,
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .hamburger { display: block; }
    .btn.nav-btn { display: none; }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        padding: 20px;
        box-shadow: 0 16px 34px rgba(24, 52, 89, 0.10);
        border-bottom: 1px solid rgba(24, 52, 89, 0.08);
    }
    .nav-links.active { display: flex; }
    .mobile-only { display: block; width: 100%; }
    .hero-grid,
    .split-grid,
    .metric-grid,
    .feature-grid,
    .service-grid,
    .region-grid,
    .before-after-grid,
    .photo-grid,
    .footer-grid,
    .hero-media-strip,
    .hero-facts,
    .cookie-grid {
        grid-template-columns: 1fr;
    }
    .hero-shell,
    .section-shell,
    .cta-panel { border-radius: 28px; }
    .hero-grid,
    .section-shell,
    .cta-panel { padding: 22px; }
    .hero-copy h1 { max-width: none; }
    .hero-media-main { min-height: 320px; }
    .section-header { flex-direction: column; align-items: flex-start; }
    .cookie-banner { grid-template-columns: 1fr; gap: 12px; }
    .cookie-actions-inline,
    .cookie-actions,
    .hero-actions,
    .cta-actions,
    .meta-links { flex-direction: column; }
    .hero-actions .btn,
    .cta-actions .btn,
    .modal-footer .btn { width: 100%; }
    .modal-header,
    .modal-body,
    .modal-footer { padding: 20px; }
    .cookie-overlay { padding: 12px; }

    .service-card {
        height: auto;
    }

    .service-media {
        min-height: 0;
        aspect-ratio: 16 / 10;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 12px 12px 0;
    }

    .service-media img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
    }

    .service-body {
        min-height: 0;
    }

    .before-after-meta {
        flex-direction: column;
        align-items: flex-start;
    }
}
