:root {
    --blue: #0077c8;
    --blue-strong: #005f9f;
    --blue-soft: #e8f4fc;
    --ink: #1f252c;
    --muted: #66717f;
    --line: #dce5ee;
    --paper: #ffffff;
    --soft: #f5f8fb;
    --green: #18a657;
    --shadow: 0 18px 48px rgba(31, 37, 44, .10);
    --radius: 8px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

body.menu-open {
    overflow: hidden;
}

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

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

.container {
    width: min(1120px, calc(100% - 32px));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 50;
    transform: translateY(-140%);
    background: var(--ink);
    color: white;
    padding: 10px 14px;
    border-radius: var(--radius);
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(255, 255, 255, .94);
    border-bottom: 1px solid rgba(220, 229, 238, .86);
    backdrop-filter: blur(14px);
}

.header-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 180px;
}

.brand img {
    width: auto;
    max-height: 54px;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 2px solid var(--blue);
    border-radius: 7px;
    color: var(--blue);
    font-weight: 800;
}

.brand-copy {
    display: grid;
}

.brand-copy strong {
    font-size: 1.12rem;
    line-height: 1;
}

.brand-copy small {
    color: var(--muted);
    font-size: .72rem;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    color: #39424d;
    font-size: .95rem;
}

.main-nav a:hover {
    color: var(--blue);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: white;
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: var(--ink);
}

.hero {
    position: relative;
    min-height: 620px;
    display: grid;
    align-items: center;
    overflow: hidden;
    color: white;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 82% 22%, rgba(0, 119, 200, .34), transparent 28%),
        linear-gradient(90deg, rgba(18, 27, 37, .96), rgba(18, 27, 37, .74)),
        linear-gradient(135deg, #1f252c, #0f1c28);
    background-size: cover;
    background-position: center;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: rgba(255, 255, 255, .16);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 740px;
    padding: 96px 0;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--blue);
    font-size: .78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.hero .eyebrow,
.section-dark .eyebrow {
    color: #69c4ff;
}

h1,
h2,
h3,
p {
    overflow-wrap: anywhere;
}

h1 {
    margin: 0;
    max-width: 760px;
    font-size: clamp(2.4rem, 6vw, 4.55rem);
    line-height: 1.02;
    text-wrap: balance;
}

h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.1rem);
    line-height: 1.08;
    text-wrap: balance;
}

h3 {
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.2;
}

.hero-subtitle {
    margin: 22px 0 8px;
    color: #d6e6f4;
    font-size: clamp(1.1rem, 2.2vw, 1.35rem);
    font-weight: 500;
}

.hero-content p:not(.eyebrow):not(.hero-subtitle) {
    max-width: 680px;
    color: #dbe7f0;
    font-size: 1.05rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 20px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    gap: 10px;
    font-weight: 600;
}

.btn-primary {
    background: var(--blue);
    color: white;
    box-shadow: 0 12px 28px rgba(0, 119, 200, .26);
}

.btn-primary:hover {
    background: var(--blue-strong);
}

.btn-ghost {
    border-color: rgba(255, 255, 255, .34);
    color: white;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, .10);
}

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

.btn-outline {
    border-color: var(--line);
    color: var(--ink);
}

.signal-band {
    position: relative;
    z-index: 2;
    margin-top: -54px;
}

.signal-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.signal-grid a {
    min-height: 108px;
    padding: 22px;
    border-right: 1px solid var(--line);
}

.signal-grid a:last-child {
    border-right: 0;
}

.signal-grid strong {
    display: block;
    margin-bottom: 5px;
    color: var(--ink);
    font-size: 1.05rem;
}

.signal-grid span {
    color: var(--muted);
    font-size: .94rem;
}

.section {
    padding: 92px 0;
}

.section-muted {
    background: var(--soft);
}

.section-dark {
    background: var(--ink);
    color: white;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 34px;
}

.section-heading.compact {
    text-align: center;
    margin-inline: auto;
}

.section-heading p:not(.eyebrow) {
    color: var(--muted);
}

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

.feature-card,
.service-card,
.process-grid article,
.review-box,
.empty-state {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: white;
}

.feature-card {
    min-height: 178px;
    padding: 24px;
}

