:root {
    --navy-950: #06151e;
    --navy-900: #091e2a;
    --navy-800: #102f3f;
    --slate-700: #52616a;
    --slate-500: #7e8a90;
    --slate-200: #dfe5e7;
    --slate-100: #edf1f2;
    --paper: #f8f7f3;
    --white: #ffffff;
    --gold: #c8a76b;
    --gold-light: #ddc38e;
    --bronze: #a77c43;
    --green: #20b66a;
    --serif: "Cormorant Garamond", Georgia, serif;
    --sans: "Inter", Arial, sans-serif;
    --wrap: 1240px;
    --shadow-sm: 0 12px 32px rgba(6, 21, 30, 0.08);
    --shadow-lg: 0 26px 70px rgba(6, 21, 30, 0.16);
    --ease: 260ms cubic-bezier(.2, .8, .2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 112px;
}

body {
    margin: 0;
    color: var(--navy-950);
    background: var(--paper);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

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

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

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

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

::selection {
    color: var(--navy-950);
    background: var(--gold-light);
}

.section-wrap {
    width: min(var(--wrap), calc(100% - 48px));
    margin-inline: auto;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    color: var(--navy-950);
    background: var(--gold-light);
    transform: translateY(-160%);
    transition: transform var(--ease);
}

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

.page-progress {
    position: fixed;
    z-index: 1000;
    inset: 0 0 auto;
    height: 2px;
    pointer-events: none;
}

.page-progress span {
    display: block;
    width: 100%;
    height: 100%;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
}

.site-header {
    position: relative;
    min-height: 100svh;
    color: var(--white);
    background: var(--navy-950);
    overflow: hidden;
}

.navbar {
    position: fixed;
    z-index: 900;
    top: 20px;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
    padding: 10px 14px 10px 18px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    background: rgba(6, 21, 30, 0.77);
    box-shadow: 0 14px 46px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(18px);
    transform: translateX(-50%);
    transition: top var(--ease), background var(--ease), box-shadow var(--ease);
}

.navbar.is-scrolled {
    top: 10px;
    background: rgba(6, 21, 30, 0.94);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.27);
}

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

.brand-mark {
    display: grid;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    place-items: center;
}

.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand > span:last-child {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.brand strong {
    color: var(--white);
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: .01em;
}

.brand small {
    margin-top: 5px;
    color: rgba(255, 255, 255, .57);
    font-size: .61rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 29px;
}

.nav-links > a:not(.nav-cta):not(.nav-whatsapp) {
    position: relative;
    color: rgba(255, 255, 255, .78);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .055em;
    transition: color var(--ease);
}

.nav-links > a:not(.nav-cta):not(.nav-whatsapp)::after {
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 1px;
    content: "";
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--ease);
}

.nav-links > a:hover,
.nav-links > a.is-active {
    color: var(--white);
}

.nav-links > a:hover::after,
.nav-links > a.is-active::after {
    transform: scaleX(1);
}

.nav-whatsapp {
    display: grid;
    width: 40px;
    height: 40px;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 50%;
    place-items: center;
    transition: color var(--ease), border-color var(--ease), background var(--ease), transform var(--ease);
}

.nav-whatsapp:hover {
    color: var(--navy-950);
    border-color: var(--gold-light);
    background: var(--gold-light);
    transform: translateY(-2px);
}

.nav-whatsapp i {
    font-size: 1.05rem;
}

.nav-cta {
    display: inline-flex;
    min-height: 44px;
    padding: 0 21px;
    align-items: center;
    justify-content: center;
    color: var(--navy-950);
    border: 1px solid var(--gold);
    border-radius: 4px;
    background: var(--gold);
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .075em;
    text-transform: uppercase;
    transition: color var(--ease), background var(--ease), transform var(--ease);
}

.nav-cta:hover {
    color: var(--navy-950);
    background: var(--gold-light);
    transform: translateY(-2px);
}

.menu-button {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 0;
    background: transparent;
}

.menu-button > span:not(.sr-only) {
    display: block;
    width: 22px;
    height: 1px;
    margin: 5px auto;
    background: var(--white);
    transition: transform var(--ease), opacity var(--ease);
}

.hero {
    position: relative;
    z-index: 1;
    display: flex;
    width: 100%;
    max-width: none;
    min-height: 100svh;
    padding: 166px max(24px, calc((100vw - var(--wrap)) / 2)) 70px;
    align-items: center;
}

.hero::after {
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: 0;
    left: 0;
    height: 180px;
    content: "";
    background: linear-gradient(0deg, rgba(6, 21, 30, .8), transparent);
    pointer-events: none;
}

.hero-copy {
    position: relative;
    z-index: 3;
    width: min(790px, 67vw);
}

.hero-media {
    position: absolute;
    z-index: 0;
    inset: 0;
}

.hero-media::after {
    position: absolute;
    inset: 0;
    content: "";
    background:
        linear-gradient(90deg, rgba(6, 21, 30, .97) 0%, rgba(6, 21, 30, .88) 42%, rgba(6, 21, 30, .57) 68%, rgba(6, 21, 30, .38) 100%),
        linear-gradient(180deg, rgba(6, 21, 30, .26), rgba(6, 21, 30, .18));
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 64% center;
    filter: saturate(.72) contrast(1.05);
}

.hero-caption {
    position: absolute;
    z-index: 2;
    right: max(24px, calc((100vw - var(--wrap)) / 2));
    bottom: 42px;
    display: flex;
    padding: 13px 0 13px 20px;
    flex-direction: column;
    border-left: 1px solid var(--gold);
    text-align: right;
}

.hero-caption span {
    color: rgba(255, 255, 255, .58);
    font-size: .68rem;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.hero-caption strong {
    color: var(--white);
    font-family: var(--serif);
    font-size: 1.05rem;
    font-weight: 500;
}

.eyebrow,
.section-kicker {
    display: flex;
    margin: 0 0 22px;
    align-items: center;
    gap: 12px;
    color: var(--bronze);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}

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

.eyebrow::before,
.section-kicker::before {
    width: 34px;
    height: 1px;
    content: "";
    background: currentColor;
}

.hero h1 {
    max-width: 840px;
    margin: 0;
    color: var(--white);
    font-family: var(--serif);
    font-size: clamp(4.15rem, 7vw, 7rem);
    font-weight: 500;
    letter-spacing: -.045em;
    line-height: .88;
}

.hero h1 em,
.about-intro h2 em,
.process-copy h2 em {
    color: var(--gold-light);
    font-weight: 500;
}

.hero-text {
    max-width: 650px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, .72);
    font-size: clamp(.98rem, 1.25vw, 1.1rem);
    line-height: 1.8;
}

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

.btn {
    display: inline-flex;
    min-height: 52px;
    padding: 0 25px;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 3px;
    cursor: pointer;
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: transform var(--ease), background var(--ease), border-color var(--ease), color var(--ease), box-shadow var(--ease);
}

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

.btn-primary {
    color: var(--navy-950);
    background: var(--gold);
    border-color: var(--gold);
    box-shadow: 0 12px 26px rgba(200, 167, 107, .18);
}

.btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    box-shadow: 0 16px 32px rgba(200, 167, 107, .25);
}

