:root {
    --landing-navy: #102a43;
    --landing-navy-soft: #35506c;
    --landing-blue: #1683df;
    --landing-blue-deep: #0d6fc2;
    --landing-teal: #138f83;
    --landing-green: #16a765;
    --landing-green-deep: #0c8550;
    --landing-paper: #ffffff;
    --landing-mist: #eff8ff;
    --landing-line: #dce9f2;
    --landing-muted: #64768a;
    --landing-shadow: 0 18px 60px rgba(16, 42, 67, .12);
}

.location-landing {
    margin: 0;
    color: var(--landing-navy);
    background: var(--landing-paper);
    font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
}

.location-landing * {
    box-sizing: border-box;
}

.location-landing a {
    color: inherit;
}


.location-landing .location-hero {
    position: relative;
    overflow: hidden;
    margin-top: -72px;
    padding: 132px 20px 0;
    background: #fff;
}

.location-landing .location-hero::before,
.location-landing .location-hero::after {
    position: absolute;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(22, 131, 223, .1);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.location-landing .location-hero::before {
    top: 110px;
    left: -340px;
}

.location-landing .location-hero::after {
    top: 260px;
    right: -360px;
}

.location-landing .location-hero-copy {
    position: relative;
    z-index: 2;
    width: min(900px, 100%);
    margin: 0 auto;
    text-align: center;
}

.location-landing .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    color: var(--landing-navy-soft);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.location-landing .eyebrow::before {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--landing-blue);
    content: "";
    box-shadow: 0 0 0 6px rgba(22, 131, 223, .1);
}

.location-landing h1 {
    max-width: 900px;
    margin: 0 auto;
    color: var(--landing-navy);
    font-size: clamp(43px, 6.4vw, 76px);
    font-weight: 750;
    letter-spacing: -.052em;
    line-height: .99;
    text-wrap: balance;
}

.location-landing h1 .blue {
    color: var(--landing-blue);
}

.location-landing h1 .teal {
    color: var(--landing-teal);
}

.location-landing .hero-lead {
    max-width: 730px;
    margin: 29px auto 0;
    color: var(--landing-muted);
    font-size: clamp(18px, 2.2vw, 23px);
    line-height: 1.52;
    text-wrap: balance;
}

.location-landing .primary-cta {
    display: inline-flex;
    min-width: 235px;
    min-height: 58px;
    margin-top: 30px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 26px;
    border: 0;
    border-radius: 8px;
    color: white;
    background: #3498db;
    font-size: 17px;
    font-weight: 750;
    text-decoration: none;
    transition: background-color 160ms ease;
}

.location-landing .primary-cta:hover,
.location-landing .primary-cta:focus-visible {
    color: white;
    background: var(--landing-teal);
}

.location-landing .primary-cta svg {
    width: 17px;
    height: 17px;
}

.location-landing .google-proof {
    display: flex;
    width: fit-content;
    margin: 25px auto 0;
    align-items: center;
    gap: 11px;
    color: var(--landing-navy);
    text-decoration: none;
}

.location-landing .google-proof-logo {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border: 1px solid rgba(16, 42, 67, .1);
    border-radius: 50%;
    background: white;
    box-shadow: 0 5px 16px rgba(16, 42, 67, .08);
}

.location-landing .google-proof-logo img {
    width: 18px;
    height: 18px;
}

.location-landing .google-proof-copy {
    display: flex;
    align-items: baseline;
    gap: 5px;
    font-size: 14px;
}

.location-landing .stars {
    color: #f4b400;
    font-size: 12px;
    letter-spacing: 1px;
    white-space: nowrap;
}

.location-landing .location-hero-art {
    position: relative;
    z-index: 1;
    width: min(1040px, 100%);
    margin: 44px auto 0;
}

.location-landing .location-hero-art > img {
    display: block;
    width: 100%;
    height: min(490px, 48vw);
    min-height: 320px;
    border-radius: 28px 28px 0 0;
    object-fit: cover;
    object-position: center;
    box-shadow: 0 26px 60px rgba(16, 42, 67, .16);
}