.feature-card span {
    display: inline-grid;
    place-items: center;
    min-width: 44px;
    height: 34px;
    margin-bottom: 18px;
    padding: 0 10px;
    border-radius: 999px;
    background: var(--blue-soft);
    color: var(--blue-strong);
    font-weight: 900;
    font-size: .82rem;
}

.feature-card p,
.service-card p,
.process-grid p {
    color: var(--muted);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    align-items: start;
}

.service-card {
    padding: 28px;
}

.service-card ul {
    display: grid;
    gap: 10px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.service-card li {
    position: relative;
    padding-left: 18px;
    color: #34404c;
}

.service-card li::before,
.check-list span::before {
    content: "";
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--blue);
}

.service-card li::before {
    top: .7em;
    left: 0;
}

.split-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
    gap: 56px;
    align-items: center;
}

.split-grid p {
    color: var(--muted);
}

.section-dark .split-grid p {
    color: #d5e3ee;
}

.pill-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 24px 0 30px;
}

.pill-grid span,
.brand-cloud span {
    border: 1px solid var(--line);
    border-radius: 999px;
    background: white;
    padding: 9px 14px;
    color: var(--ink);
    font-weight: 700;
}

.visual-panel {
    display: grid;
    place-items: center;
    min-height: 360px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, #edf6fc, #ffffff);
    border: 1px solid var(--line);
    overflow: hidden;
}

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

.visual-panel.soft {
    display: grid;
    gap: 14px;
    padding: 28px;
}

.panel-placeholder {
    display: grid;
    place-items: center;
    width: 180px;
    height: 180px;
    border: 3px solid var(--blue);
    border-radius: 18px;
    color: var(--blue);
    font-size: 3rem;
    font-weight: 900;
}

.check-list {
    display: grid;
    gap: 12px;
}

.check-list span {
    position: relative;
    min-height: 46px;
    padding: 12px 16px 12px 34px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .06);
}

.check-list span::before {
    top: 21px;
    left: 16px;
    background: #69c4ff;
}

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

.process-grid article {
    min-height: 164px;
    padding: 20px;
}

.process-grid span {
    display: block;
    color: var(--blue);
    font-weight: 900;
    margin-bottom: 16px;
}

.brand-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.keep-together {
    white-space: nowrap;
}

.metric-card {
    width: 100%;
    padding: 26px;
    border-radius: var(--radius);
    background: white;
    border: 1px solid var(--line);
}

.metric-card strong {
    display: block;
    color: var(--blue);
    font-size: 2.6rem;
    line-height: 1;
}

.metric-card span {
    color: var(--muted);
}

.review-box {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: center;
    padding: 34px;
    box-shadow: var(--shadow);
}

.rating {
    display: grid;
    gap: 8px;
    justify-items: end;
}

.rating strong {
    color: var(--blue);
    font-size: 3rem;
    line-height: 1;
}

.rating span {
    color: #f5b301;
}

.rating small {
    color: var(--muted);
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 420px) minmax(320px, 1fr);
    gap: 42px;
    align-items: stretch;
}

.contact-list {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.contact-list a,
.contact-list > span {
    display: grid;
    gap: 4px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: white;
}

.contact-list strong {
    color: var(--blue);
}

.contact-list span span {
    color: var(--muted);
}

.map-box {
    min-height: 420px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--soft);
}

.map-box iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: 0;
}

.empty-state {
    padding: 44px;
    text-align: center;
}

.site-footer {
    background: #151a20;
    color: white;
    padding: 58px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(280px, 1.3fr) minmax(180px, .55fr) minmax(180px, .55fr);
    gap: 42px;
}

.footer-grid--compact {
    grid-template-columns: minmax(280px, 1.3fr) minmax(180px, .55fr);
}

.footer-brand {
    display: grid;
    gap: 8px;
    margin-bottom: 18px;
}

.footer-brand img,
.footer-logo {
    width: 260px;
    height: 100px;
    max-width: 100%;
    max-height: 100px;
    object-fit: contain;
    object-position: left center;
}

.footer-brand strong {
    font-size: 1.35rem;
}

.footer-brand span,
.site-footer p,
.footer-bottom {
    color: #aebdca;
}

