:root {
    --bg: #edf6ff;
    --surface: rgba(255, 255, 255, 0.94);
    --border: rgba(18, 61, 102, 0.1);
    --ink: #17324d;
    --muted: #5a718b;
    --primary: #1780d9;
    --primary-soft: #d9eeff;
    --accent: #ffb23f;
    --accent-soft: #fff0d2;
    --shadow: 0 20px 48px rgba(23, 50, 77, 0.12);
    --radius-xl: 28px;
    --radius-lg: 20px;
    --radius-md: 16px;
}

* {
    box-sizing: border-box;
}

body {
    font-family: "Manrope", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(23, 128, 217, 0.18), transparent 30%),
        radial-gradient(circle at top right, rgba(255, 178, 63, 0.2), transparent 28%),
        radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.78), transparent 26%),
        var(--bg);
    color: var(--ink);
    min-height: 100vh;
}

.navbar,
h1, h2, h3, h4, h5, h6,
.btn,
.brand-title,
.metric-number,
.floating-card-title,
.mini-title,
.contact-value,
.timer-value,
.stats-number {
    font-family: "Plus Jakarta Sans", sans-serif;
}

.page-shell {
    min-height: calc(100vh - 150px);
}

.custom-navbar {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(18, 61, 102, 0.08);
    box-shadow: 0 10px 30px rgba(23, 50, 77, 0.08);
}

.custom-navbar .navbar-brand,
.custom-navbar .nav-link,
.custom-navbar .navbar-toggler {
    color: var(--ink);
}

.custom-navbar .nav-link.active,
.custom-navbar .nav-link:hover {
    color: var(--primary);
}

.custom-navbar .navbar-toggler {
    border-color: rgba(52, 76, 84, 0.14);
}

.custom-navbar .navbar-toggler:focus {
    box-shadow: none;
}

.custom-navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(36,54,64,0.85)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.brand-mark {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(217, 238, 255, 0.98), rgba(255, 240, 210, 0.96));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
    overflow: hidden;
}

.brand-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.brand-title {
    font-size: 1.08rem;
    font-weight: 800;
    color: var(--ink);
}

.brand-subtitle {
    font-size: .68rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(102, 121, 132, 0.92);
    margin-top: .15rem;
}

.qr-public-shell {
    padding-top: 1rem;
}

.qr-public-brand {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.2rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.qr-public-brand-logo {
    width: 72px;
    height: 72px;
    object-fit: contain;
    display: block;
}

.qr-public-brand-copy {
    display: flex;
    flex-direction: column;
}

.qr-public-brand-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--ink);
    line-height: 1.05;
}

.qr-public-brand-subtitle {
    font-size: .78rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: .25rem;
}

.header-wa-contact {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .55rem .85rem;
    border-radius: 999px;
    color: var(--ink);
    text-decoration: none;
    background: rgba(23, 128, 217, 0.08);
    border: 1px solid rgba(23, 128, 217, 0.16);
    font-size: .88rem;
}

.header-wa-contact i {
    color: #0f9d58;
    font-size: 1rem;
}

.header-wa-contact strong {
    font-weight: 700;
}

.header-wa-contact:hover {
    color: var(--ink);
    background: rgba(23, 128, 217, 0.13);
}

.install-app-button {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    border: none;
    box-shadow: 0 14px 26px rgba(17, 95, 168, 0.18);
}

.install-app-button-desktop {
    white-space: nowrap;
}

.install-app-button-mobile {
    position: fixed;
    left: 16px;
    bottom: 16px;
    z-index: 1035;
    border-radius: 999px;
    padding: .8rem 1rem;
    max-width: calc(100vw - 96px);
}

.install-app-button-ready {
    animation: install-pulse 1.6s ease-in-out infinite;
}

@keyframes install-pulse {
    0%, 100% {
        transform: translateY(0);
        box-shadow: 0 14px 26px rgba(17, 95, 168, 0.18);
    }
    50% {
        transform: translateY(-2px);
        box-shadow: 0 18px 34px rgba(23, 128, 217, 0.28);
    }
}

.install-app-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
    flex: 0 0 auto;
}

.install-app-modal {
    border: 1px solid rgba(18, 61, 102, 0.08);
    border-radius: 24px;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(255, 178, 63, 0.16), transparent 26%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(238, 247, 255, 0.96));
    box-shadow: 0 24px 55px rgba(23, 50, 77, 0.16);
}

