:root {
    --navy-950: #03111e;
    --navy-900: #071827;
    --navy-800: #0b2238;
    --navy-700: #123553;
    --orange-500: #ff9300;
    --orange-600: #e97700;
    --orange-700: #bd5900;
    --amber-300: #ffc65c;
    --green-500: #20b85a;
    --slate-900: #182331;
    --slate-700: #435164;
    --slate-600: #5d6a7b;
    --slate-200: #dce3e9;
    --slate-100: #edf1f4;
    --surface: #ffffff;
    --surface-soft: #f6f8fa;
    --shadow-sm: 0 8px 24px rgba(3, 17, 30, 0.08);
    --shadow-md: 0 18px 48px rgba(3, 17, 30, 0.13);
    --shadow-lg: 0 28px 72px rgba(3, 17, 30, 0.2);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;
    --container: 1180px;
    --header-height: 88px;
    --transition: 180ms ease;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 20px);
    overflow-x: hidden;
    overflow-x: clip;
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    background: var(--surface);
    color: var(--slate-900);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

h1,
h2,
h3,
p,
ul,
ol,
figure,
blockquote {
    margin-top: 0;
}

h1,
h2,
h3 {
    color: var(--navy-900);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.08;
}

p {
    color: var(--slate-700);
}

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

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

button,
summary {
    -webkit-tap-highlight-color: transparent;
}

img,
svg {
    display: block;
}

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

section[id] {
    scroll-margin-top: calc(var(--header-height) + 20px);
}

:focus-visible {
    outline: 3px solid var(--orange-500);
    outline-offset: 4px;
}

::selection {
    background: var(--amber-300);
    color: var(--navy-950);
}

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

.icon-sprite {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.icon {
    width: 1.25em;
    height: 1.25em;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.icon--fill {
    fill: currentColor;
}

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 2000;
    padding: 10px 16px;
    border-radius: 8px;
    background: var(--surface);
    color: var(--navy-900);
    font-weight: 800;
    box-shadow: var(--shadow-md);
    transform: translateY(-160%);
    transition: transform var(--transition);
}

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

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: var(--orange-700);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    line-height: 1.3;
    text-transform: uppercase;
}

.eyebrow--light {
    color: var(--amber-300);
}

.topbar {
    position: relative;
    z-index: 1001;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--navy-950);
    color: #d5dce3;
    font-size: 0.82rem;
}

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

.topbar__inner > a,
.topbar__inner > span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.topbar__inner .icon {
    color: var(--orange-500);
    font-size: 0.95rem;
}

.topbar__inner a {
    transition: color var(--transition);
}

.topbar__inner a:hover {
    color: var(--amber-300);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(7, 24, 39, 0.94);
    color: var(--surface);
    box-shadow: 0 6px 30px rgba(3, 17, 30, 0.15);
    backdrop-filter: blur(18px);
}

.header__inner {
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

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

.brand img {
    width: 66px;
    height: 66px;
    flex: 0 0 auto;
    object-fit: contain;
}

.brand__copy {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.brand__copy strong {
    color: var(--surface);
    font-size: 1rem;
    letter-spacing: -0.015em;
}

.brand__copy small {
    margin-top: 5px;
    color: var(--amber-300);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 26px;
}

.primary-nav a {
    position: relative;
    color: #e7edf2;
    font-size: 0.91rem;
    font-weight: 750;
    transition: color var(--transition);
}

.primary-nav a:not(.nav-cta)::after {
    position: absolute;
    right: 0;
    bottom: -9px;
    left: 0;
    height: 2px;
    border-radius: 99px;
    background: var(--orange-500);
    content: "";
    transform: scaleX(0);
    transform-origin: center;
    transition: transform var(--transition);
}

.primary-nav a:hover {
    color: var(--amber-300);
}

.primary-nav a:hover::after,
.primary-nav a[aria-current]::after {
    transform: scaleX(1);
}

.primary-nav .nav-cta {
    padding: 11px 17px;
    border-radius: 10px;
    background: var(--orange-500);
    color: var(--navy-950);
    box-shadow: 0 8px 24px rgba(255, 147, 0, 0.2);
}

.primary-nav .nav-cta:hover {
    background: var(--amber-300);
    color: var(--navy-950);
}

.menu-toggle {
    width: 46px;
    height: 46px;
    display: none;
    place-content: center;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    cursor: pointer;
}

.menu-toggle span {
    width: 21px;
    height: 2px;
    display: block;
    border-radius: 2px;
    background: var(--surface);
    transition: transform var(--transition), opacity var(--transition);
}

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

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

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

.hero {
    position: relative;
    min-height: 690px;
    display: grid;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(115deg, rgba(3, 17, 30, 0.98) 0%, rgba(7, 24, 39, 0.96) 52%, rgba(11, 34, 56, 0.97) 100%);
    color: var(--surface);
}

.hero::before {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
    background-size: 42px 42px;
    content: "";
    mask-image: linear-gradient(to right, black, transparent 85%);
}

.hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
    pointer-events: none;
}

.hero__glow--one {
    top: -240px;
    right: -80px;
    width: 590px;
    height: 590px;
    background: radial-gradient(circle, rgba(255, 147, 0, 0.2), rgba(255, 147, 0, 0) 68%);
}

.hero__glow--two {
    bottom: -360px;
    left: 10%;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(18, 53, 83, 0.65), rgba(18, 53, 83, 0) 66%);
}

.hero__grid {
    position: relative;
    z-index: 1;
    padding-block: 74px 88px;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.76fr);
    align-items: center;
    gap: clamp(48px, 7vw, 94px);
}

.hero__content {
    max-width: 680px;
}

.hero h1 {
    max-width: 690px;
    margin-bottom: 24px;
    color: var(--surface);
    font-size: clamp(3.35rem, 6vw, 5.4rem);
    letter-spacing: -0.06em;
}

.hero h1 span {
    color: var(--orange-500);
}

.hero__lead {
    max-width: 650px;
    margin-bottom: 32px;
    color: #cbd6df;
    font-size: clamp(1.05rem, 1.8vw, 1.24rem);
    line-height: 1.65;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}

.button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 21px;
    border: 1px solid transparent;
    border-radius: 12px;
    font-size: 0.94rem;
    font-weight: 850;
    line-height: 1.2;
    text-align: center;
    cursor: pointer;
    transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
}

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