.btn-secondary,
.btn-outline {
    color: var(--white);
    border-color: rgba(255, 255, 255, .35);
    background: rgba(255, 255, 255, .03);
}

.btn-secondary:hover,
.btn-outline:hover {
    border-color: var(--gold-light);
    background: rgba(255, 255, 255, .08);
}

.trust-strip {
    display: flex;
    margin-top: 48px;
    gap: 0;
    color: rgba(255, 255, 255, .55);
    font-size: .66rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.trust-strip span {
    padding: 0 22px;
    border-right: 1px solid rgba(255, 255, 255, .18);
}

.trust-strip span:first-child {
    padding-left: 0;
}

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

.about-section,
.services-section,
.process-section,
.contact-section {
    padding: clamp(90px, 10vw, 145px) 0;
}

.about-section {
    background: var(--paper);
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, .8fr);
    gap: clamp(55px, 9vw, 130px);
}

.about-intro h2,
.section-heading h2,
.process-copy h2,
.contact-copy h2 {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(3rem, 5.4vw, 5.3rem);
    font-weight: 500;
    letter-spacing: -.035em;
    line-height: .96;
}

.about-copy {
    padding-top: 48px;
}

.about-copy > p {
    margin: 0 0 20px;
    color: var(--slate-700);
    font-size: 1rem;
}

