:root {
    --bg: #f4f7fb;
    --surface: rgba(255, 255, 255, 0.82);
    --surface-strong: #ffffff;
    --surface-soft: #eef4fa;
    --line: rgba(18, 52, 98, 0.1);
    --line-strong: rgba(18, 52, 98, 0.16);
    --text: #21364b;
    --muted: #5d7288;
    --title: #102946;
    --primary: #f97316;
    --primary-deep: #df6411;
    --accent: #1185df;
    --accent-deep: #0d5fb0;
    --dark: #0d223b;
    --dark-soft: #17385e;
    --success: #12926e;
    --shadow-lg: 0 30px 60px rgba(16, 41, 70, 0.14);
    --shadow-md: 0 18px 36px rgba(16, 41, 70, 0.1);
    --shadow-sm: 0 10px 22px rgba(16, 41, 70, 0.08);
    --radius-xl: 34px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 14px;
    --container: 1240px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
    overflow-x: hidden;
}

body {
    font-family: 'Manrope', 'Segoe UI', sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(17, 133, 223, 0.08) 0%, transparent 24%),
        radial-gradient(circle at top right, rgba(249, 115, 22, 0.08) 0%, transparent 28%),
        var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

body.payment-open {
    overflow: hidden;
}

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

a {
    color: inherit;
}

h1,
h2,
h3,
h4 {
    font-family: 'Sora', 'Manrope', sans-serif;
    color: var(--title);
    line-height: 1.12;
}

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

ul {
    list-style: none;
}

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

.page {
    min-height: 100vh;
}

main [id] {
    scroll-margin-top: 120px;
}

.section-kicker,
.card-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    width: fit-content;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-kicker {
    background: rgba(249, 115, 22, 0.12);
    color: var(--primary);
}

.card-kicker {
    background: rgba(17, 133, 223, 0.12);
    color: var(--accent);
}

.section-head {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
    align-items: end;
    margin-bottom: 2.6rem;
}

.section-head h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    margin-top: 1rem;
}

.section-head p {
    font-size: 1.03rem;
    line-height: 1.85;
}

.section-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.btn,
.cta-btn,
.nav-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    border: 0;
    border-radius: 999px;
    padding: 0.95rem 1.45rem;
    min-height: 48px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.28s ease, box-shadow 0.28s ease, background-color 0.28s ease, color 0.28s ease, border-color 0.28s ease;
}

.btn:hover,
.cta-btn:hover,
.nav-pill:hover {
    transform: translateY(-2px);
}

.btn-primary,
.cta-btn {
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary) 0%, #ff8e30 55%, #ffb04a 100%);
    box-shadow: 0 16px 30px rgba(249, 115, 22, 0.26);
}

.btn-primary:hover,
.cta-btn:hover {
    box-shadow: 0 22px 36px rgba(249, 115, 22, 0.34);
}

.btn-secondary,
.nav-pill {
    color: var(--title);
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(16, 41, 70, 0.1);
    box-shadow: var(--shadow-sm);
}

.btn-dark {
    color: #ffffff;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-soft) 100%);
    box-shadow: 0 16px 30px rgba(13, 34, 59, 0.22);
}

.text-link {
    color: var(--accent);
    font-weight: 800;
    text-decoration: none;
}

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