.button--primary {
    background: var(--orange-500);
    color: var(--navy-950);
    box-shadow: 0 12px 30px rgba(255, 147, 0, 0.22);
}

.button--primary:hover {
    background: var(--amber-300);
    box-shadow: 0 16px 36px rgba(255, 147, 0, 0.28);
}

.button--ghost {
    border-color: rgba(255, 255, 255, 0.26);
    background: rgba(255, 255, 255, 0.06);
    color: var(--surface);
}

.button--ghost:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.12);
}

.button--dark {
    background: var(--navy-900);
    color: var(--surface);
    box-shadow: 0 12px 30px rgba(3, 17, 30, 0.18);
}

.button--dark:hover {
    background: var(--navy-700);
}

.button--full {
    width: 100%;
}

.hero__trust {
    margin: 26px 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    list-style: none;
}

.hero__trust li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #dde5ec;
    font-size: 0.9rem;
    font-weight: 700;
}

.hero__trust .icon {
    color: var(--orange-500);
}

.hero__visual {
    position: relative;
    width: min(100%, 440px);
    margin: 0 auto;
}

.hero__image-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 0.74;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 36px 36px 90px 36px;
    background: var(--navy-800);
    box-shadow: var(--shadow-lg);
}

.hero__image-wrap::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(3, 17, 30, 0.28), transparent 38%);
    content: "";
    pointer-events: none;
}

.hero__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero__caption {
    position: absolute;
    right: -35px;
    bottom: 62px;
    z-index: 2;
    min-width: 214px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 17px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--navy-900);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(14px);
}

.hero__caption span:last-child {
    display: flex;
    flex-direction: column;
    color: var(--slate-600);
    font-size: 0.78rem;
    line-height: 1.35;
}

.hero__caption strong {
    color: var(--navy-900);
    font-size: 0.93rem;
}

.status-dot {
    width: 12px;
    height: 12px;
    flex: 0 0 auto;
    border: 3px solid #c9f5d9;
    border-radius: 50%;
    background: var(--green-500);
    box-shadow: 0 0 0 4px rgba(32, 184, 90, 0.12);
}

.hero__rating {
    position: absolute;
    top: 28px;
    left: -36px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 15px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    background: rgba(7, 24, 39, 0.88);
    color: var(--amber-300);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(14px);
}

.hero__rating span {
    color: var(--surface);
    font-size: 0.75rem;
    font-weight: 800;
    line-height: 1.25;
    text-transform: uppercase;
}

.trust-strip {
    position: relative;
    z-index: 3;
    border-bottom: 1px solid var(--slate-200);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}

.trust-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust-item {
    min-height: 104px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 24px;
    border-right: 1px solid var(--slate-200);
}

.trust-item:last-child {
    border-right: 0;
}

.trust-item > .icon {
    width: 30px;
    height: 30px;
    color: var(--orange-600);
}

.trust-item span {
    display: flex;
    flex-direction: column;
    color: var(--slate-600);
    font-size: 0.79rem;
    line-height: 1.4;
}

.trust-item strong {
    color: var(--navy-900);
    font-size: 0.93rem;
}

.section {
    padding-block: clamp(76px, 9vw, 118px);
}

.section-heading {
    margin-bottom: 48px;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    align-items: end;
    gap: 50px;
}

.section-heading h2,
.about h2,
.process h2,
.faq__intro h2,
.contact h2,
.legal-main h1 {
    margin-bottom: 0;
    font-size: clamp(2.25rem, 4.2vw, 3.55rem);
}

.section-heading > p {
    max-width: 500px;
    margin: 0;
}

.section-heading--center {
    max-width: 780px;
    margin-inline: auto;
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: center;
}

.section-heading--center > p {
    margin-inline: auto;
}

.services {
    background: var(--surface-soft);
}

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

.service-card {
    min-height: 335px;
    display: flex;
    flex-direction: column;
    padding: 29px;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
    background: var(--surface);
    box-shadow: 0 8px 28px rgba(3, 17, 30, 0.04);
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.service-card__icon {
    width: 58px;
    height: 58px;
    margin-bottom: 22px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: #fff1dc;
    color: var(--orange-700);
}

.service-card__icon .icon {
    width: 28px;
    height: 28px;
}

.service-card h3 {
    margin-bottom: 12px;
    font-size: 1.28rem;
}

.service-card p {
    margin-bottom: 24px;
    font-size: 0.94rem;
}

.service-card > a {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--orange-700);
    font-size: 0.9rem;
    font-weight: 850;
}

.service-card > a .icon {
    width: 17px;
    height: 17px;
    transition: transform var(--transition);
}

.service-card > a:hover .icon {
    transform: translateX(4px);
}

.service-card:hover {
    border-color: rgba(233, 119, 0, 0.35);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.process {
    position: relative;
    overflow: hidden;
    background: var(--navy-900);
    color: var(--surface);
}

.process::after {
    position: absolute;
    top: -170px;
    right: -150px;
    width: 500px;
    height: 500px;
    border: 85px solid rgba(255, 147, 0, 0.07);
    border-radius: 50%;
    content: "";
}

.process__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
    align-items: center;
    gap: clamp(52px, 8vw, 110px);
}

.process h2 {
    margin-bottom: 20px;
    color: var(--surface);
}

.process__intro > p:not(.eyebrow) {
    color: #c7d2dc;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--amber-300);
    font-weight: 850;
}

.text-link .icon {
    width: 18px;
    height: 18px;
    transition: transform var(--transition);
}

.text-link:hover .icon {
    transform: translateX(4px);
}

.text-link--dark {
    color: var(--orange-700);
}

.steps {
    margin: 0;
    padding: 0;
    display: grid;
    list-style: none;
}

.steps li {
    position: relative;
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 23px;
    padding: 28px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.steps li:first-child {
    padding-top: 0;
}

.steps li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.step-number {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 198, 92, 0.4);
    border-radius: 16px;
    background: rgba(255, 147, 0, 0.1);
    color: var(--amber-300);
    font-size: 0.9rem;
    font-weight: 900;
}

.steps h3 {
    margin: 2px 0 8px;
    color: var(--surface);
    font-size: 1.2rem;
}

