:root {
    --blue-950: #061728;
    --blue-900: #08233e;
    --blue-800: #0b3158;
    --blue-700: #0b4d92;
    --blue-500: #1d77d3;
    --cyan: #39b6ff;
    --sky: #e9f5ff;
    --ink: #101820;
    --muted: #5b6775;
    --line: #dfe8f2;
    --bg: #f5f8fc;
    --white: #ffffff;
    --shadow: 0 24px 80px rgba(6, 23, 40, .13);
    --radius: 28px;
    --radius-lg: 38px;
    --container: 1180px;
    --ease-out: cubic-bezier(.16, 1, .3, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
}

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

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

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

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

.skip-link {
    position: fixed;
    left: 16px;
    top: 16px;
    z-index: 999;
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--white);
    color: var(--blue-900);
    box-shadow: var(--shadow);
    transform: translateY(-140%);
}

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

@keyframes softFloat {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(0, -14px, 0) scale(1.018);
    }
}

@keyframes glowDrift {
    0% {
        transform: translate3d(-6%, -4%, 0) rotate(0deg);
        opacity: .55;
    }
    50% {
        transform: translate3d(6%, 5%, 0) rotate(8deg);
        opacity: .85;
    }
    100% {
        transform: translate3d(-6%, -4%, 0) rotate(0deg);
        opacity: .55;
    }
}

@keyframes buttonSheen {
    0% {
        transform: translateX(-130%) skewX(-18deg);
    }
    42%, 100% {
        transform: translateX(170%) skewX(-18deg);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translate3d(0, 18px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(245, 248, 252, .88);
    border-bottom: 1px solid rgba(8, 35, 62, .08);
    backdrop-filter: blur(18px);
}

.topline {
    background: var(--blue-950);
    color: rgba(255, 255, 255, .86);
    font-size: .88rem;
}

.topline__inner {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
}

.topline__inner span {
    margin-right: auto;
    color: var(--cyan);
    font-weight: 700;
}

.header-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    position: relative;
    min-width: 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    flex: 0 1 auto;
    min-width: 0;
    padding: 8px 14px;
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 10px 34px rgba(6, 23, 40, .08);
}

.brand img {
    width: 210px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 0;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.main-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 13px;
    border-radius: 999px;
    color: var(--blue-900);
    font-weight: 700;
    font-size: .95rem;
}

.main-nav a:hover,
.main-nav a.is-active {
    background: var(--sky);
    color: var(--blue-700);
}

.main-nav .nav-cta {
    margin-left: 8px;
    background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
    color: var(--white);
    box-shadow: 0 12px 30px rgba(29, 119, 211, .28);
}

.main-nav .nav-cta:hover {
    background: linear-gradient(135deg, var(--blue-800), var(--blue-700));
    color: var(--white);
}

.menu-toggle {
    display: none;
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 18px;
    background: var(--blue-950);
    color: var(--white);
    cursor: pointer;
    place-items: center;
    padding: 0;
    flex: 0 0 52px;
}

.menu-toggle span {
    width: 22px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
    display: block;
    margin: 3px 0;
}

.menu-toggle b {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
}

.section {
    padding: clamp(64px, 8vw, 110px) 0;
}

.section--tight {
    padding: 34px 0 0;
}

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

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

.section-head h2,
.split-grid h2,
.cta-card h2,
.page-hero h1,
.hero h1,
.service-hero h1 {
    margin: 0;
    color: var(--blue-950);
    letter-spacing: -.035em;
    line-height: 1.06;
}

.section-head h2 {
    font-size: clamp(1.85rem, 3.4vw, 3.35rem);
}

.section-head p,
.page-hero p,
.hero p,
.service-hero p,
.split-grid p {
    color: var(--muted);
    font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    max-width: 100%;
    margin-bottom: 14px;
    color: var(--blue-700);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .11em;
    font-size: .78rem;
}

.eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    border-radius: 999px;
    background: var(--cyan);
}