.topbar {
    position: relative;
    z-index: 20;
    padding: 0.7rem 0;
    font-size: 0.88rem;
    color: #edf5ff;
    background: linear-gradient(135deg, var(--dark) 0%, #123d68 55%, var(--accent-deep) 100%);
}

.topbar-inner,
.topbar-links {
    display: flex;
    align-items: center;
}

.topbar-inner {
    justify-content: space-between;
    gap: 1rem;
}

.topbar-links {
    flex-wrap: wrap;
    gap: 1rem;
}

.topbar-links a,
.topbar-links span,
.topbar-note {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
}

.topbar-links a:hover {
    color: #ffffff;
}

.header {
    position: sticky;
    top: 0;
    z-index: 40;
    padding: 14px 0 0;
    background: linear-gradient(180deg, rgba(244, 247, 251, 0.92) 0%, rgba(244, 247, 251, 0) 100%);
}

.navbar {
    padding-bottom: 0.75rem;
}

.nav-shell {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.95rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.74);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(22px) saturate(170%);
    -webkit-backdrop-filter: blur(22px) saturate(170%);
    box-shadow: 0 24px 40px rgba(16, 41, 70, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-image {
    width: 156px;
    height: auto;
    filter: drop-shadow(0 12px 24px rgba(17, 63, 108, 0.12));
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 46px;
    height: 46px;
    margin-left: auto;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.84);
    cursor: pointer;
}

.nav-toggle span {
    width: 18px;
    height: 2px;
    margin: 0 auto;
    border-radius: 2px;
    background: var(--title);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.nav-panel,
.nav-menu,
.nav-actions {
    display: flex;
    align-items: center;
}

.nav-panel {
    margin-left: auto;
    gap: 1rem;
    transition: opacity 0.28s ease, transform 0.28s ease;
}

.nav-menu {
    gap: 0.35rem;
}

.nav-menu a {
    position: relative;
    padding: 0.75rem 0.95rem;
    border-radius: 999px;
    color: #28405a;
    font-size: 0.94rem;
    font-weight: 800;
    text-decoration: none;
    transition: color 0.25s ease, background-color 0.25s ease;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 0.5rem;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
    background: rgba(249, 115, 22, 0.08);
}

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

.nav-actions {
    gap: 0.75rem;
}

button.btn,
button.nav-pill,
button.cta-btn {
    font: inherit;
}

.language-switch {
    display: inline-flex;
    align-items: center;
    padding: 0.28rem;
    border: 1px solid rgba(16, 41, 70, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: var(--shadow-sm);
}

.language-link {
    min-width: 48px;
    padding: 0.62rem 0.85rem;
    border-radius: 999px;
    color: var(--title);
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

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

.language-link.is-current {
    color: #ffffff;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
    box-shadow: 0 12px 24px rgba(17, 133, 223, 0.22);
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 72px 0 110px;
    background:
        linear-gradient(125deg, rgba(9, 26, 45, 0.78) 0%, rgba(10, 33, 56, 0.62) 38%, rgba(17, 133, 223, 0.34) 100%),
        url('../images/hero-top.jpeg') center 42% / cover no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.12) 0%, transparent 26%),
        radial-gradient(circle at 82% 15%, rgba(249, 115, 22, 0.18) 0%, transparent 24%),
        linear-gradient(180deg, rgba(7, 17, 29, 0) 52%, rgba(7, 17, 29, 0.4) 100%);
    pointer-events: none;
}

.hero-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 2rem;
    align-items: center;
}

.hero-copy h1 {
    margin: 1rem 0 1.1rem;
    max-width: 12ch;
    color: #ffffff;
    font-size: clamp(2.8rem, 4.8vw, 5.2rem);
    text-wrap: balance;
}

.hero-copy p {
    max-width: 60ch;
    font-size: 1.08rem;
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.85;
}

.hero-actions,
.hero-chip-row,
.hero-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-actions {
    margin-top: 2rem;
}

.hero-chip-row {
    margin-top: 1.6rem;
}

.hero-chip {
    padding: 0.58rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.86rem;
    font-weight: 700;
}

.hero-metrics {
    margin-top: 2rem;
}

.metric-card {
    min-width: 170px;
    padding: 1.2rem 1.1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(14px);
}

.metric-card strong {
    display: block;
    color: #ffffff;
    font-size: 1.35rem;
    font-weight: 800;
}

.metric-card span {
    display: block;
    margin-top: 0.35rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.92rem;
}

.hero-card {
    overflow: hidden;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-lg);
}

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

.hero-card-body {
    padding: 2rem;
}

.hero-card-body h2 {
    margin: 0.95rem 0 1rem;
    font-size: 1.8rem;
}

.check-list {
    display: grid;
    gap: 0.9rem;
}

.check-list li {
    position: relative;
    padding-left: 1.35rem;
    color: var(--muted);
}

.check-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
}

.hero-card-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-top: 1.4rem;
}

.trust-strip,
.services-section,
.process-section,
.coverage-section,
.gallery-section,
.reviews-preview-section,
.faq-section,
.contact-section,
.reviews-hero,
.reviews-directory {
    position: relative;
    padding: 100px 0;
}

.trust-strip {
    margin-top: -42px;
    padding-top: 0;
}

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

.trust-item,
.process-step,
.coverage-card,
.faq-card,
.contact-card,
.preview-review-card,
.reviews-summary-card,
.reviews-summary-grid article,
.reviews-card,
.reviews-note-box,
.review-mini-stat,
.preview-stat {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-sm);
}