.steps p {
    margin-bottom: 0;
    color: #b9c6d0;
    font-size: 0.94rem;
}

.about {
    background: var(--surface);
}

.about__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.98fr);
    align-items: center;
    gap: clamp(52px, 8vw, 108px);
}

.about h2 {
    margin-bottom: 22px;
}

.about .lead {
    color: var(--slate-900);
    font-size: 1.12rem;
    font-weight: 650;
}

.check-list {
    margin: 30px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 22px;
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: var(--navy-800);
    font-size: 0.91rem;
    font-weight: 750;
}

.check-list .icon {
    margin-top: 2px;
    color: var(--orange-600);
}

.area-card {
    position: relative;
    overflow: hidden;
    padding: 40px;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    background: var(--surface-soft);
    box-shadow: var(--shadow-sm);
}

.area-card::after {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 147, 0, 0.15), rgba(255, 147, 0, 0));
    content: "";
    pointer-events: none;
}

.area-card__icon {
    width: 68px;
    height: 68px;
    margin-bottom: 26px;
    display: grid;
    place-items: center;
    border-radius: 19px;
    background: var(--navy-900);
    color: var(--orange-500);
}

.area-card__icon .icon {
    width: 32px;
    height: 32px;
}

.area-card h3 {
    margin: -5px 0 12px;
    font-size: 2rem;
}

.neighborhoods {
    margin: 22px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.neighborhoods span {
    padding: 7px 11px;
    border: 1px solid #d8e0e7;
    border-radius: 999px;
    background: var(--surface);
    color: var(--slate-700);
    font-size: 0.76rem;
    font-weight: 700;
}

.area-card__note {
    margin-bottom: 25px;
    font-size: 0.85rem;
}

.benefits {
    border-top: 1px solid var(--slate-100);
    background: var(--surface-soft);
}

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

.benefits__grid article {
    padding: 27px 23px;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
    background: var(--surface);
}

.benefits__grid article > .icon {
    width: 31px;
    height: 31px;
    margin-bottom: 28px;
    color: var(--orange-600);
}

.benefits__grid h3 {
    margin-bottom: 10px;
    font-size: 1.12rem;
}

.benefits__grid p {
    margin-bottom: 0;
    font-size: 0.88rem;
}

.cta-band {
    position: relative;
    overflow: hidden;
    background: linear-gradient(120deg, var(--orange-500), #ffb31a);
    color: var(--navy-950);
}

.cta-band::before {
    position: absolute;
    right: -100px;
    bottom: -170px;
    width: 480px;
    height: 480px;
    border: 78px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    content: "";
}

.cta-band__inner {
    position: relative;
    z-index: 1;
    min-height: 285px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 52px;
    padding-block: 54px;
}

.cta-band .eyebrow {
    color: var(--navy-800);
}

.cta-band h2 {
    max-width: 740px;
    margin-bottom: 12px;
    font-size: clamp(2.1rem, 4vw, 3.3rem);
}

.cta-band p:not(.eyebrow) {
    margin-bottom: 0;
    color: rgba(3, 17, 30, 0.78);
    font-weight: 650;
}

.cta-band .button {
    flex: 0 0 auto;
}

.testimonials {
    background: var(--surface);
}

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

.testimonials blockquote {
    min-height: 275px;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    padding: 30px;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
    background: var(--surface-soft);
}

.stars {
    margin-bottom: 21px;
    color: var(--orange-600);
    font-size: 0.95rem;
    letter-spacing: 0.12em;
}

.testimonials blockquote > p {
    margin-bottom: 26px;
    color: var(--slate-900);
    font-size: 1.02rem;
}

.testimonials blockquote footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar {
    width: 39px;
    height: 39px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--navy-900);
    color: var(--amber-300);
    font-size: 0.85rem;
    font-weight: 900;
}

.testimonials cite {
    color: var(--navy-900);
    font-size: 0.88rem;
    font-style: normal;
    font-weight: 800;
}

.faq {
    background: var(--surface-soft);
}

.faq__grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
    align-items: start;
    gap: clamp(52px, 8vw, 110px);
}

.faq__intro {
    position: sticky;
    top: calc(var(--header-height) + 28px);
}

.faq__intro h2 {
    margin-bottom: 18px;
}

.faq__intro .text-link {
    margin-top: 8px;
}

.faq__list {
    display: grid;
    gap: 12px;
}

.faq details {
    border: 1px solid var(--slate-200);
    border-radius: 16px;
    background: var(--surface);
    box-shadow: 0 6px 20px rgba(3, 17, 30, 0.035);
}

.faq summary {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 19px 22px;
    color: var(--navy-900);
    font-weight: 800;
    line-height: 1.35;
    cursor: pointer;
    list-style: none;
}

.faq summary::-webkit-details-marker {
    display: none;
}

.faq summary span {
    position: relative;
    width: 28px;
    height: 28px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #fff1dc;
}

.faq summary span::before,
.faq summary span::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 2px;
    border-radius: 2px;
    background: var(--orange-700);
    content: "";
    transform: translate(-50%, -50%);
    transition: transform var(--transition);
}

.faq summary span::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq details[open] summary span::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.faq details[open] summary {
    color: var(--orange-700);
}

.faq details > p {
    margin: -2px 22px 22px;
    padding-top: 17px;
    border-top: 1px solid var(--slate-100);
    font-size: 0.94rem;
}

.contact {
    position: relative;
    overflow: hidden;
    background: var(--navy-900);
    color: var(--surface);
}

.contact::before {
    position: absolute;
    top: -220px;
    left: -200px;
    width: 540px;
    height: 540px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 147, 0, 0.13), transparent 66%);
    content: "";
}

.contact__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(430px, 1.12fr);
    align-items: start;
    gap: clamp(54px, 8vw, 105px);
}

.contact h2 {
    max-width: 560px;
    margin-bottom: 20px;
    color: var(--surface);
}

.contact__content > p:not(.eyebrow) {
    color: #c7d2dc;
}

.contact__details {
    margin-top: 36px;
    display: grid;
    gap: 11px;
}

.contact__details > a,
.contact__details > div {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.045);
}

.contact__details .icon {
    color: var(--orange-500);
}

.contact__details span {
    display: flex;
    flex-direction: column;
}

.contact__details small {
    color: #9cabb7;
    font-size: 0.73rem;
}