.button-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.button {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    padding: 0 22px;
    background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
    color: var(--white);
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 18px 44px rgba(29, 119, 211, .28);
}

.button::after {
    content: "";
    position: absolute;
    inset: -45% auto -45% -40%;
    width: 42%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .42), transparent);
    transform: translateX(-130%) skewX(-18deg);
    pointer-events: none;
}

.button:hover::after {
    animation: buttonSheen 1.15s var(--ease-out);
}

.button--secondary {
    background: var(--white);
    color: var(--blue-900);
    border: 1px solid var(--line);
    box-shadow: none;
}

.button--light {
    background: var(--white);
    color: var(--blue-900);
    box-shadow: none;
}

.button--ghost-light {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, .25);
    box-shadow: none;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: clamp(58px, 8vw, 105px) 0 40px;
    background:
        radial-gradient(circle at 8% 18%, rgba(57, 182, 255, .20), transparent 28%),
        linear-gradient(135deg, #f7fbff 0%, #edf6ff 52%, #f8fbff 100%);
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    width: clamp(220px, 34vw, 520px);
    aspect-ratio: 1;
    border-radius: 999px;
    filter: blur(18px);
    pointer-events: none;
}

.hero::before {
    right: -8%;
    top: 6%;
    background: radial-gradient(circle, rgba(29, 119, 211, .22), transparent 66%);
}

.hero::after {
    left: 12%;
    bottom: -18%;
    background: radial-gradient(circle, rgba(57, 182, 255, .24), transparent 68%);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, .92fr);
    align-items: center;
    gap: clamp(28px, 5vw, 68px);
}

.hero-grid > *,
.service-hero__grid > *,
.split-grid > *,
.contact-grid > *,
.detail-grid > * {
    min-width: 0;
}

.hero h1 {
    font-size: clamp(2.2rem, 4.8vw, 4.9rem);
    max-width: 860px;
    overflow-wrap: anywhere;
}

.hero-copy p {
    max-width: 640px;
    margin: 24px 0 26px;
    overflow-wrap: anywhere;
}

.hero-copy,
.hero-copy > * {
    max-width: 100%;
}

.hero-title span {
    display: block;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.hero-badges span {
    padding: 8px 12px;
    border: 1px solid rgba(11, 77, 146, .15);
    border-radius: 999px;
    background: rgba(255, 255, 255, .74);
    color: var(--blue-800);
    font-weight: 800;
    font-size: .9rem;
}

.hero-visual {
    position: relative;
    min-height: 470px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--blue-900);
    isolation: isolate;
}

.hero-visual::before {
    content: "";
    position: absolute;
    inset: 18px;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, .34);
    border-radius: 28px;
    pointer-events: none;
}

.hero-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(6, 23, 40, .62));
}

.hero-visual img {
    width: 100%;
    height: 100%;
    min-height: 470px;
    object-fit: cover;
}

.hero-note {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    z-index: 2;
    display: grid;
    gap: 4px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, .9);
    color: var(--blue-950);
    backdrop-filter: blur(12px);
}

.hero-note strong {
    font-size: 1.15rem;
}

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

.intro-card {
    border-radius: var(--radius);
    padding: 30px;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: 0 16px 54px rgba(6, 23, 40, .08);
}

.intro-card span {
    color: var(--cyan);
    font-weight: 900;
}

.intro-card h2 {
    margin: 16px 0 10px;
    color: var(--blue-950);
    font-size: 1.45rem;
}

.intro-card p {
    margin: 0;
    color: var(--muted);
}

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

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

.service-card a {
    position: relative;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: 0 16px 48px rgba(6, 23, 40, .07);
}

.service-card a::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg, transparent 35%, rgba(57, 182, 255, .10), transparent 60%);
    opacity: 0;
    pointer-events: none;
    transition: opacity .28s ease;
}