.footer-links,
.footer-social {
    display: grid;
    align-content: start;
    gap: 10px;
}

.footer-links h2,
.footer-social h2 {
    margin: 0 0 8px;
    font-size: 1rem;
}

.footer-links a {
    color: #edf6fc;
}

.footer-social {
    justify-items: end;
    text-align: right;
}

.social-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.social-links a {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    color: white;
    font-size: 1.15rem;
}

.social-links a:hover {
    border-color: #69c4ff;
    color: #69c4ff;
}

.footer-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 8px 18px;
    border-radius: var(--radius);
    background: var(--blue);
    color: white;
    font-weight: 600;
}

.footer-bottom {
    margin-top: 34px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .10);
    font-size: .9rem;
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 45;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--green);
    color: white;
    font-size: 1.55rem;
    box-shadow: 0 14px 34px rgba(24, 166, 87, .34);
}

.whatsapp-float:hover {
    background: #128547;
}

@media (max-width: 980px) {
    .main-nav {
        position: fixed;
        inset: 78px 0 auto;
        display: none;
        grid-template-columns: 1fr;
        gap: 0;
        background: white;
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow);
    }

    .main-nav.is-open {
        display: grid;
    }

    .main-nav a {
        padding: 18px 24px;
        border-top: 1px solid var(--line);
    }

    .menu-toggle {
        display: block;
    }

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

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

    .footer-social {
        justify-items: start;
        text-align: left;
    }

    .social-links {
        justify-content: flex-start;
    }
}

@media (max-width: 680px) {
    .container {
        width: min(100% - 24px, 1120px);
    }

    .header-inner {
        min-height: 70px;
    }

    .brand img {
        max-height: 44px;
    }

    .hero {
        min-height: 560px;
    }

    .hero-content {
        padding: 72px 0 92px;
    }

    .hero-actions,
    .btn {
        width: 100%;
    }

    .signal-band {
        margin-top: 0;
    }

    .signal-grid,
    .feature-grid,
    .service-grid,
    .process-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .signal-grid a {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .section {
        padding: 66px 0;
    }

    .review-box {
        grid-template-columns: 1fr;
    }

    .rating {
        justify-items: start;
    }

    .whatsapp-float {
        right: 14px;
        bottom: 14px;
        width: 52px;
        height: 52px;
        font-size: 1.4rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition: none !important;
        animation: none !important;
    }
}

/* Current HardServ theme */
.site-header .navbar {
    min-height: 112px;
    padding-block: 6px;
    border-bottom: 1px solid rgba(220, 229, 238, .86);
    box-shadow: 0 8px 28px rgba(31, 37, 44, .04);
}

.navbar-brand {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    padding-block: 0;
}

.navbar-brand img {
    width: 260px;
    height: 100px;
    max-width: 100%;
    max-height: 100px;
    object-fit: contain;
    object-position: left center;
}

.navbar .nav-link {
    color: #34404c;
    font-weight: 600;
}

.navbar .nav-link:hover {
    color: var(--blue);
}

.hero-section {
    position: relative;
    min-height: 620px;
    display: grid;
    align-items: center;
    overflow: hidden;
    color: white;
    background-image:
        linear-gradient(90deg, rgba(18, 27, 37, .94), rgba(18, 27, 37, .62)),
        var(--hero-image);
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 82% 22%, rgba(0, 119, 200, .34), transparent 28%);
}

.hero-section .hero-content {
    position: relative;
    z-index: 1;
    max-width: 820px;
    padding: 96px 12px;
}

.hero-section h1 {
    color: white;
}

.hero-section .hero-subtitle {
    max-width: 760px;
}

.quick-services {
    position: relative;
    z-index: 3;
    margin-top: -54px;
}

.quick-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: white;
    box-shadow: var(--shadow);
}

.quick-grid article {
    min-height: 118px;
    display: grid;
    align-content: center;
    gap: 6px;
    padding: 22px;
    border-right: 1px solid var(--line);
}

.quick-grid article:last-child {
    border-right: 0;
}

.quick-grid i {
    color: var(--blue);
    font-size: 1.5rem;
}

.quick-grid strong {
    font-size: 1.06rem;
}