.contact__details strong {
    color: var(--surface);
    font-size: 0.9rem;
}

.contact__details > a {
    transition: border-color var(--transition), background var(--transition);
}

.contact__details > a:hover {
    border-color: rgba(255, 147, 0, 0.5);
    background: rgba(255, 147, 0, 0.08);
}

.contact-form {
    padding: clamp(26px, 4vw, 40px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    background: var(--surface);
    color: var(--slate-900);
    box-shadow: var(--shadow-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.field {
    margin-bottom: 17px;
}

.field label {
    margin-bottom: 7px;
    display: block;
    color: var(--navy-900);
    font-size: 0.82rem;
    font-weight: 800;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    border: 1px solid #cfd8e0;
    border-radius: 11px;
    background: var(--surface);
    color: var(--slate-900);
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.field input,
.field select {
    min-height: 52px;
    padding: 0 14px;
}

.field textarea {
    min-height: 128px;
    padding: 13px 14px;
    resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
    color: #8995a3;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--orange-600);
    box-shadow: 0 0 0 4px rgba(233, 119, 0, 0.13);
}

.field input:user-invalid,
.field select:user-invalid,
.field textarea:user-invalid {
    border-color: #c73a3a;
}

.form-note {
    margin: 14px 0 0;
    color: var(--slate-600);
    font-size: 0.73rem;
    line-height: 1.5;
    text-align: center;
}

.form-note a {
    color: var(--orange-700);
    font-weight: 750;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.form-status {
    min-height: 0;
    margin: 8px 0 0;
    color: #a42929;
    font-size: 0.8rem;
    font-weight: 700;
    text-align: center;
}

.site-footer {
    background: var(--navy-950);
    color: #aebbc6;
}

.footer__grid {
    min-height: 156px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding-block: 30px;
}

.footer__brand {
    display: flex;
    align-items: center;
    gap: 13px;
}

.footer__brand img {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.footer__brand div {
    display: flex;
    flex-direction: column;
}

.footer__brand strong {
    color: var(--surface);
    font-size: 0.95rem;
}

.footer__brand span {
    color: #8f9da9;
    font-size: 0.75rem;
}

.footer__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 24px;
}

.footer__links a,
.footer__bottom a {
    font-size: 0.82rem;
    font-weight: 700;
    transition: color var(--transition);
}

.footer__links a:hover,
.footer__bottom a:hover {
    color: var(--amber-300);
}

.footer__bottom {
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__bottom p {
    margin: 0;
    color: #7f8d99;
    font-size: 0.74rem;
}

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 900;
    min-height: 54px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 0 17px;
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 999px;
    background: var(--green-500);
    color: var(--surface);
    box-shadow: 0 15px 34px rgba(15, 129, 63, 0.3);
    font-size: 0.85rem;
    font-weight: 850;
    transition: background var(--transition), transform var(--transition);
}

.whatsapp-float:hover {
    background: #169c4a;
    transform: translateY(-3px);
}

.whatsapp-float .icon {
    width: 23px;
    height: 23px;
}

.cookie-banner {
    position: fixed;
    right: 18px;
    bottom: 18px;
    left: 18px;
    z-index: 1500;
    width: min(calc(100% - 36px), 800px);
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 24px;
    padding: 20px 22px;
    border: 1px solid #ccd5dd;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(16px);
}

.cookie-banner[hidden] {
    display: none;
}

.cookie-banner h2 {
    margin-bottom: 4px;
    font-size: 1rem;
    letter-spacing: -0.02em;
}

.cookie-banner p {
    margin-bottom: 0;
    font-size: 0.78rem;
    line-height: 1.5;
}

.cookie-banner p a {
    color: var(--orange-700);
    font-weight: 750;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-banner__actions {
    display: flex;
    gap: 8px;
}

.cookie-button {
    min-height: 40px;
    padding: 8px 14px;
    border: 1px solid transparent;
    border-radius: 9px;
    font-size: 0.78rem;
    font-weight: 850;
    cursor: pointer;
}

.cookie-button--secondary {
    border-color: #cad3dc;
    background: var(--surface);
    color: var(--navy-900);
}

.cookie-button--primary {
    background: var(--navy-900);
    color: var(--surface);
}

.legal-hero {
    padding-block: 78px;
    background: var(--navy-900);
    color: var(--surface);
}

.legal-hero h1 {
    max-width: 820px;
    margin-bottom: 16px;
    color: var(--surface);
    font-size: clamp(2.5rem, 5vw, 4rem);
}

.legal-hero p {
    max-width: 720px;
    margin-bottom: 0;
    color: #c4d0da;
}

.legal-main {
    padding-block: 74px 100px;
    background: var(--surface-soft);
}

.legal-card {
    max-width: 860px;
    margin-inline: auto;
    padding: clamp(28px, 5vw, 56px);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}

.legal-card h2 {
    margin: 36px 0 12px;
    font-size: 1.45rem;
    letter-spacing: -0.025em;
}

.legal-card h2:first-child {
    margin-top: 0;
}

.legal-card p,
.legal-card li {
    font-size: 0.96rem;
}

.legal-card a {
    color: var(--orange-700);
    font-weight: 750;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal-card .updated {
    margin-top: 38px;
    padding-top: 20px;
    border-top: 1px solid var(--slate-200);
    color: var(--slate-600);
    font-size: 0.8rem;
}

.error-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 40px 20px;
    background:
        radial-gradient(circle at 80% 10%, rgba(255, 147, 0, 0.18), transparent 30%),
        var(--navy-900);
    color: var(--surface);
    text-align: center;
}

.error-card {
    max-width: 650px;
}

.error-card img {
    width: 116px;
    height: 116px;
    margin: 0 auto 28px;
    object-fit: contain;
}

.error-code {
    margin-bottom: 4px;
    color: var(--orange-500);
    font-size: clamp(4.5rem, 15vw, 8rem);
    font-weight: 900;
    letter-spacing: -0.08em;
    line-height: 0.9;
}

.error-card h1 {
    margin-bottom: 16px;
    color: var(--surface);
    font-size: clamp(2rem, 5vw, 3rem);
}

.error-card p {
    margin-bottom: 26px;
    color: #c4d0da;
}

/* Portfólio, parceiros e páginas dinâmicas */
.primary-nav {
    gap: 20px;
}

.section-heading__action {
    display: grid;
    gap: 16px;
}

.section-heading__action p {
    margin: 0;
}

.home-portfolio,
.public-listing,
.partners-public {
    background: var(--surface-soft);
}

.home-portfolio__empty {
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 32px;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
    background: var(--surface);
}

.home-portfolio__empty > div {
    display: grid;
    gap: 5px;
}

.home-portfolio__empty strong {
    color: var(--navy-900);
    font-size: 1.2rem;
}

.home-portfolio__empty span {
    color: var(--slate-600);
}

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

.work-card {
    min-width: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
    background: var(--surface);
    box-shadow: 0 9px 30px rgba(3, 17, 30, 0.055);
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.work-card:hover {
    border-color: rgba(233, 119, 0, 0.36);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.work-card__image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: var(--navy-800);
}

.work-card__image::after {
    position: absolute;
    inset: 50% 0 0;
    background: linear-gradient(to top, rgba(3, 17, 30, 0.32), transparent);
    content: "";
}

.work-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 350ms ease;
}

.work-card:hover .work-card__image img {
    transform: scale(1.035);
}

.work-card__featured {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 1;
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--orange-500);
    color: var(--navy-950);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.work-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 25px;
}

.work-card__category {
    margin-bottom: 9px;
    color: var(--orange-700);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.work-card h3 {
    margin-bottom: 11px;
    font-size: 1.28rem;
}

.work-card h3 a {
    transition: color var(--transition);
}

.work-card h3 a:hover {
    color: var(--orange-700);
}

.work-card__body > p:not(.work-card__category) {
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.work-card__meta {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 13px;
}

.work-card__meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--slate-600);
    font-size: 0.75rem;
    font-weight: 700;
}

.work-card__meta .icon {
    width: 15px;
    height: 15px;
    color: var(--orange-600);
}

.work-card__link {
    margin-top: 19px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--orange-700);
    font-size: 0.86rem;
    font-weight: 850;
}

.work-card__link .icon {
    width: 17px;
    height: 17px;
    transition: transform var(--transition);
}

.work-card__link:hover .icon {
    transform: translateX(4px);
}

.home-partners {
    border-top: 1px solid var(--slate-100);
    background: var(--surface);
}

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

.partner-strip article {
    min-width: 0;
    padding: 24px;
    display: grid;
    grid-template-columns: 66px 1fr;
    align-items: center;
    column-gap: 17px;
    border: 1px solid var(--slate-200);
    border-radius: 17px;
    background: var(--surface-soft);
}

.partner-strip__logo {
    width: 66px;
    height: 66px;
    grid-row: span 2;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid var(--slate-200);
    border-radius: 15px;
    background: var(--surface);
}

.partner-strip__logo img {
    width: 100%;
    height: 100%;
    padding: 7px;
    object-fit: contain;
}

.partner-strip__logo span {
    color: var(--orange-700);
    font-size: 1.5rem;
    font-weight: 900;
}

.partner-strip h3 {
    margin: 0 0 3px;
    overflow-wrap: anywhere;
    font-size: 1.04rem;
}

.partner-strip p {
    margin: 0;
    font-size: 0.78rem;
}

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

.inner-hero,
.work-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(120deg, var(--navy-950), var(--navy-800));
    color: var(--surface);
}

.inner-hero::before,
.work-hero::before {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 40px 40px;
    content: "";
    mask-image: linear-gradient(to right, black, transparent 90%);
}

.inner-hero::after,
.work-hero::after {
    position: absolute;
    top: -220px;
    right: -130px;
    width: 520px;
    height: 520px;
    border: 75px solid rgba(255, 147, 0, 0.09);
    border-radius: 50%;
    content: "";
}

.inner-hero__content {
    position: relative;
    z-index: 1;
    min-height: 365px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding-block: 70px;
}

.inner-hero h1 {
    max-width: 850px;
    margin-bottom: 19px;
    color: var(--surface);
    font-size: clamp(3rem, 6vw, 5rem);
}

.inner-hero__content > p:last-child {
    max-width: 720px;
    margin-bottom: 0;
    color: #cbd6df;
    font-size: 1.08rem;
}

.portfolio-filters {
    margin-bottom: 26px;
    padding: 24px;
    display: grid;
    grid-template-columns: minmax(240px, 1fr) minmax(210px, 0.55fr) auto auto;
    align-items: end;
    gap: 15px;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}

.public-field {
    display: grid;
    gap: 7px;
}

.public-field > span {
    color: var(--navy-900);
    font-size: 0.78rem;
    font-weight: 850;
}

.public-field input,
.public-field select {
    width: 100%;
    min-height: 50px;
    padding: 11px 13px;
    border: 1px solid #ccd6df;
    border-radius: 11px;
    background: var(--surface);
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.public-field input:focus,
.public-field select:focus {
    border-color: var(--orange-600);
    box-shadow: 0 0 0 4px rgba(255, 147, 0, 0.12);
}

.portfolio-filters .button {
    white-space: nowrap;
}

.filters-clear {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    color: var(--slate-700);
    font-size: 0.86rem;
    font-weight: 800;
}

.filters-clear:hover {
    color: var(--orange-700);
}

.listing-summary {
    margin-bottom: 20px;
}

.listing-summary p {
    margin: 0;
    font-size: 0.88rem;
}

.listing-summary strong {
    color: var(--navy-900);
}

.public-pagination {
    margin-top: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.public-pagination a,
.public-pagination span {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: 9px 14px;
    border: 1px solid var(--slate-200);
    border-radius: 10px;
    background: var(--surface);
    font-size: 0.82rem;
    font-weight: 800;
}

.public-pagination a:hover {
    border-color: var(--orange-600);
    color: var(--orange-700);
}

.public-pagination span {
    border-color: transparent;
    background: transparent;
    color: var(--slate-600);
}

.empty-public {
    padding: clamp(42px, 7vw, 74px) 24px;
    border: 1px dashed #c7d2dc;
    border-radius: var(--radius-md);
    background: var(--surface);
    text-align: center;
}

.empty-public__icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 22px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: #fff1dc;
    color: var(--orange-700);
}

.empty-public__icon .icon {
    width: 31px;
    height: 31px;
}

.empty-public h2 {
    margin-bottom: 11px;
    font-size: 1.65rem;
}

.empty-public p {
    max-width: 580px;
    margin: 0 auto 23px;
}

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

.partner-card {
    min-width: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
    background: var(--surface);
    box-shadow: 0 8px 28px rgba(3, 17, 30, 0.045);
}

.partner-card__logo {
    min-height: 170px;
    display: grid;
    place-items: center;
    border-bottom: 1px solid var(--slate-100);
    background: linear-gradient(145deg, #fff, #f2f5f7);
}

.partner-card__logo img {
    width: min(70%, 210px);
    height: 110px;
    object-fit: contain;
}

.partner-card__logo > span {
    width: 86px;
    height: 86px;
    display: grid;
    place-items: center;
    border-radius: 23px;
    background: var(--navy-900);
    color: var(--orange-500);
    font-size: 2rem;
    font-weight: 900;
}

.partner-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 26px;
}

.partner-card h3 {
    margin-bottom: 8px;
    font-size: 1.3rem;
}

.partner-card__city {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--orange-700);
    font-size: 0.78rem;
    font-weight: 800;
}

.partner-card__city .icon {
    width: 15px;
    height: 15px;
}

.partner-card__body > p:not(.partner-card__city) {
    font-size: 0.9rem;
}

.partner-card__actions {
    margin-top: auto;
    padding-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.partner-card__actions a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--orange-700);
    font-size: 0.83rem;
    font-weight: 850;
}

.partner-card__actions .icon {
    width: 16px;
    height: 16px;
}

.partner-invite {
    background: var(--navy-900);
}

.partner-invite__inner {
    min-height: 300px;
    padding-block: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
}

.partner-invite h2 {
    margin-bottom: 13px;
    color: var(--surface);
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.partner-invite p:not(.eyebrow) {
    max-width: 670px;
    margin: 0;
    color: #c7d2dc;
}

.partner-invite .button {
    flex: 0 0 auto;
}

.work-hero {
    padding-block: 46px 72px;
}

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

.breadcrumbs {
    margin-bottom: 48px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    color: #aebdca;
    font-size: 0.78rem;
}

.breadcrumbs a:hover {
    color: var(--amber-300);
}

.breadcrumbs span[aria-current="page"] {
    max-width: min(520px, 70vw);
    overflow: hidden;
    color: #e4ebf0;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.work-hero__content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 60px;
}

.work-hero h1 {
    max-width: 830px;
    margin-bottom: 20px;
    color: var(--surface);
    font-size: clamp(2.8rem, 5.7vw, 4.9rem);
}

.work-hero__content > div:first-child > p:last-child {
    max-width: 750px;
    margin-bottom: 0;
    color: #c6d1da;
    font-size: 1.05rem;
}

.work-hero__meta {
    display: grid;
    gap: 12px;
}

.work-hero__meta > span {
    min-width: 210px;
    display: grid;
    grid-template-columns: 30px 1fr;
    column-gap: 10px;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.055);
}

.work-hero__meta .icon {
    grid-row: span 2;
    align-self: center;
    color: var(--orange-500);
}

.work-hero__meta small {
    color: #aebdca;
    font-size: 0.7rem;
}

.work-hero__meta strong {
    color: var(--surface);
    font-size: 0.85rem;
}

.work-detail {
    background: var(--surface);
}

.work-detail__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    align-items: start;
    gap: clamp(42px, 6vw, 78px);
}

.work-cover {
    overflow: hidden;
    margin-bottom: 50px;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-md);
    background: var(--navy-800);
    box-shadow: var(--shadow-md);
}

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