.service-card a:hover::before {
    opacity: 1;
}

.service-card img,
.project-tile img,
.mini-service img,
.gallery-card img {
    transition: transform .7s var(--ease-out), filter .7s var(--ease-out);
}

.service-card a:hover img,
.project-tile:hover img,
.mini-service:hover img,
.gallery-card:hover img {
    transform: scale(1.045);
    filter: saturate(1.08) contrast(1.03);
}

.service-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.service-card__label,
.service-card h3,
.service-card h2,
.service-card p,
.service-card b {
    margin-left: 22px;
    margin-right: 22px;
}

.service-card__label {
    margin-top: 22px;
    color: var(--blue-700);
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 900;
}

.service-card h3,
.service-card h2 {
    margin-top: 8px;
    margin-bottom: 10px;
    color: var(--blue-950);
    line-height: 1.08;
    font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.service-card p {
    color: var(--muted);
    margin-top: 0;
}

.service-card b {
    margin-top: auto;
    margin-bottom: 24px;
    color: var(--blue-700);
}

.section-action {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

.split-section {
    background:
        linear-gradient(135deg, rgba(6, 23, 40, .95), rgba(11, 77, 146, .90)),
        url("../img/hero-2.jpg") center / cover;
    color: var(--white);
}

.split-section .eyebrow,
.split-section h2,
.split-section p {
    color: var(--white);
}

.split-section p {
    color: rgba(255, 255, 255, .78);
}

.split-grid {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(320px, 1fr);
    align-items: center;
    gap: clamp(28px, 5vw, 70px);
}

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

.split-grid h2,
.cta-card h2 {
    font-size: clamp(1.85rem, 3.3vw, 3.35rem);
}

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

.check-list span {
    padding: 13px 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .12);
    color: var(--white);
    font-weight: 800;
}

.process-panel {
    border-radius: var(--radius-lg);
    padding: 18px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .18);
    backdrop-filter: blur(16px);
}

.process-panel img {
    width: 100%;
    border-radius: 22px;
    object-fit: cover;
}

.process-panel ol {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
    display: grid;
    gap: 12px;
}

.process-panel li {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 10px;
    color: rgba(255, 255, 255, .78);
}

.process-panel strong {
    color: var(--white);
}

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

.project-tile {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    min-height: 235px;
    background: var(--blue-900);
}

.project-tile img {
    width: 100%;
    height: 100%;
    min-height: 235px;
    object-fit: cover;
}

.project-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(6, 23, 40, .70));
}

.project-tile span {
    position: absolute;
    z-index: 2;
    left: 14px;
    right: 14px;
    bottom: 14px;
    color: var(--white);
    font-weight: 900;
    font-size: .88rem;
}

.cta-section {
    padding-top: 0;
}

.cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: clamp(28px, 5vw, 56px);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at right top, rgba(57, 182, 255, .26), transparent 36%),
        var(--blue-950);
    color: var(--white);
    overflow: hidden;
}

.cta-card h2,
.cta-card .eyebrow {
    color: var(--white);
}

.cta-card p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, .72);
}

.page-hero {
    padding: clamp(58px, 8vw, 105px) 0;
    background:
        radial-gradient(circle at 14% 18%, rgba(57, 182, 255, .19), transparent 24%),
        linear-gradient(135deg, var(--white), #eef7ff);
}

.page-hero__inner {
    max-width: 920px;
}

.page-hero h1 {
    font-size: clamp(2rem, 4.5vw, 4.45rem);
    overflow-wrap: anywhere;
}

.page-hero p {
    max-width: 760px;
}

.about-card {
    border-radius: var(--radius-lg);
    padding: clamp(34px, 6vw, 64px);
    background: linear-gradient(135deg, var(--blue-950), var(--blue-700));
    color: var(--white);
    box-shadow: var(--shadow);
}

.about-card strong {
    display: block;
    font-size: clamp(5rem, 12vw, 10rem);
    letter-spacing: -.08em;
    line-height: .86;
}

.about-card span {
    display: block;
    margin-top: 18px;
    max-width: 420px;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, .78);
}

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