.location-landing .location-hero-art--illustration > img {
    height: 390px;
    min-height: 0;
    padding: 42px 30px 78px;
    border: 0;
    border-radius: 0;
    background: transparent;
    object-fit: contain;
    box-shadow: none;
}

.location-landing .office-float {
    position: absolute;
    right: 28px;
    bottom: 28px;
    max-width: 360px;
    padding: 22px 24px;
    border: 1px solid rgba(255, 255, 255, .42);
    border-radius: 18px;
    color: white;
    background: rgba(16, 42, 67, .88);
    box-shadow: 0 18px 38px rgba(16, 42, 67, .24);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
}

.location-landing .office-float strong {
    display: block;
    margin-bottom: 7px;
    font-size: 18px;
}

.location-landing .office-float span {
    display: block;
    color: #d9e7f2;
    font-size: 13px;
    line-height: 1.55;
}

.location-landing .signal-strip {
    position: relative;
    z-index: 3;
    display: grid;
    width: min(1040px, 100%);
    margin: 0 auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border: 1px solid rgba(16, 42, 67, .08);
    border-radius: 0 0 20px 20px;
    background: rgba(255, 255, 255, .96);
    box-shadow: var(--landing-shadow);
}

.location-landing .signal {
    padding: 22px 24px;
    text-align: center;
}

.location-landing .signal + .signal {
    border-left: 1px solid var(--landing-line);
}

.location-landing .signal strong {
    display: block;
    margin-bottom: 5px;
    font-size: 18px;
}

.location-landing .signal span {
    color: var(--landing-muted);
    font-size: 13px;
}

.location-landing .section {
    padding: 104px 20px;
}

.location-landing .section-shell {
    width: min(1080px, 100%);
    margin: 0 auto;
}

