:root {
    --primary: #1d2c38;
    --primary-strong: #141f28;
    --primary-soft: #1f4b58;
    --accent: #008596;
    --accent-dark: #006b56;
    --accent-soft: #e6f7f5;
    --success: #2a9e5f;
    --bg: #f3f8f9;
    --bg-soft: #ebf3f4;
    --white: #ffffff;
    --text: #172434;
    --muted: #5b6b7a;
    --line: #d7e1ec;
    --line-strong: #bfd0e0;
    --radius: 20px;
    --radius-sm: 14px;
    --shadow: 0 18px 48px rgba(10, 37, 64, 0.12);
    --shadow-soft: 0 12px 24px rgba(10, 37, 64, 0.08);
    --transition: 0.25s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: var(--text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background:
        radial-gradient(circle at top left, rgba(0, 133, 150, 0.09), transparent 18rem),
        linear-gradient(180deg, #f8fbff 0%, var(--bg) 100%);
}

main {
    flex: 1 0 auto;
}

body.nav-open {
    overflow: hidden;
}

a {
    color: var(--primary);
    text-decoration: none;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

.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;
}

.container {
    width: min(1160px, 92%);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    height: 100px;
    background: #ffffff;
    backdrop-filter: blur(16px);
    transition: box-shadow var(--transition), background var(--transition), border-color var(--transition);
}

.site-header.is-scrolled {
    box-shadow: 0 8px 30px rgba(10, 37, 64, 0.1);
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(191, 208, 224, 0.9);
}

.nav-wrap {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    height: 100px;
    gap: 1rem;
    max-width: none;
    width: 100%;
    padding: 0;
    padding-right: clamp(1rem, 4%, 2rem);
    border-bottom: 1px solid rgba(215, 225, 236, 0.8);
}

.logo {
    display: flex;
    align-items: stretch;
    margin: 0;
    padding: 0;
}

.logo-img {
    height: 100px;
    width: auto;
    object-fit: cover;
    display: block;
    margin: 0;
    transform: scale(1.05);
    transform-origin: left center;
}

.menu-toggle {
    align-self: center;
    border: 1px solid var(--line);
    background: var(--white);
    color: var(--primary);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    font-weight: 700;
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.menu-toggle:hover {
    transform: translateY(-1px);
    border-color: var(--line-strong);
}

.menu-toggle:focus-visible,
.site-nav a:focus-visible,
.btn:focus-visible,
.service-chip:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(255, 122, 26, 0.22);
    outline-offset: 2px;
}

.site-nav {
    position: absolute;
    top: 100px;
    left: 0;
    right: 0;
    display: none;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 22px 35px rgba(10, 37, 64, 0.12);
}

.site-nav.is-open {
    display: grid;
    gap: 0.55rem;
}

.site-nav a {
    color: var(--primary);
    font-weight: 700;
    padding: 0.75rem 0.95rem;
    border-radius: 12px;
    transition: background var(--transition), color var(--transition), transform var(--transition);
}

.site-nav a.active,
.site-nav a:hover {
    background: #edf4fb;
    color: var(--primary-soft);
}

.hero,
.page-hero {
    position: relative;
    overflow: hidden;
    color: var(--white);
    padding: 5.5rem 0 4.4rem;
    background:
        radial-gradient(circle at 15% 20%, rgba(0, 133, 150, 0.28), transparent 18rem),
        radial-gradient(circle at 85% 25%, rgba(42, 158, 95, 0.3), transparent 20rem),
        linear-gradient(145deg, #131f29 0%, #1b2f3b 48%, #1f4b58 100%);
}

.hero {
    background:
        linear-gradient(120deg, rgba(19, 31, 41, 0.82) 0%, rgba(26, 45, 56, 0.8) 55%, rgba(0, 133, 150, 0.55) 100%),
        url("/assets/images/project-1.jpg") center / cover no-repeat;
}

.hero::after,
.page-hero::after {
    content: "";
    position: absolute;
    inset: auto -10% -5rem auto;
    width: 18rem;
    height: 18rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    filter: blur(10px);
}

.hero h1,
.page-hero h1 {
    font-size: clamp(2rem, 6vw, 3.5rem);
    line-height: 1.08;
    margin: 0.25rem 0 1rem;
    letter-spacing: -0.03em;
}

.subheadline,
.page-hero p {
    font-size: 1.06rem;
    color: rgba(235, 241, 248, 0.95);
    max-width: 62ch;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 0.75rem;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #9fc8ff;
}

.eyebrow::before {
    content: "";
    width: 1.25rem;
    height: 2px;
    background: currentColor;
}

.hero-grid,
.split,
.contact-grid {
    display: grid;
    gap: 1.3rem;
}

.hero-copy {
    position: relative;
    z-index: 1;
}

.hero-badges,
.contact-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1.25rem;
}

.hero-badges span,
.hero-badges a,
.contact-highlights span,
.service-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    border-radius: 999px;
    padding: 0.5rem 0.9rem;
    font-size: 0.88rem;
    font-weight: 700;
}

.hero-badges span {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: var(--white);
}

.hero-badges a {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--white);
    transition: transform var(--transition), background var(--transition);
}