.install-modal-badge {
    display: inline-flex;
    align-items: center;
    padding: .3rem .7rem;
    border-radius: 999px;
    margin-bottom: .65rem;
    background: rgba(23, 128, 217, 0.1);
    color: var(--primary);
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.install-step-list {
    display: grid;
    gap: .85rem;
}

.install-step-item {
    display: grid;
    gap: .25rem;
    padding: .95rem 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(18, 61, 102, 0.08);
}

.install-step-item strong {
    color: var(--ink);
}

.install-step-item span {
    color: var(--muted);
}

.install-qr-card {
    padding: 2rem;
    border-radius: calc(var(--radius-xl) + 4px);
    background:
        radial-gradient(circle at top left, rgba(217, 238, 255, 0.92), transparent 28%),
        radial-gradient(circle at bottom right, rgba(255, 240, 210, 0.88), transparent 30%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(238, 247, 255, 0.96));
    border: 1px solid rgba(18, 61, 102, 0.08);
    box-shadow: var(--shadow);
}

.install-qr-preview {
    display: grid;
    gap: 1rem;
    justify-items: center;
}

.install-qr-frame {
    width: min(100%, 320px);
    padding: 1rem;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(18, 61, 102, 0.08);
    box-shadow: 0 24px 50px rgba(23, 50, 77, 0.12);
}

.install-qr-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
}

.install-qr-caption {
    max-width: 34ch;
    text-align: center;
    color: var(--muted);
    font-size: .94rem;
    line-height: 1.6;
    word-break: break-word;
}

.install-qr-warning {
    padding: 1rem 1.1rem;
    border-radius: 18px;
    background: rgba(255, 247, 237, 0.92);
    border: 1px solid rgba(249, 115, 22, 0.16);
    color: #9a3412;
}

.hero-card,
.glass-card,
.panel-card,
.empty-card,
.service-highlight-card,
.step-card,
.promo-card,
.feature-preview,
.service-history-card,
.unit-summary-card,
.stats-card,
.schedule-card,
.public-hero,
.qr-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.hero-card,
.public-hero,
.feature-preview,
.panel-card,
.glass-card,
.service-highlight-card,
.step-card,
.promo-card,
.unit-summary-card,
.stats-card,
.schedule-card,
.service-history-card,
.empty-card,
.qr-card {
    padding: 1.5rem;
}

.hero-card,
.public-hero {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(236, 246, 255, 0.96));
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .35rem .8rem;
    background: rgba(23, 128, 217, 0.12);
    color: var(--primary);
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .02em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.lead,
.text-secondary,
.form-text,
.small {
    color: var(--muted) !important;
}

.section-head h1,
.section-head h2,
.section-head h3,
h1, h2, h3, h4, h5, h6 {
    color: var(--ink);
}

.btn {
    border-radius: 14px;
    font-weight: 600;
}