.quick-grid span {
    color: var(--muted);
    font-size: .94rem;
}

.section-pad {
    padding: 92px 0;
}

.section-soft {
    background: var(--soft);
}

.section-heading {
    max-width: 780px;
    margin-bottom: 34px;
}

.section-heading h2 {
    color: var(--ink);
}

.feature-card {
    height: 100%;
    padding: 24px;
}

.feature-card i,
.service-card-head i,
.process-grid i,
.empty-state i {
    color: var(--blue);
    font-size: 1.65rem;
}

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

.service-card {
    padding: 26px;
    height: 100%;
}

.service-card-head {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 18px;
}

.service-card ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.service-card li {
    position: relative;
    padding-left: 18px;
    color: #34404c;
}

.service-card li::before {
    content: "";
    position: absolute;
    top: .72em;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--blue);
}

.build-section,
.about-section {
    background: white;
}

.lead-text {
    color: var(--muted);
    font-size: 1.05rem;
    text-wrap: pretty;
}

.build-section .lead-text {
    max-width: 52ch;
    margin: 22px 0 0;
    line-height: 1.75;
}

.build-section .pill-grid {
    margin-top: 28px;
}

.section-image {
    width: 100%;
    min-height: 320px;
    max-height: 460px;
    object-fit: cover;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--soft);
}

.companies-section {
    background: var(--ink);
    color: white;
}

.companies-section p {
    color: #d5e3ee;
}

.company-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.company-list span {
    display: flex;
    gap: 10px;
    align-items: center;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .06);
}

.company-list i {
    color: #69c4ff;
}

.brands-section {
    padding: 78px 0;
    background: var(--soft);
    text-align: center;
}

.brands-section h2 {
    max-width: 920px;
    margin-inline: auto;
    text-wrap: balance;
}

.brands-section .heading-line {
    display: block;
    text-wrap: pretty;
}

.brands-section .brand-cloud {
    margin-top: 48px;
}

.footer-brand p,
.footer-bottom {
    text-wrap: pretty;
}

.reviews-section {
    padding: 78px 0;
}

.reviews-box {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 28px;
    align-items: center;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: white;
    box-shadow: var(--shadow);
}

.reviews-score {
    display: grid;
    justify-items: end;
    gap: 3px;
}

.reviews-score strong {
    color: var(--blue);
    font-size: 3rem;
    line-height: 1;
}

.reviews-score span {
    color: #f5b301;
    font-size: 1.1rem;
}

.reviews-score small {
    color: var(--muted);
}

.contact-section {
    background: var(--soft);
}

.contact-list {
    display: grid;
    gap: 12px;
    margin-top: 26px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin: 0;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: white;
}

a.contact-item {
    transition: border-color .2s ease, box-shadow .2s ease;
}

a.contact-item:hover {
    border-color: rgba(0, 119, 200, .48);
    box-shadow: 0 8px 24px rgba(31, 37, 44, .08);
}

.contact-list i {
    color: var(--blue);
    font-size: 1.3rem;
}

.contact-list strong {
    display: block;
    color: var(--ink);
}

.contact-item > span {
    min-width: 0;
}

.contact-item > span > span {
    display: block;
    color: var(--muted);
    overflow-wrap: normal;
}

.map-frame {
    height: 100%;
    min-height: 420px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: white;
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: 0;
}

@media (max-width: 991px) {
    .site-header .navbar {
        min-height: 88px;
    }

    .navbar-brand img {
        width: 230px;
        height: 88px;
    }

    .quick-grid,
    .services-grid,
    .company-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .reviews-box {
        grid-template-columns: 1fr;
    }

    .reviews-score {
        justify-items: start;
    }
}

@media (max-width: 640px) {
    .site-header .navbar {
        min-height: 78px;
    }

    .navbar-brand img {
        width: 200px;
        height: 77px;
    }

    .hero-section {
        min-height: 560px;
    }

    .hero-section .hero-content {
        padding: 72px 12px 92px;
    }

    .quick-services {
        margin-top: 0;
    }

    .quick-grid,
    .services-grid,
    .company-list {
        grid-template-columns: 1fr;
    }

    .quick-grid article {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .section-pad {
        padding: 66px 0;
    }
}