.hero-badges a:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.22);
}

.hero-card,
.content-panel,
.trust-block,
.contact-card,
.contact-form-wrap,
.services-toolbar {
    position: relative;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hero-card {
    z-index: 1;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 1.5rem;
}

.card-kicker {
    margin: 0 0 0.6rem;
    color: #b9d6f5;
    font-size: 0.9rem;
    font-weight: 700;
}

.hero-card h2 {
    color: var(--white);
}

.hero-card ul {
    margin: 0.9rem 0 0;
    padding-left: 1.1rem;
    color: rgba(235, 241, 248, 0.92);
}

.hero-mini-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
    margin-top: 1.25rem;
}

.mini-stat {
    padding: 0.8rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    text-align: center;
}

.mini-stat strong {
    display: block;
    font-size: 1.35rem;
    color: var(--white);
}

.mini-stat span {
    font-size: 0.82rem;
    color: rgba(235, 241, 248, 0.8);
}

.section {
    padding: 4rem 0;
}

.section-alt {
    background:
        linear-gradient(180deg, rgba(238, 243, 248, 0.8) 0%, rgba(232, 239, 247, 0.95) 100%);
}

.section-heading {
    max-width: 50rem;
    margin-bottom: 1.5rem;
}

.section-heading p:last-child,
.content-panel p:last-child,
.trust-block p:last-child {
    margin-bottom: 0;
}

.intro-proactive {
    font-size: 1.15rem;
    color: var(--primary-soft);
    margin-bottom: 0.75rem !important;
}

h2 {
    margin: 0 0 0.9rem;
    font-size: clamp(1.55rem, 4vw, 2.45rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--primary);
}

h3 {
    margin-top: 0;
    margin-bottom: 0.55rem;
    color: var(--primary);
    font-size: 1.18rem;
}

p {
    margin-top: 0;
}

.card-grid,
.list-grid,
.service-preview-grid,
.footer-grid {
    display: grid;
    gap: 1rem;
}

.card,
.service-preview-card {
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    border: 1px solid rgba(215, 225, 236, 0.9);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    padding: 1.3rem;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.card:hover,
.service-preview-card:hover,
.interactive-card.is-active {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: rgba(255, 122, 26, 0.26);
}

.live-card {
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background-color var(--transition);
}

.live-card::before {
    content: "";
    position: absolute;
    left: var(--mouse-x, 50%);
    top: var(--mouse-y, 50%);
    width: 180px;
    height: 180px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255, 122, 26, 0.2) 0%, rgba(255, 122, 26, 0) 70%);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

.live-card.is-active,
.live-card.is-pinned,
.live-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: rgba(255, 122, 26, 0.34);
}

.live-card.is-active::before,
.live-card.is-pinned::before,
.live-card:hover::before {
    opacity: 1;
}

.live-card:focus-visible {
    outline: 3px solid rgba(255, 122, 26, 0.28);
    outline-offset: 2px;
}

.live-card.is-link-card {
    cursor: pointer;
}

.live-card.is-pinned {
    background: linear-gradient(180deg, #ffffff 0%, #fff8f1 100%);
}

.feature-card {
    min-height: 100%;
}

.list-grid p,
.list-grid a {
    margin: 0;
    padding: 1rem 1rem 1rem 1.1rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(215, 225, 236, 0.9);
    border-left: 4px solid var(--accent);
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
}

.list-grid a {
    color: var(--text);
    font-weight: 600;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.list-grid a:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    border-color: rgba(0, 133, 150, 0.32);
}

.content-panel,
.trust-block,
.contact-card,
.contact-form-wrap,
.services-toolbar {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(215, 225, 236, 0.9);
    padding: 1.45rem;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.6rem;
    font-weight: 700;
    color: var(--primary-soft);
}

.text-link::after {
    content: "->";
    transition: transform var(--transition);
}

.text-link:hover::after {
    transform: translateX(3px);
}

.trust-block ul,
.card ul {
    margin: 0.8rem 0 0;
    padding-left: 1.1rem;
}

.cta-row,
.center-actions,
.service-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.center-actions {
    justify-content: center;
    margin-top: 1.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.85rem 1.15rem;
    border: 2px solid transparent;
    border-radius: 14px;
    font-weight: 800;
    letter-spacing: -0.01em;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--white);
    box-shadow: 0 14px 28px rgba(255, 122, 26, 0.28);
}