.btn-primary {
    background: linear-gradient(120deg, #1780d9, #115fa8);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(120deg, #126bbb, #0f528f);
}

.btn-success {
    background: linear-gradient(120deg, #1fb86a, #0f9d58);
    border: none;
}

.btn-success:hover {
    background: linear-gradient(120deg, #17a15d, #0d874b);
}

.btn-light,
.btn-outline-primary,
.btn-outline-secondary,
.btn-outline-danger {
    border-color: rgba(52, 76, 84, 0.14);
}

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

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

.stat-strip,
.technical-grid {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}

.stat-pill,
.tech-chip,
.public-chip,
.next-schedule-pill {
    display: inline-flex;
    align-items: center;
    padding: .75rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(23, 128, 217, 0.14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.stat-pill strong {
    margin-right: .35rem;
}

.icon-box,
.stats-icon,
.qr-sample {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(23, 128, 217, 0.16), rgba(255, 178, 63, 0.28));
    color: var(--primary);
    font-size: 1.4rem;
}

.mini-window {
    padding: 1rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.preview-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 1rem;
    border: 1px solid rgba(15, 23, 42, 0.06);
}

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

.step-number {
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    font-size: 2.6rem;
    line-height: 1;
    font-weight: 800;
    color: rgba(23, 128, 217, 0.14);
}

.site-footer {
    border-top: 1px solid rgba(52, 76, 84, 0.08);
    background: rgba(255, 251, 247, 0.78);
    backdrop-filter: blur(10px);
}

.stats-card {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stats-number {
    font-size: 2rem;
    font-weight: 800;
}

.panel-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.table > :not(caption) > * > * {
    padding: 1rem 0.75rem;
    border-bottom-color: rgba(15, 23, 42, 0.06);
}

.table thead th {
    color: var(--muted);
    text-transform: uppercase;
    font-size: .76rem;
    letter-spacing: .04em;
    font-weight: 700;
}

.form-control,
.form-select,
textarea {
    border-radius: 14px;
    border-color: rgba(15, 23, 42, 0.1);
    padding: .85rem 1rem;
    background: rgba(255, 255, 255, 0.9);
}

.form-control:focus,
.form-select:focus,
textarea:focus {
    border-color: rgba(37, 99, 235, 0.45);
    box-shadow: 0 0 0 .25rem rgba(37, 99, 235, 0.1);
}

.form-label {
    font-weight: 600;
    color: var(--ink);
}

.form-preview-image,
.detail-image,
.service-doc-image,
.public-unit-image {
    width: 100%;
    object-fit: contain;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #fff;
    padding: .35rem;
}

.form-preview-image {
    min-height: 220px;
    max-height: 260px;
}

.detail-image,
.public-unit-image {
    min-height: 260px;
    max-height: 320px;
}

.service-doc-image {
    min-height: 220px;
    max-height: 260px;
}

.image-placeholder {
    width: 100%;
    min-height: 220px;
    border-radius: var(--radius-lg);
    border: 1px dashed rgba(100, 116, 139, 0.35);
    background: rgba(248, 250, 252, 0.8);
    color: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
}

.meta-card {
    height: 100%;
    background: rgba(248, 250, 252, 0.85);
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: var(--radius-md);
    padding: 1rem;
}

.meta-card span {
    display: block;
    font-size: .82rem;
    color: var(--muted);
    margin-bottom: .35rem;
}

.meta-card strong {
    font-size: .98rem;
    line-height: 1.45;
}

.meta-card.compact {
    padding: .9rem 1rem;
}

.schedule-card.compact {
    padding: .9rem 1rem;
}

.public-summary-grid .fw-semibold {
    line-height: 1.4;
}

.qr-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(227, 241, 255, 0.95));
}

.qr-image {
    width: min(220px, 100%);
    height: auto;
}

.wa-floating-button {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 60px;
    height: 60px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #0f9d58;
    color: #fff;
    text-decoration: none;
    font-size: 1.7rem;
    box-shadow: 0 12px 30px rgba(15, 157, 88, 0.32);
    z-index: 1040;
}

.wa-floating-button:hover {
    color: #fff;
    transform: translateY(-2px);
}

.service-history-card {
    padding: 1.25rem;
    border-radius: var(--radius-lg);
}

.public-history-card {
    background: rgba(255, 255, 255, 0.96);
}

.unit-summary-card,
.schedule-card {
    border-radius: var(--radius-lg);
    background: rgba(248, 250, 252, 0.86);
    border: 1px solid rgba(15, 23, 42, 0.05);
}

.info-list .fw-semibold {
    line-height: 1.45;
}

.badge {
    font-weight: 700;
    letter-spacing: .02em;
}

.maintenance-timer-card {
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(245, 158, 11, 0.18);
    background:
        radial-gradient(circle at top right, rgba(255, 178, 63, 0.35), transparent 24%),
        linear-gradient(135deg, rgba(255, 248, 230, 0.98), rgba(255, 255, 255, 0.96));
    box-shadow: 0 22px 50px rgba(255, 178, 63, 0.18);
}

.maintenance-timer-card.is-overdue {
    border-color: rgba(239, 68, 68, 0.22);
    background:
        radial-gradient(circle at top right, rgba(239, 68, 68, 0.18), transparent 24%),
        linear-gradient(135deg, rgba(255, 241, 242, 0.98), rgba(255, 255, 255, 0.96));
}

.maintenance-timer-card.is-soon {
    border-color: rgba(249, 115, 22, 0.22);
    background:
        radial-gradient(circle at top right, rgba(249, 115, 22, 0.18), transparent 24%),
        linear-gradient(135deg, rgba(255, 247, 237, 0.98), rgba(255, 255, 255, 0.96));
}

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

.timer-panel {
    padding: 1.2rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.timer-label {
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: .5rem;
}

.timer-value {
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1;
    font-weight: 800;
    color: #ea580c;
    text-shadow: 0 8px 18px rgba(234, 88, 12, 0.18);
    margin-bottom: .5rem;
}

.timer-meta,
.timer-note {
    color: var(--muted);
}

.timer-alert {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .85rem 1.25rem;
    border-radius: 999px;
    background: #fff;
    color: #b45309;
    border: 1px solid rgba(245, 158, 11, 0.24);
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    box-shadow: 0 12px 24px rgba(245, 158, 11, 0.12);
}

.maintenance-timer-card.is-overdue .timer-alert {
    color: #b91c1c;
    border-color: rgba(239, 68, 68, 0.25);
    box-shadow: 0 12px 24px rgba(239, 68, 68, 0.12);
}

.maintenance-timer-card.is-soon .timer-alert {
    color: #c2410c;
    border-color: rgba(249, 115, 22, 0.25);
    box-shadow: 0 12px 24px rgba(249, 115, 22, 0.12);
}

.blink-soft {
    animation: blink-soft 1.6s ease-in-out infinite;
}

@keyframes blink-soft {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: .45;
        transform: scale(.98);
    }
}

.company-hero {
    position: relative;
    overflow: hidden;
    padding: 2rem;
    background:
        radial-gradient(circle at top left, rgba(217, 238, 255, 0.98), transparent 32%),
        radial-gradient(circle at bottom right, rgba(255, 240, 210, 0.96), transparent 34%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(238, 247, 255, 0.96));
    border: 1px solid var(--border);
    border-radius: calc(var(--radius-xl) + 6px);
    box-shadow: var(--shadow);
}

.company-hero-title {
    line-height: 1.08;
    letter-spacing: -.03em;
    max-width: 12ch;
}

.company-metrics .metric-card,
.soft-card,
.service-card,
.trust-card,
.process-card,
.contact-panel,
.about-image-card,
.hero-visual-card {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(18, 61, 102, 0.08);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.metric-card {
    padding: 1.15rem 1.2rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(233, 244, 255, 0.96));
}

.metric-number {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--ink);
}

.metric-label {
    color: var(--muted);
    font-size: .92rem;
    margin-top: .35rem;
}

.hero-visual-card {
    position: relative;
    padding: 1rem;
    min-height: 100%;
    max-width: 560px;
    margin-left: auto;
    background:
        radial-gradient(circle at top left, rgba(217, 238, 255, 0.92), transparent 28%),
        radial-gradient(circle at bottom right, rgba(255, 240, 210, 0.92), transparent 30%),
        rgba(255, 255, 255, 0.9);
}

.hero-visual-image,
.about-image {
    width: 100%;
    aspect-ratio: 3 / 2;
    height: auto;
    display: block;
    border-radius: 24px;
    object-fit: cover;
    object-position: center;
    box-shadow: 0 18px 40px rgba(23, 50, 77, 0.16);
}

.floating-card-title,
.mini-title,
.contact-label {
    font-size: .84rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: .45rem;
}

.section-copy {
    max-width: 62ch;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.75;
}

.hero-badge-list {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}

.about-image-card {
    padding: 1rem;
    max-width: 500px;
    margin-right: auto;
    background:
        radial-gradient(circle at top, rgba(217, 238, 255, 0.8), transparent 30%),
        rgba(255, 255, 255, 0.86);
}

.soft-card,
.service-card,
.trust-card,
.process-card,
.contact-panel {
    padding: 1.5rem;
}

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

.service-card-photo {
    min-height: 320px;
    display: flex;
    align-items: flex-end;
    background-color: #dfeaf5;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.service-card-photo::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(10, 35, 58, 0.1) 42%, rgba(7, 29, 48, 0.82)),
        linear-gradient(135deg, rgba(23, 128, 217, 0.1), rgba(255, 178, 63, 0.08));
}

.service-card-content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 1.35rem;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(10, 35, 58, 0.78));
    backdrop-filter: blur(6px);
    color: #fff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.service-card-photo h3,
.service-card-photo p {
    color: #fff !important;
}

.service-card-photo .icon-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85), rgba(217, 238, 255, 0.72));
    color: #146ab5;
    box-shadow: 0 10px 24px rgba(7, 29, 48, 0.18);
}