.work-copy h2,
.work-gallery h2 {
    margin-bottom: 23px;
    font-size: clamp(2rem, 3.8vw, 3rem);
}

.rich-copy {
    color: var(--slate-700);
    font-size: 1.02rem;
    line-height: 1.85;
}

.work-gallery {
    margin-top: 62px;
    padding-top: 52px;
    border-top: 1px solid var(--slate-200);
}

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

.gallery-grid a,
.gallery-grid__button {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    padding: 0;
    border: 0;
    border-radius: 14px;
    background: var(--slate-100);
    cursor: zoom-in;
}

.gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-touch-callout: none;
    user-select: none;
    transition: transform 300ms ease;
}

.gallery-grid a:hover img,
.gallery-grid__button:hover img {
    transform: scale(1.035);
}

.gallery-grid__zoom {
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    background: rgba(3, 17, 30, 0.82);
    color: var(--surface);
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(8px);
    transition: background var(--transition), transform var(--transition);
}

.gallery-grid__button:hover .gallery-grid__zoom {
    background: var(--orange-600);
    transform: scale(1.06);
}

body.lightbox-open {
    overflow: hidden;
}

.photo-lightbox[hidden] {
    display: none;
}

.photo-lightbox {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: grid;
    grid-template-columns: minmax(54px, 0.12fr) minmax(0, 1fr) minmax(54px, 0.12fr);
    align-items: center;
    gap: 18px;
    padding: 34px;
    background: rgba(1, 8, 14, 0.94);
    opacity: 0;
    backdrop-filter: blur(14px);
    transition: opacity 180ms ease;
}