.btn-secondary {
    background: linear-gradient(135deg, #18b255 0%, #129145 100%);
    color: var(--white);
    box-shadow: 0 14px 28px rgba(22, 163, 74, 0.22);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.8);
}

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

.btn-light-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.72);
}

.cta-band {
    color: var(--white);
    padding: 1.45rem 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(255, 122, 26, 0.2), transparent 16rem),
        linear-gradient(130deg, #08182d 0%, #0c2341 100%);
}

.section.cta-band {
    padding: 1.05rem 0;
}

.cta-band h2,
.cta-band p {
    color: var(--white);
}

.cta-band-inner {
    display: grid;
    gap: 0.35rem;
    align-items: center;
    justify-items: center;
    text-align: center;
    max-width: 620px;
    margin: 0 auto;
}

.cta-band h2 {
    margin-bottom: 0.3rem;
    font-size: clamp(1.1rem, 3vw, 1.42rem);
}

.cta-band p {
    margin: 0;
    font-size: 0.9rem;
    max-width: 44ch;
}

.cta-band .cta-row {
    justify-content: center;
    margin-top: 0.45rem;
    gap: 0.55rem;
}

.cta-band .btn {
    min-height: 40px;
    padding: 0.58rem 0.82rem;
    border-radius: 11px;
    font-size: 0.9rem;
}

.service-preview-card {
    min-height: 100%;
}

.project-gallery {
    display: grid;
    gap: 1rem;
}

.project-card {
    display: grid;
    gap: 0.65rem;
    padding: 0.7rem;
    border-radius: var(--radius);
    border: 1px solid rgba(215, 225, 236, 0.9);
    background: #fff;
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.project-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: rgba(0, 133, 150, 0.35);
}

.project-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 14px;
}

.project-card span {
    color: var(--primary);
    font-weight: 700;
    padding-inline: 0.2rem;
}

.service-tag {
    width: fit-content;
    margin-bottom: 0.8rem;
    background: var(--accent-soft);
    color: var(--accent-dark);
}

.services-toolbar {
    display: grid;
    gap: 1rem;
    margin-bottom: 1rem;
}

.service-filter-wrap {
    width: 100%;
}

.service-search {
    width: 100%;
}

.service-chip-row {
    margin-bottom: 1rem;
}

.service-chip {
    border: 1px solid var(--line);
    background: var(--white);
    color: var(--primary);
    border-radius: 999px;
    padding: 0.7rem 1rem;
    font-weight: 700;
    transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}

.service-chip:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 122, 26, 0.4);
}

.service-chip.is-active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.service-results-text {
    margin-bottom: 1rem;
    color: var(--muted);
    font-weight: 600;
}

.service-card.is-hidden {
    display: none;
}

.contact-intro,
.form-intro {
    color: var(--muted);
}

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

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

.form-progress {
    width: 100%;
    height: 10px;
    border-radius: 999px;
    overflow: hidden;
    background: #edf3f9;
}

.form-progress-bar {
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--accent) 0%, #ffb06e 100%);
    transition: width var(--transition);
}

.form-row {
    display: grid;
    gap: 0.45rem;
}

.form-row label,
.label-row {
    font-weight: 700;
    color: var(--primary);
}

.label-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.char-count,
.field-hint,
.small-text {
    font-size: 0.92rem;
    color: var(--muted);
}