.value-grid article {
    padding: 30px;
    border-radius: var(--radius);
    background: var(--bg);
    border: 1px solid var(--line);
}

.value-grid span {
    color: var(--blue-700);
    font-size: 1.6rem;
}

.value-grid h2 {
    margin: 14px 0 10px;
    color: var(--blue-950);
}

.value-grid p {
    color: var(--muted);
    margin: 0;
}

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

.steps article {
    padding: 28px;
    border-radius: var(--radius);
    background: var(--bg);
    border: 1px solid var(--line);
}

.steps span {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: var(--blue-700);
    color: var(--white);
    font-weight: 900;
}

.steps h3 {
    margin: 18px 0 8px;
    font-size: 1.35rem;
    color: var(--blue-950);
}

.steps p {
    color: var(--muted);
    margin: 0;
}

.service-hero {
    padding: clamp(54px, 7vw, 92px) 0;
    background: linear-gradient(135deg, #f9fcff, #eaf5ff);
}

.service-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(320px, .82fr);
    gap: clamp(28px, 5vw, 64px);
    align-items: center;
}

.service-hero h1 {
    font-size: clamp(2rem, 4.4vw, 4.35rem);
    overflow-wrap: anywhere;
}

.service-hero p {
    max-width: 690px;
}

.service-hero figure {
    margin: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--white);
}

.service-hero figure img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: clamp(28px, 5vw, 62px);
    align-items: start;
}

.detail-content {
    padding: clamp(26px, 4vw, 46px);
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: 0 16px 52px rgba(6, 23, 40, .07);
}

.detail-content p {
    color: var(--muted);
    font-size: 1.08rem;
}

.detail-content h2 {
    margin: 34px 0 14px;
    color: var(--blue-950);
    font-size: clamp(1.45rem, 2.4vw, 2.2rem);
    line-height: 1.08;
}

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

.rich-list li {
    position: relative;
    padding: 14px 14px 14px 44px;
    border-radius: 18px;
    background: var(--bg);
    color: var(--blue-900);
    font-weight: 750;
}

.rich-list li::before {
    content: "✓";
    position: absolute;
    left: 16px;
    color: var(--blue-700);
    font-weight: 900;
}

.pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pill-list span {
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--sky);
    color: var(--blue-800);
    font-weight: 800;
}

.quote-box {
    position: sticky;
    top: 132px;
    padding: 28px;
    border-radius: var(--radius);
    background: var(--blue-950);
    color: var(--white);
    box-shadow: var(--shadow);
}

.quote-box h2 {
    margin: 0 0 10px;
    font-size: 1.55rem;
}

.quote-box p {
    color: rgba(255, 255, 255, .74);
}

.quote-box .button {
    width: 100%;
}

.plain-link {
    display: block;
    margin-top: 16px;
    color: var(--cyan);
    font-weight: 900;
    text-align: center;
}

.faq-grid {
    display: grid;
    grid-template-columns: minmax(260px, .6fr) minmax(0, 1fr);
    gap: 32px;
}

.faq-grid h2 {
    margin: 0;
    color: var(--blue-950);
    font-size: clamp(1.75rem, 3vw, 2.8rem);
    line-height: 1;
}

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

details {
    border-radius: 20px;
    background: var(--bg);
    border: 1px solid var(--line);
    overflow: hidden;
}

summary {
    cursor: pointer;
    padding: 18px 20px;
    color: var(--blue-950);
    font-weight: 900;
}

details p {
    margin: 0;
    padding: 0 20px 20px;
    color: var(--muted);
}

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

.mini-service {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: var(--blue-900);
    min-height: 210px;
}

.mini-service img {
    width: 100%;
    height: 100%;
    min-height: 210px;
    object-fit: cover;
}