.service-card-photo-1 {
    background-image: url("../img/service-card-1.webp");
}

.service-card-photo-2 {
    background-image: url("../img/service-card-2.webp");
}

.service-card-photo-3 {
    background-image: url("../img/service-card-3.webp");
}

.service-card-photo-4 {
    background-image: url("../img/service-card-4.webp");
}

.service-card-photo-5 {
    background-image: url("../img/service-card-5.webp");
}

.service-card-photo-6 {
    background-image: url("../img/service-card-6.webp");
}

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

.check-item {
    display: flex;
    gap: .8rem;
    align-items: flex-start;
    padding: 1rem 1.1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(52, 76, 84, 0.08);
    color: var(--ink);
}

.check-item i {
    color: #1780d9;
    margin-top: .1rem;
}

.service-card h3,
.trust-card h3,
.process-card h3 {
    margin-bottom: .85rem;
}

.trust-card,
.process-card {
    position: relative;
    overflow: hidden;
}

.trust-icon {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(23, 128, 217, 0.14), rgba(255, 178, 63, 0.24));
    color: var(--primary);
    font-size: 1.35rem;
}

.contact-banner {
    position: relative;
    overflow: hidden;
    padding: 2rem;
    border-radius: calc(var(--radius-xl) + 4px);
    background:
        linear-gradient(135deg, rgba(11, 42, 69, 0.88), rgba(15, 95, 164, 0.72)),
        url("../img/contact-banner.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border: 1px solid rgba(18, 61, 102, 0.08);
    box-shadow: var(--shadow);
}

.contact-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(7, 29, 48, 0.76), rgba(7, 29, 48, 0.38) 55%, rgba(7, 29, 48, 0.6)),
        radial-gradient(circle at top right, rgba(255, 178, 63, 0.22), transparent 26%);
}