.about-copy > p:first-child {
    color: var(--navy-900);
    font-family: var(--serif);
    font-size: 1.55rem;
    font-weight: 500;
    line-height: 1.42;
}

.about-signature {
    display: flex;
    margin: 30px 0;
    padding: 19px 0;
    gap: 25px;
    border-top: 1px solid var(--slate-200);
    border-bottom: 1px solid var(--slate-200);
    color: var(--slate-700);
    font-size: .71rem;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.text-link,
.service-card > a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--bronze);
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.text-link span,
.service-card > a span {
    transition: transform var(--ease);
}

.text-link:hover span,
.service-card > a:hover span {
    transform: translate(3px, -3px);
}

.metrics-section {
    color: var(--white);
    background: var(--navy-900);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-right: 1px solid rgba(255, 255, 255, .1);
    border-left: 1px solid rgba(255, 255, 255, .1);
}

.metrics-grid article {
    display: flex;
    min-height: 190px;
    padding: 38px 30px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-right: 1px solid rgba(255, 255, 255, .1);
    text-align: center;
}

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

.metrics-grid strong {
    color: var(--gold-light);
    font-family: var(--serif);
    font-size: clamp(3rem, 4.5vw, 4.5rem);
    font-weight: 500;
    line-height: .9;
}

.metrics-grid span {
    margin-top: 15px;
    color: rgba(255, 255, 255, .57);
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.services-section {
    background: var(--slate-100);
}

.section-heading {
    display: grid;
    margin-bottom: 56px;
    grid-template-columns: minmax(0, 1.1fr) minmax(260px, .6fr);
    column-gap: clamp(50px, 10vw, 150px);
}

.section-heading .section-kicker {
    grid-column: 1 / -1;
}

.section-heading h2 {
    font-size: clamp(2.8rem, 4.6vw, 4.65rem);
}

.section-heading > p:last-child {
    align-self: end;
    margin: 0;
    color: var(--slate-700);
}

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

.service-card {
    position: relative;
    display: flex;
    min-height: 380px;
    padding: 34px;
    flex-direction: column;
    border: 1px solid rgba(9, 30, 42, .08);
    border-top: 3px solid transparent;
    background: rgba(255, 255, 255, .85);
    box-shadow: 0 8px 30px rgba(6, 21, 30, .035);
    overflow: hidden;
    transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease), background var(--ease);
}

.service-card::after {
    position: absolute;
    right: -58px;
    bottom: -58px;
    width: 150px;
    height: 150px;
    border: 1px solid rgba(200, 167, 107, .16);
    border-radius: 50%;
    content: "";
    transition: transform 500ms ease;
}

.service-card:hover {
    border-top-color: var(--gold);
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.service-card:hover::after {
    transform: scale(1.22);
}

.service-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service-icon {
    display: grid;
    width: 51px;
    height: 51px;
    color: var(--bronze);
    border: 1px solid rgba(167, 124, 67, .27);
    border-radius: 50%;
    background: #fbf8f1;
    place-items: center;
    transition: color var(--ease), background var(--ease), border-color var(--ease);
}

.service-icon i {
    font-size: 1.18rem;
}

.service-card:hover .service-icon {
    color: var(--navy-950);
    border-color: var(--gold);
    background: var(--gold-light);
}

.service-number {
    color: var(--slate-500);
    font-family: var(--serif);
    font-size: 1rem;
    letter-spacing: .08em;
}

.service-card h3 {
    max-width: 280px;
    margin: 42px 0 14px;
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.05;
}

.service-card p {
    margin: 0 0 30px;
    color: var(--slate-700);
    font-size: .9rem;
    line-height: 1.75;
}

.service-card > a {
    z-index: 1;
    margin-top: auto;
}

.plans-section {
    padding: clamp(90px, 10vw, 145px) 0;
    color: var(--white);
    background:
        radial-gradient(circle at 85% 20%, rgba(200, 167, 107, .1), transparent 30%),
        var(--navy-950);
}

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

.section-heading.light > p:last-child {
    color: rgba(255, 255, 255, .6);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
    gap: 18px;
}

.plan-card {
    position: relative;
    display: flex;
    min-height: 470px;
    padding: 38px 34px;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .035);
    transition: transform var(--ease), border-color var(--ease), background var(--ease);
}