.trust-item {
    padding: 1.35rem;
    border-radius: 22px;
    backdrop-filter: blur(14px);
}

.trust-item strong {
    display: block;
    color: var(--title);
    font-size: 1.02rem;
    font-weight: 800;
}

.trust-item span {
    display: block;
    margin-top: 0.45rem;
    color: var(--muted);
    font-size: 0.95rem;
}

.services-section {
    background:
        radial-gradient(circle at right top, rgba(17, 133, 223, 0.08) 0%, transparent 22%),
        linear-gradient(180deg, #f8fbfe 0%, #ffffff 70%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.4rem;
}

.service-card {
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid var(--line);
    background: var(--surface-strong);
    box-shadow: var(--shadow-sm);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.service-card:hover,
.process-step:hover,
.gallery-card:hover,
.preview-review-card:hover,
.reviews-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

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

.service-content {
    padding: 1.5rem;
}

.service-tag {
    display: inline-flex;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    background: rgba(17, 133, 223, 0.1);
    color: var(--accent);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.service-content h3 {
    margin-top: 1rem;
    font-size: 1.35rem;
}

.service-content p {
    margin-top: 0.8rem;
    line-height: 1.8;
}

.service-content ul {
    display: grid;
    gap: 0.55rem;
    margin-top: 1rem;
}

.service-content li {
    position: relative;
    padding-left: 1.2rem;
    color: var(--muted);
    font-size: 0.95rem;
}

.service-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--primary);
}

.process-section {
    background:
        radial-gradient(circle at top left, rgba(249, 115, 22, 0.08) 0%, transparent 24%),
        linear-gradient(180deg, #ffffff 0%, #f4f8fc 100%);
}

.process-layout,
.coverage-layout,
.reviews-preview-layout,
.reviews-hero-layout,
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.process-copy h2,
.coverage-copy h2,
.reviews-preview-copy h2,
.contact-copy h2,
.reviews-hero-copy h1 {
    margin: 1rem 0 1rem;
    font-size: clamp(2rem, 3.5vw, 3.4rem);
    text-wrap: balance;
}

.process-copy p,
.coverage-copy p,
.reviews-preview-copy p,
.contact-copy p,
.reviews-hero-copy p {
    font-size: 1.03rem;
    line-height: 1.85;
}

.process-highlight {
    margin-top: 1.6rem;
    padding: 1.3rem 1.4rem;
    border-radius: 22px;
    background: rgba(17, 133, 223, 0.08);
    border: 1px solid rgba(17, 133, 223, 0.12);
}

.process-highlight strong {
    color: var(--accent-deep);
    font-weight: 800;
}

.process-highlight p {
    margin-top: 0.4rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.process-step {
    padding: 1.5rem;
    border-radius: 24px;
}

.process-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #ffffff;
    font-family: 'Sora', 'Manrope', sans-serif;
    font-size: 1rem;
    font-weight: 800;
}

.process-step h3 {
    margin-top: 1.1rem;
    font-size: 1.15rem;
}

.process-step p {
    margin-top: 0.65rem;
    font-size: 0.97rem;
    line-height: 1.75;
}

.coverage-section {
    background:
        radial-gradient(circle at bottom right, rgba(17, 133, 223, 0.08) 0%, transparent 28%),
        linear-gradient(180deg, #f4f8fc 0%, #ffffff 100%);
}

.coverage-list {
    display: grid;
    gap: 1rem;
    margin-top: 1.8rem;
}

.coverage-item {
    padding: 1.25rem 1.35rem;
    border-radius: 22px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.8);
}

.coverage-item strong {
    color: var(--title);
    font-weight: 800;
}

.coverage-item p {
    margin-top: 0.45rem;
}

.coverage-card {
    padding: 1.8rem;
    border-radius: 28px;
}

.coverage-card-head h3 {
    margin-top: 0.9rem;
    font-size: 1.55rem;
}

.route-list {
    display: grid;
    gap: 0.85rem;
    margin-top: 1.4rem;
}

.route-item {
    padding: 1rem 1.1rem;
    border-radius: 18px;
    background: rgba(17, 133, 223, 0.06);
    border: 1px solid rgba(17, 133, 223, 0.12);
}

.route-item strong {
    display: block;
    color: var(--title);
    font-size: 1rem;
    font-weight: 800;
}

.route-item span {
    display: block;
    margin-top: 0.35rem;
    color: var(--muted);
}

.coverage-tags,
.reviews-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.coverage-tags {
    margin-top: 1.5rem;
}

.coverage-tags span,
.reviews-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 0.82rem;
    border-radius: 999px;
    background: rgba(249, 115, 22, 0.1);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 800;
}

.gallery-section {
    background:
        radial-gradient(circle at left center, rgba(249, 115, 22, 0.08) 0%, transparent 24%),
        linear-gradient(180deg, #ffffff 0%, #eef4fa 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 210px;
    gap: 1rem;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
}

.gallery-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 24, 42, 0) 20%, rgba(10, 24, 42, 0.68) 100%);
}

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