.contact-banner > .row {
    position: relative;
    z-index: 1;
}

.contact-banner .eyebrow {
    background: rgba(255, 255, 255, 0.14);
    color: #f6fbff;
}

.contact-banner h2,
.contact-banner .section-copy {
    color: #f6fbff;
}

.contact-panel {
    display: grid;
    gap: 1rem;
}

.contact-item {
    padding: 1rem 1.1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(18, 61, 102, 0.1);
}

.contact-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
    word-break: break-word;
}

@media (max-width: 991.98px) {
    .hero-card,
    .public-hero,
    .panel-card,
    .glass-card,
    .service-highlight-card,
    .promo-card,
    .service-history-card,
    .stats-card,
    .schedule-card,
    .step-card {
        padding: 1.25rem;
        border-radius: 22px;
    }

    .display-5,
    .display-6 {
        font-size: 2.15rem;
    }

    .header-wa-contact {
        width: 100%;
        justify-content: center;
        margin: .35rem 0 .65rem;
    }

    .install-app-button-desktop {
        width: 100%;
        justify-content: center;
    }

    .company-hero,
    .install-qr-card,
    .contact-banner {
        padding: 1.35rem;
    }

    .company-hero-title {
        max-width: none;
    }

    .hero-visual-card,
    .about-image-card {
        max-width: none;
        margin-left: 0;
        margin-right: 0;
    }

    .timer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .brand-mark {
        width: 48px;
        height: 48px;
    }

    .brand-title {
        font-size: .98rem;
    }

    .brand-subtitle {
        font-size: .62rem;
    }

    .qr-public-brand {
        width: 100%;
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: .75rem;
    }

    .qr-public-brand-logo {
        width: 64px;
        height: 64px;
    }

    .wa-floating-button {
        right: 16px;
        bottom: 16px;
        width: 56px;
        height: 56px;
    }

    .install-app-button-mobile {
        left: 12px;
        bottom: 12px;
        max-width: calc(100vw - 84px);
        padding: .75rem .95rem;
    }

    .stat-pill,
    .tech-chip,
    .public-chip,
    .next-schedule-pill {
        width: 100%;
        justify-content: center;
    }

    .company-hero {
        padding: 1.2rem;
    }

    .install-qr-card {
        padding: 1.2rem;
    }

    .company-hero-title {
        font-size: 2rem;
    }

    .check-grid {
        grid-template-columns: 1fr;
    }

    .soft-card,
    .service-card,
    .trust-card,
    .process-card,
    .contact-panel,
    .metric-card {
        padding: 1.15rem;
        border-radius: 20px;
    }

    .service-card-photo {
        min-height: 280px;
    }

    .service-card-content {
        padding: 1.1rem;
        border-radius: 18px;
    }
}