.location-landing .section-kicker {
    margin: 0 0 12px;
    color: var(--landing-blue-deep);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.location-landing main h2 {
    max-width: 780px;
    margin: 0;
    font-size: clamp(34px, 5vw, 54px);
    letter-spacing: -.042em;
    line-height: 1.05;
    text-wrap: balance;
}

.location-landing .section-intro {
    max-width: 690px;
    margin: 20px 0 0;
    color: var(--landing-muted);
    font-size: 18px;
    line-height: 1.65;
}

.location-landing .quick-topics {
    padding-top: 66px;
    padding-bottom: 56px;
    border-bottom: 1px solid var(--landing-line);
}

.location-landing .topic-grid {
    display: grid;
    margin-top: 34px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.location-landing .topic-card {
    display: flex;
    min-height: 148px;
    padding: 20px;
    flex-direction: column;
    justify-content: space-between;
    gap: 18px;
    border: 1px solid var(--landing-line);
    border-radius: 16px;
    background: #f8fbfd;
    text-decoration: none;
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.location-landing .topic-card:hover {
    transform: translateY(-3px);
    border-color: rgba(22, 131, 223, .35);
    box-shadow: 0 14px 34px rgba(16, 42, 67, .09);
}

.location-landing .topic-card strong {
    color: var(--landing-navy);
    font-size: 15px;
    line-height: 1.35;
}

.location-landing .topic-card span {
    color: var(--landing-muted);
    font-size: 12px;
    line-height: 1.45;
}

.location-landing .service-grid {
    display: grid;
    margin-top: 46px;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.location-landing .service-card {
    position: relative;
    overflow: hidden;
    min-height: 315px;
    padding: 34px;
    border: 1px solid var(--landing-line);
    border-radius: 26px;
    background: #fbfdff;
    text-decoration: none;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.location-landing .service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(22, 131, 223, .32);
    box-shadow: var(--landing-shadow);
}

.location-landing .service-card::after {
    position: absolute;
    right: -70px;
    bottom: -80px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(22, 131, 223, .07);
    content: "";
}

.location-landing .service-card.work::after {
    background: rgba(19, 143, 131, .08);
}

.location-landing .service-card.insurance::after {
    background: rgba(16, 42, 67, .07);
}

.location-landing .service-card.immigration::after {
    background: rgba(124, 58, 237, .07);
}

.location-landing .service-icon {
    display: grid;
    width: 52px;
    height: 52px;
    margin-bottom: 38px;
    place-items: center;
    border-radius: 16px;
    color: var(--landing-blue-deep);
    background: rgba(22, 131, 223, .1);
}

.location-landing .service-card.work .service-icon {
    color: var(--landing-teal);
    background: rgba(19, 143, 131, .1);
}

.location-landing .service-card.insurance .service-icon {
    color: var(--landing-navy-soft);
    background: rgba(53, 80, 108, .1);
}

.location-landing .service-card.immigration .service-icon {
    color: #7c3aed;
    background: rgba(124, 58, 237, .09);
}

.location-landing .service-icon svg {
    width: 25px;
    height: 25px;
}

.location-landing .service-card h3 {
    position: relative;
    z-index: 1;
    margin: 0;
    font-size: 27px;
    letter-spacing: -.025em;
}

.location-landing .service-card p {
    position: relative;
    z-index: 1;
    max-width: 440px;
    margin: 13px 0 20px;
    color: var(--landing-muted);
    line-height: 1.6;
}

.location-landing .service-list {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 7px;
    margin: 0 0 24px;
    padding: 0;
    color: var(--landing-muted);
    font-size: 13px;
    list-style: none;
}

.location-landing .service-list li::before {
    margin-right: 7px;
    color: var(--landing-blue);
    content: "✓";
    font-weight: 800;
}

.location-landing .service-link {
    position: relative;
    z-index: 1;
    color: var(--landing-blue-deep);
    font-size: 14px;
    font-weight: 750;
}

.location-landing .office-section,
.location-landing .process-section,
.location-landing .faq-section {
    background: #f5f9fc;
}

.location-landing .office-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr);
    align-items: center;
    gap: 56px;
}

.location-landing .office-image {
    overflow: hidden;
    min-height: 520px;
    border-radius: 26px;
    box-shadow: var(--landing-shadow);
}

.location-landing .office-image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
}

.location-landing .office-copy {
    color: var(--landing-muted);
    font-size: 17px;
    line-height: 1.7;
}

.location-landing .office-copy > p {
    margin: 20px 0 0;
}

.location-landing .office-details {
    display: grid;
    gap: 12px;
    margin: 30px 0 0;
}

.location-landing .office-detail {
    padding: 17px 18px;
    border: 1px solid var(--landing-line);
    border-radius: 14px;
    background: white;
}

.location-landing .office-detail strong {
    display: block;
    margin-bottom: 4px;
    color: var(--landing-navy);
    font-size: 14px;
}

.location-landing .office-detail span,
.location-landing .office-detail a {
    color: var(--landing-muted);
    font-size: 14px;
    text-decoration: none;
}

.location-landing .office-detail a:hover {
    color: var(--landing-blue-deep);
}

.location-landing .process-grid {
    display: grid;
    margin-top: 48px;
    grid-template-columns: repeat(3, 1fr);
    gap: 38px;
}

.location-landing .step-number {
    display: grid;
    width: 38px;
    height: 38px;
    margin-bottom: 20px;
    place-items: center;
    border-radius: 50%;
    color: white;
    background: var(--landing-navy);
    font-size: 14px;
    font-weight: 800;
}

.location-landing .process-grid h3 {
    margin: 0 0 10px;
    font-size: 20px;
}

.location-landing .process-grid p {
    margin: 0;
    color: var(--landing-muted);
    line-height: 1.62;
}
#document-review.document-review--homepage {
    padding: 104px 20px;
    color: var(--landing-navy);
    background: #f5f9fc;
    font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

#document-review.document-review--homepage .section-shell {
    width: min(1080px, 100%);
    margin: 0 auto;
}

#document-review.document-review--homepage .section-kicker {
    margin: 0 0 12px;
    color: var(--landing-blue-deep);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

#document-review.document-review--homepage h2 {
    max-width: 780px;
    margin: 0;
    color: var(--landing-navy);
    font-size: clamp(34px, 5vw, 54px);
    letter-spacing: -.042em;
    line-height: 1.05;
    text-wrap: balance;
}