.gallery-card figcaption {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 1;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 700;
}

.gallery-card-large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-card-wide {
    grid-column: span 2;
}

.page-hero {
    padding: 88px 0 74px;
}

.page-hero-gallery,
.page-hero-admin {
    background:
        radial-gradient(circle at top left, rgba(249, 115, 22, 0.1) 0%, transparent 24%),
        radial-gradient(circle at top right, rgba(17, 133, 223, 0.12) 0%, transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #eef4fa 100%);
}

.page-hero-layout {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
    align-items: start;
}

.page-hero-copy h1 {
    margin-top: 1rem;
    font-size: clamp(2.2rem, 4vw, 4rem);
    text-wrap: balance;
}

.page-hero-copy p {
    margin-top: 1rem;
    font-size: 1.05rem;
    line-height: 1.85;
}

.page-hero-card {
    padding: 1.8rem;
    border-radius: 28px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-md);
}

.page-hero-card h2 {
    margin-top: 0.95rem;
    font-size: 1.7rem;
    text-wrap: balance;
}

.gallery-directory {
    padding: 96px 0;
    background:
        radial-gradient(circle at bottom right, rgba(17, 133, 223, 0.08) 0%, transparent 24%),
        linear-gradient(180deg, #eef4fa 0%, #ffffff 100%);
}

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

.gallery-page-card {
    overflow: hidden;
    border-radius: 26px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-sm);
}

.gallery-page-media img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.gallery-page-body {
    padding: 1.35rem;
}

.gallery-page-body h3 {
    font-size: 1.12rem;
}

.gallery-page-body p {
    margin-top: 0.65rem;
}

.reviews-preview-section,
.reviews-hero {
    background:
        radial-gradient(circle at top right, rgba(17, 133, 223, 0.08) 0%, transparent 24%),
        linear-gradient(180deg, #eef4fa 0%, #ffffff 100%);
}

.preview-stats,
.reviews-summary-grid {
    display: grid;
    gap: 1rem;
}

.preview-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 1.7rem 0 2rem;
}

.preview-stat,
.reviews-summary-grid article {
    padding: 1.2rem;
    border-radius: 20px;
}

.preview-stat strong,
.reviews-summary-grid strong {
    display: block;
    color: var(--title);
    font-size: 1.45rem;
    font-weight: 800;
}

.preview-stat span,
.reviews-summary-grid span {
    display: block;
    margin-top: 0.35rem;
    color: var(--muted);
    font-size: 0.92rem;
}

.preview-cards {
    display: grid;
    gap: 1rem;
}

.preview-review-card {
    padding: 1.5rem;
    border-radius: 24px;
}