.photo-lightbox.is-open {
    opacity: 1;
}

.photo-lightbox__figure {
    min-width: 0;
    max-width: min(1180px, 100%);
    max-height: calc(100dvh - 70px);
    margin: 0 auto;
    display: grid;
    justify-items: center;
    align-content: center;
    gap: 10px;
}

.photo-lightbox__figure img {
    width: auto;
    max-width: 100%;
    max-height: calc(100dvh - 132px);
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.5);
    user-select: none;
    -webkit-user-drag: none;
    -webkit-touch-callout: none;
}

.photo-lightbox__figure figcaption {
    max-width: 760px;
    margin: 0;
    color: #d8e1e8;
    font-size: 0.87rem;
    text-align: center;
}

.photo-lightbox__counter {
    color: #aebbc5;
    font-size: 0.76rem;
    font-weight: 800;
}

.photo-lightbox__close,
.photo-lightbox__nav {
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.09);
    color: var(--surface);
    cursor: pointer;
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.photo-lightbox__close:hover,
.photo-lightbox__nav:hover {
    border-color: var(--orange-500);
    background: var(--orange-600);
    transform: scale(1.06);
}

.photo-lightbox__close {
    position: absolute;
    top: max(18px, env(safe-area-inset-top));
    right: max(18px, env(safe-area-inset-right));
    z-index: 2;
    width: 48px;
    height: 48px;
    font-size: 2rem;
    line-height: 1;
}