.plan-card:hover {
    border-color: rgba(200, 167, 107, .65);
    background: rgba(255, 255, 255, .055);
    transform: translateY(-6px);
}

.plan-card.featured {
    border-color: var(--gold);
    background: rgba(200, 167, 107, .08);
}

.badge {
    position: absolute;
    top: 0;
    right: 0;
    padding: 8px 13px;
    color: var(--navy-950);
    background: var(--gold);
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.plan-card > p {
    margin: 0;
    color: var(--gold-light);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.plan-card h3 {
    margin: 16px 0 28px;
    font-family: var(--serif);
    font-size: 2.35rem;
    font-weight: 500;
}

.plan-card ul {
    display: grid;
    margin: 0 0 35px;
    padding: 0;
    gap: 13px;
    list-style: none;
}

.plan-card li {
    position: relative;
    padding-left: 23px;
    color: rgba(255, 255, 255, .66);
    font-size: .88rem;
}

.plan-card li::before {
    position: absolute;
    top: .72em;
    left: 0;
    width: 9px;
    height: 1px;
    content: "";
    background: var(--gold);
}

.plan-card .btn {
    width: 100%;
    margin-top: auto;
}

.process-section {
    position: relative;
    background:
        radial-gradient(circle at 8% 12%, rgba(200, 167, 107, .09), transparent 26%),
        linear-gradient(180deg, #f8f7f3 0%, #f1f3f3 100%);
    overflow: hidden;
}

.process-section::before {
    position: absolute;
    top: 84px;
    right: -170px;
    width: 430px;
    height: 430px;
    border: 1px solid rgba(9, 30, 42, .055);
    border-radius: 50%;
    box-shadow: 0 0 0 54px rgba(9, 30, 42, .018), 0 0 0 108px rgba(9, 30, 42, .012);
    content: "";
    pointer-events: none;
}

.process-grid {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 58px;
}

.process-copy {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, .62fr);
    column-gap: clamp(60px, 11vw, 160px);
    align-items: end;
}

.process-copy .section-kicker {
    grid-column: 1 / -1;
}

.process-copy h2 {
    max-width: 720px;
}

.process-copy > p:last-child {
    position: relative;
    max-width: 430px;
    margin: 0 0 8px;
    padding: 0 0 0 23px;
    color: var(--slate-700);
    border-left: 1px solid var(--gold);
    font-size: .94rem;
    line-height: 1.8;
}

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

.steps-list::before {
    position: absolute;
    z-index: -1;
    top: 52px;
    right: 8%;
    left: 8%;
    height: 1px;
    content: "";
    background: linear-gradient(90deg, transparent, rgba(167, 124, 67, .42) 12%, rgba(167, 124, 67, .42) 88%, transparent);
}

.step-card {
    position: relative;
    display: grid;
    min-width: 0;
    min-height: 305px;
    padding: 26px 25px 29px;
    grid-template-rows: auto 1fr;
    gap: 38px;
    border: 1px solid rgba(9, 30, 42, .1);
    border-radius: 14px;
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 12px 34px rgba(6, 21, 30, .05);
    overflow: hidden;
    transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease), background var(--ease);
}

.step-card::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 3px;
    content: "";
    background: linear-gradient(90deg, var(--bronze), var(--gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--ease);
}

.step-card:hover {
    border-color: rgba(167, 124, 67, .34);
    background: var(--white);
    box-shadow: 0 22px 50px rgba(6, 21, 30, .11);
    transform: translateY(-8px);
}

.step-card:hover::after {
    transform: scaleX(1);
}

.step-card-top {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: space-between;
}

.step-card-top span {
    display: grid;
    width: 51px;
    height: 51px;
    color: var(--navy-950);
    border-radius: 50%;
    background: var(--gold);
    font-family: var(--serif);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: .04em;
    place-items: center;
    box-shadow: 0 8px 20px rgba(167, 124, 67, .16);
}

.step-card-top i {
    color: rgba(9, 30, 42, .24);
    font-size: 1.4rem;
    transition: color var(--ease), transform var(--ease);
}

.step-card:hover .step-card-top i {
    color: var(--bronze);
    transform: rotate(-5deg) scale(1.08);
}

.step-content {
    min-width: 0;
}

.step-card h3 {
    margin: 0 0 15px;
    overflow-wrap: break-word;
    font-family: var(--serif);
    font-size: clamp(1.5rem, 2vw, 1.86rem);
    font-weight: 600;
    letter-spacing: -.025em;
    line-height: 1.04;
}

.step-card p {
    margin: 0;
    color: var(--slate-700);
    font-size: .86rem;
    line-height: 1.72;
}

.statement-section {
    position: relative;
    padding: clamp(90px, 11vw, 155px) 0;
    color: var(--white);
    background: var(--navy-800);
    overflow: hidden;
}

.statement-section::before,
.statement-section::after {
    position: absolute;
    width: 460px;
    height: 460px;
    border: 1px solid rgba(200, 167, 107, .1);
    border-radius: 50%;
    content: "";
}

.statement-section::before {
    top: -270px;
    left: -120px;
}

.statement-section::after {
    right: -220px;
    bottom: -350px;
}

.statement-inner {
    position: relative;
    z-index: 1;
}

.statement-inner blockquote {
    max-width: 1030px;
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(3rem, 6vw, 6.2rem);
    font-weight: 500;
    letter-spacing: -.035em;
    line-height: .98;
}

.statement-line {
    display: flex;
    margin-top: 50px;
    padding-top: 20px;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, .16);
    color: rgba(255, 255, 255, .56);
    font-size: .67rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
}

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

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(520px, 1fr);
    gap: clamp(55px, 8vw, 110px);
    align-items: start;
}