.preview-review-rating,
.reviews-rating {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    background: rgba(249, 115, 22, 0.1);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.preview-review-card h3 {
    margin-top: 1rem;
    font-size: 1.2rem;
}

.preview-review-card p {
    margin-top: 0.75rem;
    line-height: 1.8;
}

.preview-review-card span:last-child {
    display: block;
    margin-top: 0.85rem;
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 700;
}

.faq-section {
    background:
        radial-gradient(circle at bottom left, rgba(249, 115, 22, 0.08) 0%, transparent 26%),
        linear-gradient(180deg, #ffffff 0%, #f5f8fc 100%);
}

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

.faq-card {
    padding: 1.5rem;
    border-radius: 24px;
}

.faq-card h3 {
    font-size: 1.15rem;
}

.faq-card p {
    margin-top: 0.7rem;
    line-height: 1.8;
}

.contact-section {
    background:
        radial-gradient(circle at top left, rgba(17, 133, 223, 0.08) 0%, transparent 24%),
        linear-gradient(180deg, #f5f8fc 0%, #ffffff 100%);
}

.contact-cards {
    display: grid;
    gap: 1rem;
    margin-top: 1.7rem;
}

.contact-card {
    padding: 1.3rem 1.35rem;
    border-radius: 22px;
}

.contact-card strong {
    display: block;
    color: var(--title);
    font-weight: 800;
}

.contact-card a {
    display: inline-block;
    margin-top: 0.5rem;
    color: var(--accent);
    font-weight: 800;
    text-decoration: none;
}

.contact-card p {
    margin-top: 0.45rem;
}

.contact-form-shell {
    padding: 2rem;
    border-radius: 30px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-lg);
}

.contact-form-head h3 {
    margin-top: 0.9rem;
    font-size: 1.7rem;
}

.contact-form-head p {
    margin-top: 0.7rem;
}

.contact-form {
    margin-top: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.form-group {
    display: grid;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.form-group label {
    color: var(--title);
    font-size: 0.9rem;
    font-weight: 800;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(16, 41, 70, 0.12);
    border-radius: 16px;
    background: #fbfdff;
    color: var(--text);
    font: inherit;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: rgba(17, 133, 223, 0.42);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(17, 133, 223, 0.12);
}

.api-note {
    margin-top: 1rem;
    color: var(--muted);
    font-size: 0.94rem;
    line-height: 1.7;
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin: 0.45rem 0 1rem;
    color: var(--muted);
    font-size: 0.92rem;
}

.form-check input {
    margin-top: 0.2rem;
}

.form-submit {
    width: 100%;
    margin-top: 0.4rem;
}

.form-help {
    margin-top: 1rem;
    color: var(--muted);
    font-size: 0.92rem;
}

.form-help a {
    color: var(--accent);
    font-weight: 700;
    text-decoration: none;
}

.cta-band {
    padding: 0 0 110px;
}

.cta-band-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 2rem 2.2rem;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-soft) 50%, var(--accent-deep) 100%);
    box-shadow: var(--shadow-lg);
}

.cta-band-shell h2 {
    margin-top: 1rem;
    max-width: 16ch;
    color: #ffffff;
    font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.cta-band-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer {
    padding: 72px 0 26px;
    background: linear-gradient(135deg, #0c2137 0%, #123d68 100%);
    color: rgba(255, 255, 255, 0.82);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.75fr 0.75fr 0.65fr;
    gap: 1.4rem;
}

.footer-logo {
    width: 170px;
}

.footer-brand p {
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.85;
}

.footer-column h3 {
    color: #ffffff;
    font-size: 1rem;
}

.footer-column ul {
    display: grid;
    gap: 0.7rem;
    margin-top: 1rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.76);
    text-decoration: none;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-bottom {
    margin-top: 2.2rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
}

.reviews-hero {
    padding-top: 88px;
}

.reviews-summary-card {
    padding: 1.8rem;
    border-radius: 28px;
}

.reviews-summary-card h2 {
    margin-top: 0.9rem;
    font-size: 1.75rem;
}

.reviews-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 1.3rem;
}

.reviews-note {
    padding: 0 0 22px;
    background: linear-gradient(180deg, #ffffff 0%, #f4f8fc 100%);
}

.reviews-note-box {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.2rem 1.35rem;
    border-radius: 22px;
}

.reviews-note-box strong {
    color: var(--primary);
    white-space: nowrap;
}

.reviews-directory {
    background:
        radial-gradient(circle at top right, rgba(17, 133, 223, 0.08) 0%, transparent 24%),
        linear-gradient(180deg, #f4f8fc 0%, #ffffff 100%);
}

.reviews-directory-head {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 2rem;
    align-items: end;
    margin-bottom: 2.5rem;
}

.reviews-directory-head h2 {
    margin-top: 1rem;
    font-size: clamp(2rem, 3vw, 3rem);
    text-wrap: balance;
}

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

.reviews-card {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    padding: 1.35rem;
    border-radius: 24px;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.reviews-empty-card {
    grid-column: 1 / -1;
    display: grid;
    gap: 1rem;
    justify-items: start;
    padding: 2rem;
    border-radius: 28px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-sm);
}

.reviews-empty-card h3 {
    font-size: 1.4rem;
}

.reviews-empty-card p {
    max-width: 60ch;
    line-height: 1.8;
}

.reviews-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
}

.reviews-badge {
    padding: 0.42rem 0.7rem;
    border-radius: 999px;
    background: rgba(17, 133, 223, 0.1);
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.reviews-card h3 {
    font-size: 1.1rem;
}

.reviews-meta {
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 700;
}

.reviews-card p,
.reviews-recommendation {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.75;
}

.reviews-recommendation {
    margin-top: auto;
    padding-top: 0.9rem;
    border-top: 1px solid var(--line);
}

.reviews-noscript {
    margin-top: 1.2rem;
    color: var(--muted);
    text-align: center;
}

.review-submit-section {
    padding: 0 0 100px;
    background: linear-gradient(180deg, #ffffff 0%, #f4f8fc 100%);
}

.review-submit-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.review-submit-copy h2 {
    margin-top: 1rem;
    font-size: clamp(2rem, 3vw, 3rem);
}

.review-submit-copy p {
    margin-top: 1rem;
    line-height: 1.85;
}

.review-submit-points {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.review-point {
    padding: 1.2rem 1.3rem;
    border-radius: 22px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-sm);
}

.review-point strong {
    display: block;
    color: var(--title);
    font-weight: 800;
}

.review-point span {
    display: block;
    margin-top: 0.4rem;
    color: var(--muted);
}

.admin-dashboard {
    padding: 0 0 110px;
    background:
        radial-gradient(circle at bottom left, rgba(249, 115, 22, 0.08) 0%, transparent 24%),
        linear-gradient(180deg, #eef4fa 0%, #ffffff 100%);
}

.admin-grid {
    display: grid;
    gap: 1.4rem;
}

.admin-card {
    padding: 1.8rem;
    border-radius: 30px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-md);
}

.admin-card-head h2 {
    margin-top: 0.9rem;
    font-size: 1.8rem;
}

.admin-copy {
    margin-top: 0.9rem;
}

.admin-list {
    display: grid;
    gap: 1rem;
    margin-top: 1.4rem;
}

.admin-item {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 1rem;
    padding: 1rem;
    border-radius: 22px;
    border: 1px solid var(--line);
    background: rgba(245, 249, 253, 0.9);
}

.admin-item-media img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 16px;
}

.admin-item-body h3 {
    font-size: 1.05rem;
}

.admin-item-body p {
    margin-top: 0.55rem;
}

.admin-item-meta {
    color: var(--accent);
    font-size: 0.86rem;
    font-weight: 800;
}

.admin-item-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1rem;
}

.admin-item-action {
    padding-inline: 1rem;
}

.admin-token-form,
.admin-form {
    margin-top: 1.1rem;
}

.floating-link-review {
    background: linear-gradient(135deg, var(--primary) 0%, #ff914d 100%);
}

.floating-link-admin {
    background: linear-gradient(135deg, #1c2f49 0%, #0d223b 100%);
}

.floating-contact {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 50;
    display: grid;
    gap: 0.7rem;
}

.floating-link {
    min-width: 136px;
    min-height: 48px;
    padding: 0.92rem 1.1rem;
    border-radius: 999px;
    color: #ffffff;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
    box-shadow: var(--shadow-md);
    overflow-wrap: anywhere;
}

.floating-link-whatsapp {
    background: linear-gradient(135deg, #1ebc70 0%, #12925d 100%);
}

.floating-link-call {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
}

.payment-modal {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: grid;
    place-items: center;
    padding: 24px;
    padding-bottom: calc(24px + env(safe-area-inset-bottom));
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.payment-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.payment-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    padding: 0;
    background: rgba(8, 22, 38, 0.68);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    cursor: pointer;
}

.payment-dialog {
    position: relative;
    z-index: 1;
    width: min(720px, 100%);
    max-height: calc(100vh - 48px);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 32px;
    background:
        radial-gradient(circle at top right, rgba(17, 133, 223, 0.14) 0%, transparent 28%),
        radial-gradient(circle at bottom left, rgba(249, 115, 22, 0.12) 0%, transparent 26%),
        rgba(255, 255, 255, 0.96);
    box-shadow: 0 32px 70px rgba(10, 27, 46, 0.3);
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateY(18px) scale(0.98);
    transition: transform 0.25s ease;
}

.payment-modal.is-open .payment-dialog {
    transform: translateY(0) scale(1);
}

.payment-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.84);
    color: var(--title);
    font-size: 1.35rem;
    cursor: pointer;
}

.payment-dialog h2 {
    margin-top: 0.95rem;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.payment-dialog p {
    margin-top: 0.9rem;
    line-height: 1.8;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.6rem;
}

.payment-point {
    padding: 1.15rem;
    border-radius: 22px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.84);
    box-shadow: var(--shadow-sm);
}

.payment-point strong {
    display: block;
    color: var(--title);
    font-size: 0.98rem;
    font-weight: 800;
}

.payment-point span {
    display: block;
    margin-top: 0.45rem;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

.payment-note {
    margin-top: 1.2rem;
    padding: 1rem 1.1rem;
    border-radius: 20px;
    border: 1px solid rgba(17, 133, 223, 0.12);
    background: rgba(17, 133, 223, 0.08);
}

.payment-note strong {
    color: var(--accent-deep);
}

.payment-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.payment-link.is-disabled,
.btn.is-disabled {
    opacity: 0.62;
    pointer-events: none;
    box-shadow: none;
}

.reveal {
    opacity: 0;
    transform: translateY(26px);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

@media (max-width: 1100px) {
    .section-head,
    .process-layout,
    .coverage-layout,
    .reviews-preview-layout,
    .reviews-hero-layout,
    .page-hero-layout,
    .review-submit-layout,
    .contact-layout,
    .reviews-directory-head {
        grid-template-columns: 1fr;
    }

    .trust-grid,
    .services-grid,
    .faq-grid,
    .gallery-page-grid,
    .reviews-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 220px;
    }

    .gallery-card-large,
    .gallery-card-wide {
        grid-column: span 1;
        grid-row: span 1;
    }

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

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

@media (max-width: 860px) {
    html {
        scroll-padding-top: 104px;
    }

    .topbar {
        display: none;
    }

    .header {
        top: 0;
        padding-top: 8px;
    }

    .nav-shell {
        border-radius: 24px;
        align-items: center;
        flex-wrap: wrap;
        padding: 0.85rem 1rem;
        gap: 0.8rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-panel {
        display: flex;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transform: translateY(-12px);
        padding-top: 0;
        pointer-events: none;
    }

    .nav-panel.is-open {
        max-height: 80vh;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
        overflow-y: auto;
        margin-top: 0.35rem;
        padding-top: 1rem;
        padding-bottom: 0.3rem;
        border-top: 1px solid rgba(16, 41, 70, 0.08);
    }

    .nav-menu,
    .nav-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .nav-menu {
        gap: 0.55rem;
    }

    .nav-actions {
        gap: 0.85rem;
    }

    .language-switch {
        width: 100%;
        justify-content: stretch;
    }

    .language-link {
        flex: 1 1 0;
    }

    .nav-menu a,
    .nav-pill,
    .cta-btn {
        width: 100%;
        justify-content: center;
    }

    .nav-menu a {
        padding: 0.9rem 1rem;
    }

    .hero,
    .services-section,
    .process-section,
    .coverage-section,
    .gallery-section,
    .reviews-preview-section,
    .faq-section,
    .contact-section,
    .reviews-hero,
    .reviews-directory,
    .gallery-directory {
        padding: 82px 0;
    }

    .hero-layout {
        grid-template-columns: 1fr;
        gap: 1.4rem;
    }

    .hero-copy h1 {
        max-width: none;
        font-size: clamp(2.3rem, 8vw, 3.7rem);
    }

    .hero-card-media img {
        height: 220px;
    }

    .preview-stats,
    .trust-grid,
    .process-steps,
    .reviews-summary-grid,
    .gallery-page-grid {
        grid-template-columns: 1fr;
    }

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

    .cta-band-shell h2 {
        max-width: none;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(var(--container), calc(100% - 24px));
    }

    body {
        padding-bottom: 92px;
        padding-bottom: calc(92px + env(safe-area-inset-bottom));
    }

    main [id] {
        scroll-margin-top: 98px;
    }

    .nav-shell,
    .contact-form-shell,
    .coverage-card,
    .hero-card-body,
    .reviews-summary-card,
    .page-hero-card,
    .admin-card {
        padding: 1.3rem;
    }

    .logo-image {
        width: 114px;
    }

    .hero {
        padding: 54px 0 68px;
        background-position: 60% center;
    }

    .hero-actions,
    .hero-chip-row,
    .hero-metrics,
    .cta-band-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .metric-card,
    .btn,
    .btn-secondary,
    .btn-dark {
        width: 100%;
    }

    .hero-chip {
        font-size: 0.81rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 16px;
    }

    .metric-card {
        min-width: 0;
        padding: 1rem;
    }

    .trust-grid,
    .services-grid,
    .faq-grid,
    .reviews-grid,
    .gallery-grid,
    .gallery-page-grid,
    .form-row,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .section-head,
    .reviews-directory-head {
        gap: 1rem;
    }

    .section-head {
        margin-bottom: 1.8rem;
    }

    .section-head h2,
    .process-copy h2,
    .coverage-copy h2,
    .reviews-preview-copy h2,
    .contact-copy h2,
    .reviews-hero-copy h1,
    .reviews-directory-head h2 {
        font-size: clamp(1.7rem, 7.2vw, 2.2rem);
    }

    .section-head p,
    .process-copy p,
    .coverage-copy p,
    .reviews-preview-copy p,
    .contact-copy p,
    .reviews-hero-copy p,
    .page-hero-copy p {
        font-size: 0.96rem;
        line-height: 1.75;
    }

    .service-content,
    .faq-card,
    .preview-review-card,
    .process-step,
    .contact-card,
    .reviews-card,
    .review-point,
    .gallery-page-body {
        padding: 1.15rem;
    }

    .service-media img,
    .gallery-page-media img {
        height: 220px;
    }

    .gallery-card {
        min-height: 220px;
    }

    .gallery-card figcaption {
        left: 0.8rem;
        right: 0.8rem;
        bottom: 0.8rem;
        font-size: 0.92rem;
    }

    .hero-card-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .reviews-note-box {
        flex-direction: column;
    }

    .reviews-card-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .reviews-meta {
        line-height: 1.6;
    }

    .form-group {
        margin-bottom: 0.85rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.9rem 0.95rem;
        border-radius: 14px;
    }

    .contact-form-head h3,
    .reviews-summary-card h2,
    .page-hero-card h2 {
        font-size: 1.45rem;
    }

    .cta-band {
        padding-bottom: 90px;
    }

    .cta-band-shell {
        padding: 1.4rem;
        border-radius: 24px;
    }

    .payment-modal {
        padding: 14px;
        padding-bottom: calc(14px + env(safe-area-inset-bottom));
    }

    .payment-dialog {
        max-height: calc(100vh - 28px);
        padding: 1.35rem;
        border-radius: 26px;
    }

    .payment-close {
        top: 12px;
        right: 12px;
    }

    .payment-grid,
    .payment-actions {
        grid-template-columns: 1fr;
    }

    .payment-actions {
        display: grid;
    }

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

    .admin-item-media img {
        height: 220px;
    }

    .floating-contact {
        right: 10px;
        left: 10px;
        bottom: 10px;
        bottom: calc(10px + env(safe-area-inset-bottom));
        grid-template-columns: repeat(auto-fit, minmax(92px, 1fr));
        gap: 0.55rem;
        padding: 0.45rem;
        border-radius: 22px;
        background: rgba(12, 33, 55, 0.84);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        box-shadow: 0 20px 34px rgba(8, 22, 38, 0.24);
    }

    .floating-link {
        min-width: 0;
        padding: 0.8rem 0.65rem;
        font-size: 0.84rem;
        box-shadow: none;
    }
}

@media (max-width: 430px) {
    body {
        padding-bottom: 98px;
        padding-bottom: calc(98px + env(safe-area-inset-bottom));
    }

    .container {
        width: min(var(--container), calc(100% - 20px));
    }

    main [id] {
        scroll-margin-top: 92px;
    }

    .header {
        padding-top: 6px;
    }

    .nav-shell {
        padding: 0.75rem 0.85rem;
        border-radius: 20px;
    }

    .logo-image {
        width: 102px;
    }

    .nav-toggle {
        width: 42px;
        height: 42px;
    }

    .section-kicker,
    .card-kicker {
        font-size: 0.7rem;
        padding: 0.45rem 0.75rem;
    }

    .hero {
        padding: 48px 0 62px;
    }

    .hero-copy h1 {
        font-size: clamp(2rem, 9vw, 2.5rem);
    }

    .hero-copy p {
        font-size: 0.94rem;
    }

    .hero-card-media img,
    .service-media img,
    .gallery-page-media img,
    .admin-item-media img {
        height: 200px;
    }

    .gallery-card {
        min-height: 200px;
    }

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

    .floating-link {
        font-size: 0.82rem;
    }
}