.photo-lightbox__nav {
    width: 54px;
    height: 54px;
    justify-self: center;
    font-size: 2.2rem;
    line-height: 1;
}

.photo-lightbox__nav--prev {
    grid-column: 1;
}

.photo-lightbox__figure {
    grid-column: 2;
}

.photo-lightbox__nav--next {
    grid-column: 3;
}

.work-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 25px);
    display: grid;
    gap: 18px;
}

.quote-card,
.work-facts {
    padding: 27px;
    border-radius: var(--radius-md);
}

.quote-card {
    background: var(--navy-900);
    color: var(--surface);
    box-shadow: var(--shadow-md);
}

.quote-card__icon {
    width: 56px;
    height: 56px;
    margin-bottom: 22px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: rgba(255, 147, 0, 0.13);
    color: var(--orange-500);
}

.quote-card__icon .icon {
    width: 27px;
    height: 27px;
}

.quote-card h2 {
    margin-bottom: 13px;
    color: var(--surface);
    font-size: 1.6rem;
}

.quote-card > p:not(.eyebrow) {
    margin-bottom: 23px;
    color: #c0ccd6;
    font-size: 0.9rem;
}

.work-facts {
    border: 1px solid var(--slate-200);
    background: var(--surface-soft);
}

.work-facts h2 {
    margin-bottom: 17px;
    font-size: 1.18rem;
}

.work-facts dl {
    margin: 0;
}

.work-facts dl > div {
    padding: 12px 0;
    border-bottom: 1px solid var(--slate-200);
}

.work-facts dl > div:last-child {
    border-bottom: 0;
}

.work-facts dt {
    color: var(--slate-600);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
}

.work-facts dd {
    margin: 3px 0 0;
    color: var(--navy-900);
    font-size: 0.88rem;
    font-weight: 750;
}

.related-works {
    border-top: 1px solid var(--slate-100);
    background: var(--surface-soft);
}

.related-works .section-heading > a {
    justify-self: end;
}

.not-found-public {
    min-height: 610px;
    display: grid;
    place-items: center;
    padding-block: 80px;
    background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
    text-align: center;
}

.not-found-public h1 {
    margin-bottom: 15px;
    color: var(--surface);
    font-size: clamp(2.3rem, 5vw, 3.7rem);
}

.not-found-public p:not(.error-code) {
    margin: 0 auto 25px;
    color: #c7d2dc;
}

@media (max-width: 1080px) {
    .brand {
        min-width: auto;
    }

    .brand__copy {
        display: none;
    }

    .primary-nav {
        gap: 15px;
    }

    .hero__grid {
        grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
        gap: 54px;
    }

    .hero__caption {
        right: -15px;
    }

    .hero__rating {
        left: -16px;
    }

    .trust-item {
        padding-inline: 16px;
    }

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

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

    .portfolio-filters {
        grid-template-columns: minmax(230px, 1fr) minmax(200px, 0.65fr) auto;
    }

    .portfolio-filters .filters-clear {
        grid-column: 1 / -1;
        min-height: auto;
    }

    .work-detail__grid {
        grid-template-columns: minmax(0, 1fr) 300px;
        gap: 42px;
    }
}