#document-review.document-review--homepage .section-intro {
    max-width: 690px;
    margin: 20px 0 0;
    color: var(--landing-muted);
    font-size: 18px;
    line-height: 1.65;
}

#document-review.document-review--homepage .process-grid {
    display: grid;
    margin-top: 48px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 38px;
}

#document-review.document-review--homepage .step-number {
    display: grid;
    width: 38px;
    height: 38px;
    margin-bottom: 20px;
    place-items: center;
    border-radius: 50%;
    color: white;
    background: var(--landing-navy);
    font-size: 14px;
    font-weight: 800;
}

#document-review.document-review--homepage .process-grid h3 {
    margin: 0 0 10px;
    color: var(--landing-navy);
    font-size: 20px;
    font-weight: 700;
}

#document-review.document-review--homepage .process-grid p {
    margin: 0;
    color: var(--landing-muted);
    line-height: 1.62;
}

#document-review.document-review--homepage .reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 540ms ease, transform 540ms ease;
}

#document-review.document-review--homepage .reveal.visible {
    opacity: 1;
    transform: none;
}

@media (max-width: 900px) {
    #document-review.document-review--homepage {
        padding: 78px 20px;
    }

    #document-review.document-review--homepage h2 {
        font-size: 37px;
    }

    #document-review.document-review--homepage .process-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 560px) {
    #document-review.document-review--homepage {
        padding-right: 15px;
        padding-left: 15px;
    }
}
.lisbon-reviewer-section {
    padding: 72px 20px;
    color: var(--landing-navy);
    background: #fff;
    font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.lisbon-reviewer-shell {
    width: min(1080px, 100%);
    margin: 0 auto;
}

.lisbon-reviewer-card {
    display: grid;
    padding: 32px 0 0;
    grid-template-columns: 96px minmax(0, 1fr);
    align-items: center;
    gap: 28px;
    border-top: 1px solid var(--landing-line);
}

.lisbon-reviewer-photo {
    width: 96px;
    height: 96px;
    border: 1px solid var(--landing-line);
    border-radius: 50%;
}

.lisbon-reviewer-photo img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.lisbon-reviewer-eyebrow {
    margin: 0 0 6px;
    color: var(--landing-blue-deep);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.lisbon-reviewer-section .lisbon-reviewer-card h2 {
    margin: 0;
    color: var(--landing-navy);
    font-size: 30px;
    letter-spacing: -.025em;
    line-height: 1.15;
}

.lisbon-reviewer-role {
    margin: 7px 0 0;
    color: var(--landing-navy-soft);
    font-size: 15px;
    font-weight: 650;
}

.lisbon-reviewer-meta {
    display: flex;
    margin: 7px 0 0;
    flex-wrap: wrap;
    gap: 7px;
    color: var(--landing-muted);
    font-size: 14px;
}

.lisbon-reviewer-links {
    display: flex;
    margin-top: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.lisbon-reviewer-section .lisbon-reviewer-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: var(--landing-blue-deep);
    font-size: 13px;
    font-weight: 750;
    line-height: 1.2;
    text-decoration: none;
    transition: color 180ms ease;
}

.lisbon-reviewer-section .lisbon-reviewer-link:hover,
.lisbon-reviewer-section .lisbon-reviewer-link--primary:hover {
    color: var(--landing-teal);
}

.lisbon-reviewer-section .lisbon-reviewer-link--primary {
    color: var(--landing-blue-deep);
}

.lisbon-reviewer-linkedin {
    display: grid;
    width: 20px;
    height: 20px;
    place-items: center;
    border-radius: 5px;
    color: #fff;
    background: #0a66c2;
    font-size: 11px;
    font-weight: 850;
    line-height: 1;
}

@media (max-width: 720px) {
    .lisbon-reviewer-section {
        padding: 56px 15px;
    }

    .lisbon-reviewer-card {
        padding: 28px 0 0;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .lisbon-reviewer-photo {
        width: 84px;
        height: 84px;
    }

    .lisbon-reviewer-section .lisbon-reviewer-card h2 {
        font-size: 26px;
    }

    .lisbon-reviewer-links {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }

    .lisbon-reviewer-section .lisbon-reviewer-link {
        justify-content: flex-start;
    }
}


.location-landing .values-grid {
    display: grid;
    margin-top: 44px;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.location-landing .value-card {
    min-height: 150px;
    padding: 22px;
    border: 1px solid var(--landing-line);
    border-radius: 16px;
    background: white;
}

.location-landing .value-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
}

.location-landing .value-card span {
    color: var(--landing-muted);
    font-size: 13px;
    line-height: 1.5;
}

.location-landing .faq-shell {
    width: min(860px, 100%);
}

.location-landing .faq-list {
    display: grid;
    gap: 12px;
    margin-top: 38px;
}

.location-landing .faq-list details {
    overflow: hidden;
    border: 1px solid var(--landing-line);
    border-radius: 14px;
    background: white;
}

.location-landing .faq-list summary {
    display: flex;
    padding: 20px 22px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    color: var(--landing-navy);
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    list-style: none;
}

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

.location-landing .faq-list summary::after {
    flex: 0 0 auto;
    color: var(--landing-blue-deep);
    content: "+";
    font-size: 22px;
    font-weight: 500;
    line-height: 1;
    transition: transform 180ms ease;
}

.location-landing .faq-list details[open] summary::after {
    transform: rotate(45deg);
}

.location-landing .faq-list details p {
    margin: 0;
    padding: 0 22px 22px;
    color: var(--landing-muted);
    line-height: 1.65;
}

.location-landing .reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 540ms ease, transform 540ms ease;
}

.location-landing .reveal.visible {
    opacity: 1;
    transform: none;
}

@media (max-width: 900px) {

    .location-landing .location-hero {
        margin-top: -68px;
        padding-top: 117px;
    }

    .location-landing h1 {
        max-width: 560px;
        font-size: clamp(36px, 10.2vw, 52px);
        line-height: 1.02;
    }

    .location-landing .hero-lead {
        max-width: 560px;
        margin-top: 25px;
        font-size: 18px;
    }

    .location-landing .location-hero-art > img {
        height: 430px;
        min-height: 0;
        border-radius: 22px 22px 0 0;
    }

    .location-landing .location-hero-art--illustration > img {
        height: 320px;
        padding: 34px 20px 104px;
    }

    .location-landing .office-float {
        right: 16px;
        bottom: 16px;
        left: 16px;
        max-width: none;
    }

    .location-landing .signal-strip {
        grid-template-columns: 1fr;
        border-radius: 0 0 18px 18px;
    }

    .location-landing .signal + .signal {
        border-top: 1px solid var(--landing-line);
        border-left: 0;
    }

    .location-landing .section {
        padding: 78px 20px;
    }

    .location-landing main h2 {
        font-size: 37px;
    }

    .location-landing .topic-grid,
    .location-landing .service-grid,
    .location-landing .office-grid,
    .location-landing .process-grid,
    .location-landing .values-grid {
        grid-template-columns: 1fr;
    }

    .location-landing .topic-card,
    .location-landing .service-card {
        min-height: 0;
    }

    .location-landing .office-grid {
        gap: 36px;
    }

    .location-landing .office-image,
    .location-landing .office-image img {
        min-height: 420px;
    }

}

@media (max-width: 560px) {
    .location-landing .location-hero {
        padding-right: 15px;
        padding-left: 15px;
    }

    .location-landing .location-hero-art > img {
        height: 360px;
    }

    .location-landing .location-hero-art--illustration > img {
        height: 300px;
        padding: 28px 14px 112px;
    }

    .location-landing .office-float {
        padding: 18px;
    }

    .location-landing .topic-grid {
        grid-template-columns: 1fr;
    }

    .location-landing .section {
        padding-right: 15px;
        padding-left: 15px;
    }
}

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

    .location-landing .reveal {
        opacity: 1;
        transform: none;
    }
}