.contact-copy > p:not(.section-kicker) {
    max-width: 530px;
    margin: 28px 0 0;
    color: var(--slate-700);
}

.contact-cards {
    display: grid;
    margin-top: 38px;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.contact-cards > a {
    display: flex;
    min-height: 104px;
    padding: 19px 21px;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid var(--slate-200);
    background: rgba(255, 255, 255, .62);
    transition: background var(--ease), border-color var(--ease), transform var(--ease);
}

.contact-cards > a:hover {
    border-color: var(--gold);
    background: var(--white);
    transform: translateY(-4px);
}

.contact-cards span {
    color: var(--slate-500);
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.contact-cards strong {
    overflow: hidden;
    font-size: .83rem;
    font-weight: 600;
    text-overflow: ellipsis;
}

.contact-cards .whatsapp-icon {
    color: var(--green);
    font-size: 1.6rem;
    line-height: 1;
}

.contact-form {
    padding: clamp(28px, 4vw, 48px);
    border-top: 3px solid var(--gold);
    background: var(--white);
    box-shadow: var(--shadow-lg);
}

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

.contact-form label {
    display: grid;
    margin-bottom: 20px;
    gap: 8px;
    color: var(--navy-900);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .075em;
    text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    color: var(--navy-950);
    border: 0;
    border-bottom: 1px solid #cfd7da;
    border-radius: 0;
    outline: 0;
    background: transparent;
    font-size: .9rem;
    letter-spacing: 0;
    text-transform: none;
    transition: border-color var(--ease), box-shadow var(--ease);
}

.contact-form input,
.contact-form select {
    min-height: 49px;
}

.contact-form textarea {
    min-height: 125px;
    padding: 12px 0;
    resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--bronze);
    box-shadow: 0 1px 0 var(--bronze);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #a0aaae;
}

.contact-form .btn {
    width: 100%;
    margin-top: 5px;
}

.contact-form > small {
    display: block;
    margin-top: 16px;
    color: var(--slate-500);
    font-size: .69rem;
    line-height: 1.55;
    text-align: center;
}

.hp-field {
    position: absolute !important;
    left: -9999px !important;
}

.form-alert {
    margin-bottom: 22px;
    padding: 13px 15px;
    border-left: 3px solid;
    font-size: .83rem;
}

.form-alert.success {
    color: #165c39;
    border-color: #39976a;
    background: #eaf7f0;
}

.form-alert.error {
    color: #7b2b2b;
    border-color: #b85151;
    background: #fbefef;
}

.site-footer {
    padding: 72px 0 24px;
    color: rgba(255, 255, 255, .62);
    background: var(--navy-950);
}

.footer-grid {
    display: grid;
    padding-bottom: 55px;
    grid-template-columns: 1.45fr .55fr .7fr;
    gap: 70px;
}

.footer-brand .brand-mark {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
}

.footer-grid > div:first-child > p {
    max-width: 420px;
    margin: 23px 0 0;
    color: rgba(255, 255, 255, .48);
    font-size: .86rem;
}

.footer-grid h3 {
    margin: 4px 0 18px;
    color: var(--gold-light);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.footer-grid > div:not(:first-child) {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.footer-grid > div:not(:first-child) > a {
    margin-bottom: 9px;
    font-size: .83rem;
    transition: color var(--ease), transform var(--ease);
}

.footer-grid > div:not(:first-child) > a:hover {
    color: var(--white);
    transform: translateX(3px);
}

.footer-whatsapp {
    display: grid !important;
    width: 42px;
    height: 42px;
    margin-top: 9px;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    place-items: center;
}

.footer-whatsapp i {
    font-size: 1.1rem;
}

.footer-bottom {
    display: flex;
    padding-top: 22px;
    justify-content: space-between;
    gap: 25px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .36);
    font-size: .65rem;
    letter-spacing: .035em;
}

.whatsapp-float {
    position: fixed;
    z-index: 850;
    right: 24px;
    bottom: 24px;
    display: grid;
    width: 58px;
    height: 58px;
    color: var(--white);
    border: 3px solid rgba(255, 255, 255, .82);
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 12px 34px rgba(13, 84, 50, .3);
    place-items: center;
    transition: transform var(--ease), box-shadow var(--ease), background var(--ease);
}

.whatsapp-float:hover {
    background: #179b58;
    box-shadow: 0 16px 42px rgba(13, 84, 50, .4);
    transform: translateY(-4px) scale(1.03);
}

.whatsapp-float i {
    font-size: 1.55rem;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--gold-light);
    outline-offset: 4px;
}

@media (max-width: 1080px) {
    .navbar {
        width: min(var(--wrap), calc(100% - 32px));
    }

    .nav-links {
        gap: 19px;
    }

    .nav-links > a:not(.nav-cta):not(.nav-whatsapp) {
        font-size: .7rem;
    }

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

    .service-card {
        min-height: 350px;
    }

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

    .steps-list::before {
        display: none;
    }

    .step-card {
        min-height: 280px;
    }

    .contact-grid {
        grid-template-columns: .8fr 1fr;
        gap: 45px;
    }
}

@media (max-width: 880px) {
    .section-wrap {
        width: min(var(--wrap), calc(100% - 36px));
    }

    .navbar {
        min-height: 68px;
    }

    .brand-mark {
        width: 43px;
        height: 43px;
        flex-basis: 43px;
    }

    .brand strong {
        font-size: 1.13rem;
    }

    .menu-button {
        display: block;
        cursor: pointer;
    }

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

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

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

    .nav-links {
        position: absolute;
        top: calc(100% + 8px);
        right: 0;
        left: 0;
        display: flex;
        max-height: 0;
        padding: 0 22px;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        border: 1px solid transparent;
        border-radius: 7px;
        background: rgba(6, 21, 30, .98);
        box-shadow: var(--shadow-lg);
        opacity: 0;
        overflow: hidden;
        pointer-events: none;
        transform: translateY(-8px);
        transition: max-height 400ms ease, padding 300ms ease, opacity var(--ease), transform var(--ease), border-color var(--ease);
    }

    .nav-links.is-open {
        max-height: 540px;
        padding: 14px 22px 22px;
        border-color: rgba(255, 255, 255, .14);
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-links > a:not(.nav-cta):not(.nav-whatsapp) {
        padding: 13px 0;
        border-bottom: 1px solid rgba(255, 255, 255, .08);
        font-size: .78rem;
    }

    .nav-links > a::after {
        display: none;
    }

    .nav-whatsapp {
        width: 100%;
        height: 44px;
        margin: 12px 0 8px;
        border-radius: 3px;
    }

    .hero-copy {
        width: min(760px, 90vw);
    }

    .hero-media::after {
        background: linear-gradient(90deg, rgba(6, 21, 30, .96), rgba(6, 21, 30, .75));
    }

    .hero-caption {
        display: none;
    }

    .about-grid,
    .process-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .about-copy {
        padding-top: 0;
    }

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

    .metrics-grid article:nth-child(2) {
        border-right: 0;
    }

    .metrics-grid article:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255, 255, 255, .1);
    }

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

    .section-heading .section-kicker {
        grid-column: auto;
    }

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

    .plan-card {
        min-height: auto;
    }

    .process-copy {
        position: static;
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .process-copy .section-kicker {
        grid-column: auto;
        margin-bottom: 0;
    }

    .process-copy > p:last-child {
        max-width: 650px;
        margin-bottom: 0;
    }

    .contact-copy > p:not(.section-kicker) {
        max-width: 680px;
    }
}

@media (max-width: 600px) {
    html {
        scroll-padding-top: 90px;
    }

    .section-wrap {
        width: min(var(--wrap), calc(100% - 28px));
    }

    .navbar,
    .navbar.is-scrolled {
        top: 9px;
        width: calc(100% - 20px);
        padding: 8px 9px 8px 12px;
    }

    .brand {
        gap: 9px;
    }

    .brand-mark {
        width: 39px;
        height: 39px;
        flex-basis: 39px;
    }

    .brand strong {
        font-size: 1rem;
    }

    .brand small {
        font-size: .52rem;
        letter-spacing: .11em;
    }

    .hero {
        min-height: 760px;
        padding: 135px 20px 55px;
        align-items: flex-end;
    }

    .hero-copy {
        width: 100%;
    }

    .hero h1 {
        font-size: clamp(3.45rem, 17vw, 5rem);
        line-height: .9;
    }

    .hero-text {
        margin-top: 22px;
        font-size: .92rem;
        line-height: 1.7;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

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

    .trust-strip {
        margin-top: 34px;
        flex-direction: column;
        gap: 8px;
    }

    .trust-strip span {
        padding: 0;
        border: 0;
    }

    .about-section,
    .services-section,
    .plans-section,
    .process-section,
    .contact-section {
        padding: 82px 0;
    }

    .about-intro h2,
    .section-heading h2,
    .process-copy h2,
    .contact-copy h2 {
        font-size: clamp(2.75rem, 13vw, 4rem);
    }

    .about-signature {
        flex-direction: column;
        gap: 7px;
    }

    .metrics-grid article {
        min-height: 145px;
        padding: 27px 14px;
    }

    .metrics-grid strong {
        font-size: 3.1rem;
    }

    .metrics-grid span {
        font-size: .58rem;
    }

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

    .service-card {
        min-height: 330px;
        padding: 28px;
    }

    .service-card h3 {
        margin-top: 33px;
    }

    .plan-card {
        padding: 34px 26px;
    }

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

    .step-card {
        min-height: 0;
        padding: 25px;
        gap: 27px;
    }

    .step-card h3 {
        font-size: 1.7rem;
    }

    .statement-inner blockquote {
        font-size: clamp(2.8rem, 13vw, 4.2rem);
    }

    .statement-line {
        flex-direction: column;
        gap: 7px;
    }

    .contact-cards,
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        margin: 0 -2px;
        padding: 28px 22px;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
    }

    .whatsapp-float {
        right: 17px;
        bottom: 17px;
        width: 54px;
        height: 54px;
    }
}

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

    .reveal {
        opacity: 1;
        transform: none;
    }
}