input,
select,
textarea {
    width: 100%;
    padding: 0.9rem 0.95rem;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: #fbfdff;
    color: var(--text);
    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

input:hover,
select:hover,
textarea:hover {
    border-color: var(--line-strong);
}

input:focus,
select:focus,
textarea:focus {
    border-color: rgba(255, 122, 26, 0.52);
    box-shadow: 0 0 0 4px rgba(255, 122, 26, 0.12);
    background: var(--white);
}

.form-row.is-valid input,
.form-row.is-valid select,
.form-row.is-valid textarea {
    border-color: rgba(22, 163, 74, 0.45);
}

.form-row.is-invalid input,
.form-row.is-invalid select,
.form-row.is-invalid textarea {
    border-color: rgba(220, 38, 38, 0.45);
}

textarea {
    min-height: 9rem;
    resize: vertical;
}

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

.alert {
    padding: 0.95rem 1rem;
    border-radius: 16px;
    margin-bottom: 0.9rem;
}

.alert.success {
    background: #ecfdf3;
    border: 1px solid rgba(22, 163, 74, 0.3);
    color: #0d6a3f;
}

.alert.error {
    background: #fff3f1;
    border: 1px solid rgba(220, 38, 38, 0.25);
    color: #8f1d15;
}

.alert ul {
    margin: 0;
    padding-left: 1rem;
}

.floating-actions {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    display: grid;
    gap: 0.65rem;
    z-index: 120;
}

.fab {
    width: 56px;
    height: 56px;
    min-width: 56px;
    min-height: 56px;
    padding: 0;
    border-radius: 999px;
    color: var(--white);
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}

.fab:hover {
    transform: translateY(-3px);
}

.fab svg {
    width: 24px;
    height: 24px;
    display: block;
}

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

.fab-whatsapp {
    background: linear-gradient(135deg, #18b255 0%, #119348 100%);
}

.site-footer {
    background:
        radial-gradient(circle at 15% 10%, rgba(0, 133, 150, 0.14), transparent 12rem),
        linear-gradient(180deg, #121d26 0%, #1a2d38 100%);
    color: #d7e4f2;
    padding: 2.2rem 0 0;
}

.footer-brand-logo {
    width: min(220px, 100%);
    height: auto;
    object-fit: contain;
    margin-bottom: 0.6rem;
}

.site-footer h3,
.site-footer h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.site-footer p {
    margin: 0.22rem 0;
}

.site-footer a {
    color: #dce9f7;
    transition: color var(--transition);
}

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

.footer-top {
    display: grid;
    gap: 1.2rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid rgba(183, 204, 228, 0.22);
}

.footer-brand h3 {
    margin-bottom: 0.4rem;
}

.footer-brand p {
    max-width: 42ch;
    color: #c9d8ea;
}

.footer-grid {
    display: grid;
    gap: 1rem;
}

.footer-col {
    min-width: 0;
}

.footer-col p {
    color: #d7e4f2;
}

.footer-col a.active {
    color: #ffffff;
    font-weight: 700;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.6rem 1rem;
    padding-top: 0.9rem;
    padding-bottom: 0;
}

.footer-copy {
    margin: 0;
    color: #a9bfd7;
    font-size: 0.92rem;
}

.footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1rem;
}

.footer-bottom-links a {
    font-size: 0.9rem;
    color: #c9d8ea;
}

.fade-in {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 768px) {
    .nav-wrap {
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: stretch;
    }

    .site-nav {
        grid-column: 3;
        margin-right: clamp(2rem, 15%, 8rem);
        align-self: center;
        position: static;
        display: flex;
        gap: 0.65rem;
        align-items: center;
        padding: 0;
        background: transparent;
        border: 0;
        box-shadow: none;
    }

    .logo {
        flex-shrink: 0;
    }

    .menu-toggle {
        display: none;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.9fr);
        gap: 1.8rem;
        align-items: center;
    }

    .card-grid,
    .service-preview-grid,
    .project-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-top {
        grid-template-columns: minmax(240px, 1fr) minmax(0, 2fr);
        align-items: start;
        gap: 1.8rem;
    }

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

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

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

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

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

    .contact-grid {
        grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.2fr);
        align-items: start;
    }

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

    .form-row-full {
        grid-column: 1 / -1;
    }

    .services-toolbar {
        grid-template-columns: minmax(0, 1fr) 320px;
        align-items: end;
    }
}

@media (min-width: 1024px) {
    body {
        font-size: 17px;
    }

    .section {
        padding: 4.6rem 0;
    }

    .card-grid,
    .service-preview-grid,
    .project-gallery {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .card-grid-four {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

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

@media (max-width: 767px) {
    .section {
        padding: 3rem 0;
    }

    .hero,
    .page-hero {
        padding-top: 4.7rem;
        padding-bottom: 3.5rem;
    }

    .hero h1,
    .page-hero h1 {
        font-size: clamp(1.65rem, 8vw, 2.1rem);
    }

    .hero-badges span,
    .contact-highlights span {
        font-size: 0.8rem;
        padding: 0.42rem 0.72rem;
    }

    .floating-actions {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        width: auto;
        display: flex;
        gap: 0.55rem;
    }

    .fab {
        width: 48px;
        height: 48px;
        min-width: 48px;
        min-height: 48px;
        margin-left: 0;
    }

    .cta-row .btn {
        width: 100%;
    }

    .cta-band {
        padding: 1.2rem 0;
    }

    .section.cta-band {
        padding: 0.8rem 0;
    }

    .cta-band .cta-row .btn {
        width: auto;
        min-width: 118px;
        min-height: 38px;
        padding: 0.5rem 0.72rem;
        font-size: 0.84rem;
    }

    .contact-form-wrap,
    .contact-card,
    .content-panel,
    .trust-block,
    .services-toolbar {
        padding: 1.1rem;
    }

    .site-footer {
        padding-top: 1.8rem;
        padding-bottom: 0;
    }

    .site-footer h3,
    .site-footer h4 {
        margin-bottom: 0.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-copy,
    .footer-bottom-links a {
        font-size: 0.88rem;
    }


    .hero-mini-stats {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .live-card,
    .live-card::before {
        transition: none;
    }

    .live-card.is-active,
    .live-card.is-pinned,
    .live-card:hover {
        transform: none;
    }
}