@media (max-width: 900px) {
    :root {
        --header-height: 78px;
    }

    body.menu-open::after {
        position: fixed;
        inset: 0;
        z-index: 998;
        background: rgba(3, 17, 30, 0.62);
        content: "";
    }

    .topbar__inner {
        justify-content: center;
    }

    .topbar__location {
        display: none !important;
    }

    .brand img {
        width: 60px;
        height: 60px;
    }

    .menu-toggle {
        z-index: 1001;
        display: grid;
    }

    .primary-nav {
        position: absolute;
        top: 100%;
        right: 0;
        z-index: 1000;
        width: min(86vw, 380px);
        max-height: calc(100dvh - var(--header-height));
        overflow-y: auto;
        padding: 24px;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        background: var(--navy-900);
        box-shadow: -20px 0 50px rgba(3, 17, 30, 0.22);
        transform: translateX(105%);
        visibility: hidden;
        transition: transform 240ms ease, visibility 0s linear 240ms;
    }

    .primary-nav.is-open {
        transform: translateX(0);
        visibility: visible;
        transition-delay: 0s;
    }

    .primary-nav a {
        padding: 16px 5px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        font-size: 1rem;
    }

    .primary-nav a:not(.nav-cta)::after {
        display: none;
    }

    .primary-nav .nav-cta {
        margin-top: 18px;
        padding: 15px 17px;
        border-bottom: 0;
        text-align: center;
    }

    .hero {
        min-height: auto;
    }

    .hero__grid {
        padding-block: 68px 80px;
        grid-template-columns: 1fr;
        gap: 58px;
    }

    .hero__content {
        max-width: 720px;
        text-align: center;
    }

    .hero__content .eyebrow,
    .hero__actions,
    .hero__trust {
        justify-content: center;
    }

    .hero__lead {
        margin-inline: auto;
    }

    .hero__visual {
        width: min(100%, 400px);
    }

    .trust-strip__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-item:nth-child(2) {
        border-right: 0;
    }

    .trust-item:nth-child(-n + 2) {
        border-bottom: 1px solid var(--slate-200);
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 18px;
    }

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

    .process__grid,
    .about__grid,
    .faq__grid,
    .contact__grid {
        grid-template-columns: 1fr;
    }

    .process__intro {
        max-width: 680px;
    }

    .about__grid,
    .contact__grid {
        gap: 52px;
    }

    .area-card {
        max-width: 680px;
    }

    .cta-band__inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 30px;
    }

    .faq__intro {
        position: static;
        max-width: 680px;
    }

    .contact__content {
        max-width: 680px;
    }

    .contact-form {
        max-width: 680px;
    }

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

    .work-hero__content,
    .work-detail__grid {
        grid-template-columns: 1fr;
    }

    .work-hero__content {
        align-items: start;
        gap: 36px;
    }

    .work-hero__meta {
        width: min(100%, 520px);
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .work-hero__meta > span {
        min-width: 0;
    }

    .work-sidebar {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .partner-invite__inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 28px;
    }
}

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

    .topbar__inner {
        min-height: 34px;
        justify-content: space-between;
        gap: 10px;
        font-size: 0.71rem;
    }

    .topbar__inner > span:last-child {
        display: none;
    }

    .brand img {
        width: 56px;
        height: 56px;
    }

    .hero__grid {
        padding-block: 54px 66px;
        gap: 46px;
    }

    .hero h1 {
        margin-bottom: 20px;
        font-size: clamp(2.75rem, 14vw, 4rem);
    }

    .hero__lead {
        font-size: 1rem;
    }

    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .button {
        width: 100%;
    }

    .hero__trust {
        align-items: center;
        flex-direction: column;
        gap: 9px;
    }

    .hero__visual {
        width: min(88%, 350px);
    }

    .hero__caption {
        right: -22px;
        bottom: 35px;
        min-width: 190px;
        padding: 12px 14px;
    }

    .hero__rating {
        top: 21px;
        left: -24px;
        padding: 11px 12px;
    }

    .trust-strip__grid {
        grid-template-columns: 1fr;
    }

    .trust-item {
        min-height: 84px;
        padding: 17px 12px;
        border-right: 0;
        border-bottom: 1px solid var(--slate-200);
    }

    .trust-item:nth-child(2) {
        border-right: 0;
    }

    .trust-item:last-child {
        border-bottom: 0;
    }

    .section {
        padding-block: 72px;
    }

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

    .section-heading h2,
    .about h2,
    .process h2,
    .faq__intro h2,
    .contact h2 {
        font-size: clamp(2rem, 10vw, 2.7rem);
    }

    .services__grid,
    .benefits__grid,
    .testimonials__grid {
        grid-template-columns: 1fr;
    }

    .work-grid,
    .partner-grid,
    .partner-strip,
    .portfolio-filters,
    .work-sidebar,
    .work-hero__meta {
        grid-template-columns: 1fr;
    }

    .portfolio-filters {
        padding: 19px;
    }

    .portfolio-filters .filters-clear {
        grid-column: auto;
        justify-content: center;
    }

    .home-portfolio__empty {
        align-items: flex-start;
        flex-direction: column;
        padding: 25px;
    }

    .home-portfolio__empty .button {
        width: 100%;
    }

    .inner-hero__content {
        min-height: 320px;
        padding-block: 55px;
    }

    .inner-hero h1,
    .work-hero h1 {
        font-size: clamp(2.5rem, 12vw, 3.5rem);
    }

    .work-hero {
        padding-block: 35px 58px;
    }

    .breadcrumbs {
        margin-bottom: 38px;
    }

    .work-cover {
        margin-bottom: 40px;
        aspect-ratio: 4 / 3;
        border-radius: 16px;
    }

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

    .photo-lightbox {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: minmax(0, 1fr) auto;
        gap: 12px;
        padding: max(68px, calc(env(safe-area-inset-top) + 58px)) 14px max(16px, env(safe-area-inset-bottom));
    }

    .photo-lightbox__figure {
        grid-column: 1 / -1;
        grid-row: 1;
        max-height: calc(100dvh - 150px);
    }

    .photo-lightbox__figure img {
        max-height: calc(100dvh - 200px);
        border-radius: 8px;
    }

    .photo-lightbox__nav {
        width: 50px;
        height: 50px;
    }

    .photo-lightbox__nav--prev {
        grid-column: 1;
        grid-row: 2;
        justify-self: end;
    }

    .photo-lightbox__nav--next {
        grid-column: 2;
        grid-row: 2;
        justify-self: start;
    }

    .related-works .section-heading > a {
        justify-self: start;
    }

    .public-pagination {
        gap: 8px;
    }

    .public-pagination a,
    .public-pagination span {
        padding-inline: 10px;
        font-size: 0.74rem;
    }

    .partner-invite .button {
        width: 100%;
    }

    .service-card {
        min-height: auto;
        padding: 25px;
    }

    .steps li {
        grid-template-columns: 52px 1fr;
        gap: 16px;
    }

    .step-number {
        width: 50px;
        height: 50px;
    }

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

    .area-card {
        padding: 28px 24px;
    }

    .cta-band__inner {
        min-height: 0;
        padding-block: 60px;
    }

    .cta-band .button {
        width: 100%;
    }

    .faq summary {
        min-height: 68px;
        padding: 17px;
        font-size: 0.93rem;
    }

    .faq details > p {
        margin-inline: 17px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .footer__grid,
    .footer__bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer__grid {
        gap: 25px;
        padding-block: 38px;
    }

    .footer__links {
        justify-content: flex-start;
        gap: 15px 22px;
    }

    .footer__bottom {
        min-height: auto;
        gap: 12px;
        padding-block: 20px 28px;
    }

    .whatsapp-float {
        right: 14px;
        bottom: 14px;
        width: 56px;
        height: 56px;
        min-height: 56px;
        justify-content: center;
        padding: 0;
    }

    .whatsapp-float span {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
        white-space: nowrap;
    }

    .cookie-banner {
        right: 12px;
        bottom: 12px;
        left: 12px;
        width: auto;
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 18px;
    }

    .cookie-banner__actions {
        justify-content: flex-end;
    }

    .legal-hero {
        padding-block: 58px;
    }

    .legal-main {
        padding-block: 48px 70px;
    }

    .legal-card {
        border-radius: 16px;
    }
}

@media (max-width: 420px) {
    .hero__visual {
        width: calc(100% - 32px);
    }

    .hero__caption {
        right: -16px;
        min-width: 178px;
    }

    .hero__caption strong {
        font-size: 0.84rem;
    }

    .hero__rating {
        left: -16px;
    }

    .hero__rating span {
        display: none;
    }

    .cookie-banner__actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

@media print {
    .topbar,
    .site-header,
    .whatsapp-float,
    .cookie-banner,
    .hero__actions,
    .cta-band,
    .contact-form,
    .site-footer {
        display: none !important;
    }

    body,
    .hero,
    .process,
    .contact {
        background: #fff !important;
        color: #000 !important;
    }

    .hero h1,
    .process h2,
    .contact h2,
    .hero p,
    .process p,
    .contact p {
        color: #000 !important;
    }
}