.mini-service::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(6, 23, 40, .72));
}

.mini-service span {
    position: absolute;
    z-index: 2;
    left: 18px;
    right: 18px;
    bottom: 18px;
    color: var(--white);
    font-weight: 900;
    font-size: 1.25rem;
}

.gallery-grid {
    columns: 3 260px;
    column-gap: 20px;
}

.gallery-card {
    break-inside: avoid;
    margin: 0 0 20px;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: 0 16px 46px rgba(6, 23, 40, .08);
}

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

.gallery-card figcaption {
    padding: 18px;
    display: grid;
    gap: 6px;
}

.gallery-card span {
    color: var(--blue-700);
    font-weight: 900;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .09em;
}

.gallery-card strong {
    color: var(--blue-950);
    font-size: 1.08rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(360px, 1fr);
    gap: 28px;
    align-items: start;
}

.contact-info {
    display: grid;
    gap: 16px;
}

.contact-info article {
    padding: 24px;
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid var(--line);
}

.contact-info article > span {
    min-width: 54px;
    width: max-content;
    height: 48px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    padding: 0 12px;
    background: var(--sky);
    color: var(--blue-700);
    font-size: .82rem;
    font-weight: 900;
}

.contact-info h2 {
    margin: 16px 0 8px;
    color: var(--blue-950);
}

.contact-info a {
    color: var(--muted);
    font-weight: 750;
}

.contact-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
}

.contact-info li {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    color: var(--muted);
}

.contact-form {
    padding: clamp(24px, 4vw, 42px);
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.contact-form h2 {
    margin: 0 0 20px;
    color: var(--blue-950);
    font-size: clamp(1.55rem, 2.5vw, 2.35rem);
    line-height: 1.05;
}

.contact-form label {
    display: grid;
    gap: 8px;
    color: var(--blue-950);
    font-weight: 900;
    margin-bottom: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--bg);
    color: var(--ink);
    padding: 14px 16px;
    outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--blue-500);
    box-shadow: 0 0 0 4px rgba(29, 119, 211, .12);
}

.form-note {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: .9rem;
}

.prose {
    max-width: 840px;
    padding: clamp(24px, 4vw, 42px);
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid var(--line);
}

.prose h2 {
    color: var(--blue-950);
}

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

.prose a {
    color: var(--blue-700);
    font-weight: 900;
}

.site-footer {
    background: var(--blue-950);
    color: var(--white);
    padding: 58px 0 28px;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) .7fr .8fr;
    gap: 34px;
}

.footer-brand img {
    width: 220px;
    padding: 10px 14px;
    border-radius: 18px;
    background: var(--white);
}

.footer-brand p,
.footer-list a,
.footer-bottom {
    color: rgba(255, 255, 255, .72);
}

.footer-brand p {
    max-width: 560px;
}

.footer-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.site-footer h2 {
    margin: 0 0 14px;
    font-size: 1.1rem;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 9px;
}

.footer-list a:hover,
.footer-bottom a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 44px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    font-size: .92rem;
}

.floating-actions {
    position: fixed;
    right: max(16px, env(safe-area-inset-right));
    bottom: max(18px, env(safe-area-inset-bottom));
    z-index: 45;
    display: grid;
    gap: 10px;
}

/* Mobile-first navigation safety override */
.menu-toggle {
    display: grid;
}

.main-nav {
    display: none;
}

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

@media (min-width: 1041px) {
    .menu-toggle {
        display: none !important;
    }

    .main-nav {
        display: flex !important;
    }
}

.float-btn {
    width: auto;
    min-width: 54px;
    height: 54px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    padding: 0 14px;
    color: var(--white);
    font-weight: 900;
    font-size: .82rem;
    box-shadow: 0 16px 40px rgba(6, 23, 40, .25);
}

.float-btn--phone {
    background: var(--blue-950);
}

.float-btn--whatsapp {
    background: #13a864;
}

@media (prefers-reduced-motion: no-preference) {
    .hero::before,
    .hero::after {
        animation: glowDrift 9s ease-in-out infinite;
    }

    .hero-copy {
        animation: fadeUp .8s var(--ease-out) both;
    }

    .hero-visual {
        animation: softFloat 7s ease-in-out infinite;
    }

    .hero-note {
        animation: fadeUp .75s .18s var(--ease-out) both;
    }

    .float-btn--whatsapp {
        animation: none;
    }
}

@media (hover: hover) and (pointer: fine) {
    .button:hover,
    .service-card a:hover,
    .project-tile:hover,
    .mini-service:hover,
    .gallery-card:hover {
        transform: translateY(-3px);
    }

    .button,
    .service-card a,
    .project-tile,
    .mini-service,
    .gallery-card {
        transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
    }
}

@media (max-width: 1040px) {
    .header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .brand {
        max-width: calc(100% - 64px);
    }

    .main-nav {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        display: grid;
        gap: 8px;
        padding: 16px;
        border-radius: 24px;
        background: rgba(255, 255, 255, .98);
        border: 1px solid var(--line);
        box-shadow: var(--shadow);
        opacity: 0;
        pointer-events: none;
        max-height: 0;
        overflow: hidden;
    }

    .main-nav.is-open {
        opacity: 1;
        pointer-events: auto;
        max-height: min(78vh, 620px);
    }

    .main-nav a {
        justify-content: flex-start;
        min-height: 46px;
        padding: 0 14px;
    }

    .main-nav .nav-cta {
        margin-left: 0;
        justify-content: center;
    }

    .menu-toggle {
        display: grid !important;
        flex: 0 0 52px;
        margin-left: auto;
    }

    .hero-grid,
    .service-hero__grid,
    .split-grid,
    .split-grid--balanced,
    .detail-grid,
    .contact-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .quote-box {
        position: static;
    }

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

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

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

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

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 720px) {
    .container {
        width: min(100% - 28px, var(--container));
    }

    .topline {
        display: none;
    }

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

    .brand {
        padding: 7px 10px;
        border-radius: 15px;
    }

    .brand img {
        width: min(165px, 46vw);
    }

    .menu-toggle {
        width: 48px;
        height: 48px;
        border-radius: 16px;
    }

    .hero {
        padding: 36px 0 24px;
    }

    .hero h1,
    .page-hero h1,
    .service-hero h1 {
        font-size: clamp(1.54rem, 6.25vw, 2.12rem);
        letter-spacing: -.04em;
        line-height: 1.12;
        overflow-wrap: anywhere;
    }

    .hero-visual,
    .hero-visual img {
        min-height: 290px;
    }

    .hero-visual {
        animation: none;
    }

    .hero-note {
        left: 14px;
        right: 14px;
        bottom: 14px;
        padding: 14px;
    }

    .intro-cards,
    .service-grid,
    .service-grid--all,
    .value-grid,
    .steps,
    .mini-service-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .intro-card,
    .value-grid article,
    .steps article,
    .detail-content,
    .contact-form,
    .contact-info article {
        padding: 22px;
    }

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

    .process-panel li {
        grid-template-columns: 1fr;
    }

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

    .project-tile,
    .project-tile img {
        min-height: 190px;
    }

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

    .contact-info li {
        flex-direction: column;
        gap: 2px;
    }

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

    .floating-actions {
        right: 14px;
        bottom: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }

}

@media (max-width: 430px) {
    .brand img {
        width: min(145px, 42vw);
    }

    .button {
        width: 100%;
        padding-inline: 16px;
    }

    .button-row {
        width: 100%;
    }

    .project-strip {
        grid-template-columns: 1fr;
    }

    .service-card__label,
    .service-card h3,
    .service-card h2,
    .service-card p,
    .service-card b {
        margin-left: 18px;
        margin-right: 18px;
    }
}
