:root {
    --navy: #0b2e6b;
    --navy-dark: #071f4b;
    --navy-soft: #123d7d;
    --emerald: #2aa84a;
    --emerald-dark: #176f32;
    --emerald-action: #176f32;
    --emerald-action-hover: #0f5c29;
    --gold: #c7a34b;
    --gold-soft: #e8d49b;
    --gold-text: #7c6115;
    --ink: #152238;
    --muted: #65728a;
    --surface: #f6f8fb;
    --white: #ffffff;
    --border: #e6eaf0;
    --shadow-sm: 0 8px 24px rgba(11, 46, 107, .08);
    --shadow-md: 0 18px 50px rgba(11, 46, 107, .13);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;
    --container: 1240px;
    --header-height: 84px;
    --transition: 220ms ease;
}

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

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

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

::selection {
    color: var(--white);
    background: var(--navy);
}

a {
    color: var(--navy);
    text-decoration: none;
}

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

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    color: var(--navy-dark);
    line-height: 1.15;
    letter-spacing: -.03em;
}

h1 {
    margin-bottom: 1rem;
    font-size: clamp(2.65rem, 5.4vw, 5.15rem);
    font-weight: 760;
}

h2 {
    margin-bottom: 1rem;
    font-size: clamp(2rem, 3.6vw, 3.35rem);
    font-weight: 740;
}

h3 {
    margin-bottom: .65rem;
    font-size: clamp(1.2rem, 2vw, 1.48rem);
    font-weight: 720;
}

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

a:focus-visible,
button:focus-visible {
    outline: 3px solid rgba(42, 168, 74, .4);
    outline-offset: 4px;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    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: 3000;
    top: 12px;
    left: 12px;
    padding: .7rem 1rem;
    color: var(--white);
    background: var(--navy-dark);
    border-radius: 8px;
    font-weight: 700;
    transform: translateY(-160%);
    transition: transform var(--transition);
}

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

.eyebrow {
    margin-bottom: 1rem;
    color: var(--emerald-dark);
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .14em;
    line-height: 1.5;
    text-transform: uppercase;
}

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

.section {
    padding: clamp(4.75rem, 8vw, 7.2rem) 0;
}

.section-heading {
    max-width: 690px;
}

.section-heading > p:last-child,
.section-heading-centered > p:last-child {
    color: var(--muted);
    font-size: 1.05rem;
}

.section-heading-centered {
    margin: 0 auto 3rem;
    text-align: center;
}

.button-group {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;
}

.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: .75rem 1.35rem;
    border: 1px solid transparent;
    border-radius: 10px;
    font-size: .94rem;
    font-weight: 750;
    line-height: 1.2;
    text-align: center;
    transition: color var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

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

.button-large {
    min-width: 160px;
    min-height: 53px;
    padding: .9rem 1.45rem;
}

.button-primary {
    color: var(--white);
    background: var(--emerald-action);
    border-color: var(--emerald-action);
    box-shadow: 0 9px 22px rgba(42, 168, 74, .22);
}

.button-primary:hover {
    color: var(--white);
    background: var(--emerald-action-hover);
    border-color: var(--emerald-action-hover);
    box-shadow: 0 13px 26px rgba(42, 168, 74, .25);
}

.button-secondary {
    color: var(--navy);
    background: transparent;
    border-color: rgba(11, 46, 107, .3);
}

.button-secondary:hover {
    color: var(--white);
    background: var(--navy);
    border-color: var(--navy);
}

.button-light {
    color: var(--navy-dark);
    background: var(--white);
    border-color: var(--white);
    box-shadow: var(--shadow-sm);
}

.button-light:hover {
    color: var(--navy-dark);
    background: #f6faf8;
}

.button-outline-light {
    color: var(--white);
    background: transparent;
    border-color: rgba(255, 255, 255, .5);
}

.button-outline-light:hover {
    color: var(--navy-dark);
    background: var(--white);
    border-color: var(--white);
}

/* Header */
.site-header {
    position: sticky;
    z-index: 1200;
    top: 0;
    min-height: var(--header-height);
    background: rgba(255, 255, 255, .97);
    border-bottom: 1px solid rgba(11, 46, 107, .08);
    backdrop-filter: blur(14px);
    transition: box-shadow var(--transition);
}

.site-header.is-scrolled {
    box-shadow: var(--shadow-sm);
}

.header-shell {
    display: flex;
    min-height: var(--header-height);
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.brand {
    display: inline-flex;
    flex: 0 1 auto;
    align-items: center;
    gap: 11px;
    color: var(--navy-dark);
}

.brand:hover {
    color: var(--navy-dark);
}

.brand-mark {
    display: grid;
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    place-items: center;
    color: var(--white);
    background: linear-gradient(145deg, var(--navy), var(--navy-dark));
    border: 1px solid rgba(199, 163, 75, .65);
    border-radius: 50%;
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .08em;
}

.brand-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
    line-height: 1.1;
}

.brand-copy strong {
    font-size: 1.04rem;
    letter-spacing: -.02em;
}

.brand-copy small {
    margin-top: 5px;
    color: var(--muted);
    font-size: .63rem;
    letter-spacing: .015em;
}

.navigation {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: .15rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-list a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    padding: .65rem .7rem;
    color: #24334d;
    border-radius: 7px;
    font-size: .9rem;
    font-weight: 650;
    transition: color var(--transition), background var(--transition);
}

.nav-list a:hover {
    color: var(--navy);
    background: #f3f6fa;
}

.header-action {
    white-space: nowrap;
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 0;
    place-items: center;
    color: var(--navy-dark);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    cursor: pointer;
}

.menu-toggle-lines {
    display: grid;
    width: 22px;
    gap: 4px;
}

.menu-toggle-lines i {
    display: block;
    width: 100%;
    height: 2px;
    background: currentColor;
    border-radius: 4px;
    transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines i:first-child {
    transform: translateY(6px) rotate(45deg);
}

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

.menu-toggle[aria-expanded="true"] .menu-toggle-lines i:last-child {
    transform: translateY(-6px) rotate(-45deg);
}

/* Hero */
.hero {
    position: relative;
    overflow: hidden;
    padding: clamp(4.5rem, 7vw, 7rem) 0;
    background: linear-gradient(110deg, rgba(255, 255, 255, .99) 0%, rgba(247, 250, 253, .97) 56%, rgba(240, 247, 244, .99) 100%);
}

.hero::before {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
    opacity: .42;
    background-image: linear-gradient(rgba(11, 46, 107, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(11, 46, 107, .03) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to right, #000 0%, transparent 70%);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(430px, .96fr);
    gap: clamp(2.75rem, 5vw, 5.5rem);
    align-items: center;
}

.hero-copy {
    max-width: 660px;
}

.hero-tagline {
    margin-bottom: .9rem;
    color: var(--emerald-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.2rem, 2vw, 1.55rem);
    font-style: italic;
}

.hero-lead {
    max-width: 620px;
    margin-bottom: 2rem;
    color: #56647a;
    font-size: clamp(1.05rem, 1.6vw, 1.2rem);
}

.hero-details {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    align-items: center;
    margin-top: 1.5rem;
    color: #68758a;
    font-size: .87rem;
    font-weight: 650;
}

.hero-details a {
    color: var(--navy);
}

.hero-visual {
    position: relative;
    max-width: 630px;
    margin-left: auto;
    padding: 12px 0 0 12px;
}

.hero-visual::before {
    position: absolute;
    z-index: -1;
    top: 0;
    right: 12px;
    bottom: 14px;
    left: 0;
    content: "";
    border: 1px solid rgba(199, 163, 75, .62);
    border-radius: 30px 96px 30px 30px;
}

.hero-visual img {
    width: 100%;
    min-height: 440px;
    max-height: 540px;
    object-fit: cover;
    object-position: 64% center;
    border-radius: 26px 90px 26px 26px;
    box-shadow: 0 30px 70px rgba(7, 31, 75, .17);
}

.hero-values {
    position: absolute;
    right: 24px;
    bottom: -17px;
    display: flex;
    gap: 5px;
    margin: 0;
    padding: 9px;
    background: rgba(255, 255, 255, .96);
    border: 1px solid rgba(11, 46, 107, .08);
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
    list-style: none;
}

.hero-values li {
    padding: 5px 9px;
    color: var(--navy);
    background: #f1f6fb;
    border-radius: 7px;
    font-size: .69rem;
    font-weight: 800;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-orb-one {
    top: -190px;
    right: -120px;
    width: 420px;
    height: 420px;
    background: rgba(42, 168, 74, .08);
}

.hero-orb-two {
    bottom: -180px;
    left: 37%;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(199, 163, 75, .24);
}

/* About */
.about-section {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
    gap: clamp(2rem, 7vw, 7rem);
    align-items: start;
}

.about-copy {
    padding-top: 1.2rem;
    color: var(--muted);
    font-size: clamp(1.05rem, 1.6vw, 1.17rem);
}

.about-copy p:last-child {
    margin-bottom: 0;
}

.provider-note {
    display: grid;
    grid-template-columns: 165px 1fr;
    gap: 1.75rem;
    align-items: center;
    margin-top: 3.5rem;
    padding: 1.2rem 1.35rem;
    background: #fbfcfe;
    border: 1px solid var(--border);
    border-left: 3px solid var(--gold);
    border-radius: var(--radius-sm);
}

.provider-note-label {
    display: flex;
    gap: .7rem;
    align-items: center;
    color: var(--navy-dark);
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.provider-note-label i {
    width: 8px;
    height: 8px;
    background: var(--emerald);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(42, 168, 74, .1);
}

.provider-note p {
    margin: 0;
    color: var(--muted);
    font-size: .87rem;
    line-height: 1.65;
}

/* Services */
.services-section {
    background: var(--surface);
    border-top: 1px solid #eef1f5;
    border-bottom: 1px solid #eef1f5;
}

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

.service-card {
    display: flex;
    min-height: 330px;
    flex-direction: column;
    padding: 1.65rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: 0 8px 26px rgba(11, 46, 107, .035);
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(42, 168, 74, .3);
    box-shadow: var(--shadow-md);
}

.card-number,
.trust-index {
    display: block;
    margin-bottom: 2.1rem;
    color: var(--gold-text);
    font-size: .74rem;
    font-weight: 850;
    letter-spacing: .13em;
}

.service-card p {
    margin-bottom: 1.5rem;
    color: var(--muted);
    font-size: .92rem;
    line-height: 1.65;
}

.text-link {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: .5rem;
    margin-top: auto;
    color: var(--navy);
    font-size: .87rem;
    font-weight: 750;
}

.text-link:hover {
    color: var(--emerald-dark);
}

/* Planning needs */
.needs-section {
    position: relative;
    overflow: hidden;
    color: rgba(255, 255, 255, .76);
    background: radial-gradient(circle at 85% 10%, rgba(42, 168, 74, .19), transparent 30%), linear-gradient(135deg, #071f4b 0%, #0b2e6b 62%, #0a3763 100%);
}

.needs-decoration {
    position: absolute;
    right: -160px;
    bottom: -210px;
    width: 430px;
    height: 430px;
    border: 1px solid rgba(199, 163, 75, .2);
    border-radius: 50%;
}

.needs-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
    gap: clamp(3rem, 8vw, 7rem);
    align-items: center;
}

.needs-copy h2,
.needs-list {
    color: var(--white);
}

.needs-copy p:not(.eyebrow) {
    max-width: 570px;
    margin-bottom: 1.8rem;
}

.needs-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .8rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.needs-list li {
    min-height: 130px;
    padding: 1.25rem;
    background: rgba(255, 255, 255, .075);
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 15px;
    font-weight: 700;
    line-height: 1.45;
    backdrop-filter: blur(5px);
}

.needs-list span {
    display: block;
    margin-bottom: 1.5rem;
    color: var(--gold-soft);
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .12em;
}

/* Approach */
.approach-section {
    background: var(--white);
}

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

.trust-card {
    min-height: 255px;
    padding: 1.55rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
}

.trust-card p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.65;
}

/* Careers */
.careers-section {
    padding-top: 0;
    background: var(--white);
}

.careers-panel {
    display: grid;
    grid-template-columns: minmax(0, .88fr) minmax(440px, 1.12fr);
    gap: clamp(2.5rem, 7vw, 6rem);
    padding: clamp(2.2rem, 5vw, 4.5rem);
    color: rgba(255, 255, 255, .78);
    background: linear-gradient(135deg, var(--navy-dark), var(--navy) 65%, #0a3c65);
    border: 1px solid rgba(199, 163, 75, .22);
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 60px rgba(7, 31, 75, .16);
}

.careers-panel h2,
.careers-panel h3 {
    color: var(--white);
}

.careers-intro > p:not(.eyebrow):not(.careers-note) {
    font-size: 1.05rem;
}

.careers-note,
.microcopy {
    color: rgba(255, 255, 255, .62);
    font-size: .82rem;
}

.career-details h3 {
    margin-bottom: 1rem;
    font-size: 1.12rem;
}

.check-list {
    display: grid;
    gap: .72rem;
    margin: 0 0 1.7rem;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 1.6rem;
    font-size: .9rem;
    line-height: 1.55;
}

.check-list li::before {
    position: absolute;
    top: .47rem;
    left: 0;
    width: 8px;
    height: 8px;
    content: "";
    background: var(--emerald);
    border: 2px solid rgba(255, 255, 255, .72);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(42, 168, 74, .15);
}

.career-button {
    margin-bottom: 1rem;
}

.microcopy {
    margin-bottom: 0;
}

/* Contact */
.contact-section {
    background: var(--surface);
    border-top: 1px solid var(--border);
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(500px, 1.15fr);
    gap: clamp(3rem, 8vw, 7rem);
    align-items: center;
}

.contact-copy > p:not(.eyebrow) {
    max-width: 540px;
    margin-bottom: 1.75rem;
    color: var(--muted);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin: 0;
    font-style: normal;
}

.contact-card {
    display: flex;
    min-width: 0;
    min-height: 152px;
    flex-direction: column;
    justify-content: center;
    padding: 1.3rem;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 8px 22px rgba(11, 46, 107, .04);
    overflow-wrap: anywhere;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

a.contact-card:hover {
    color: var(--ink);
    border-color: rgba(42, 168, 74, .32);
    box-shadow: var(--shadow-sm);
    transform: translateY(-3px);
}

.contact-label {
    margin-bottom: .55rem;
    color: var(--emerald-dark);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.contact-card strong {
    color: var(--navy-dark);
    font-size: .95rem;
}

.contact-card small {
    margin-top: .45rem;
    color: var(--muted);
}

/* Final CTA */
.final-cta {
    color: rgba(255, 255, 255, .78);
    background: linear-gradient(105deg, var(--navy-dark), var(--navy) 64%, #0a5b48);
}

.final-cta-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr);
    gap: 3rem;
    align-items: center;
    padding-block: clamp(3.5rem, 6vw, 5rem);
}

.final-cta h2 {
    max-width: 800px;
    color: var(--white);
}

.final-cta p:last-child {
    max-width: 750px;
    margin-bottom: 0;
}

.final-cta-actions {
    justify-content: flex-end;
}

/* Footer */
.site-footer {
    color: rgba(255, 255, 255, .72);
    background: #061a3f;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr .8fr .8fr;
    gap: clamp(2rem, 7vw, 6rem);
    padding-block: 4rem 3rem;
}

.brand-footer {
    color: var(--white);
}

.brand-footer:hover {
    color: var(--white);
}

.brand-footer .brand-copy small {
    color: rgba(255, 255, 255, .56);
}

.footer-brand p {
    max-width: 430px;
    margin: 1.2rem 0 0;
}

.footer-title {
    margin-bottom: 1rem;
    color: var(--white);
    font-size: .78rem;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.footer-links {
    display: grid;
    gap: .58rem;
    margin: 0;
    padding: 0;
    list-style: none;
    overflow-wrap: anywhere;
}

.footer-links a {
    color: rgba(255, 255, 255, .72);
}

.footer-links a:hover {
    color: var(--gold-soft);
}

.provider-disclaimer {
    padding-bottom: 2rem;
}

.provider-disclaimer p {
    margin: 0;
    padding: 1rem 1.15rem;
    color: rgba(255, 255, 255, .58);
    background: rgba(255, 255, 255, .035);
    border: 1px solid rgba(255, 255, 255, .08);
    border-left: 2px solid rgba(199, 163, 75, .65);
    border-radius: 8px;
    font-size: .78rem;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-block: 1.15rem;
    font-size: .78rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom p:last-child {
    color: var(--gold-soft);
    font-size: .7rem;
    font-weight: 750;
    letter-spacing: .12em;
}

.floating-whatsapp {
    position: fixed;
    z-index: 1000;
    right: 20px;
    bottom: 20px;
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    color: var(--white);
    background: #075e54;
    border: 2px solid rgba(255, 255, 255, .8);
    border-radius: 50%;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .2);
    font-size: .72rem;
    font-weight: 850;
    transition: transform var(--transition);
}

.floating-whatsapp:hover {
    color: var(--white);
    transform: translateY(-3px);
}

.mobile-actions {
    display: none;
}

/* Responsive */
@media (max-width: 1100px) {
    :root {
        --header-height: 76px;
    }

    .menu-toggle {
        display: grid;
    }

    .navigation {
        position: fixed;
        z-index: 1150;
        top: var(--header-height);
        right: 0;
        bottom: 0;
        display: flex;
        width: min(88vw, 390px);
        align-items: stretch;
        flex-direction: column;
        gap: 1.25rem;
        padding: 1.4rem;
        background: var(--white);
        border-left: 1px solid var(--border);
        box-shadow: -18px 30px 50px rgba(7, 31, 75, .15);
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
        clip-path: inset(0 0 0 100%);
        pointer-events: none;
        transition: clip-path var(--transition), opacity var(--transition), visibility var(--transition);
    }

    .navigation.is-open {
        opacity: 1;
        visibility: visible;
        clip-path: inset(0);
        pointer-events: auto;
    }

    .nav-list {
        display: grid;
        gap: .35rem;
    }

    .nav-list a {
        width: 100%;
        min-height: 50px;
        padding: .75rem 1rem;
        border: 1px solid transparent;
        font-size: 1rem;
    }

    .nav-list a:hover {
        border-color: var(--border);
    }

    .header-action {
        width: 100%;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(380px, .9fr);
        gap: 2.5rem;
    }

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

    .contact-layout {
        grid-template-columns: minmax(0, .8fr) minmax(430px, 1.2fr);
        gap: 3rem;
    }
}

@media (max-width: 900px) {
    .hero-grid,
    .about-grid,
    .needs-layout,
    .careers-panel,
    .contact-layout,
    .final-cta-inner {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        max-width: 730px;
    }

    .hero-visual {
        max-width: 720px;
        margin: 0;
    }

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

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

    .needs-layout,
    .contact-layout {
        gap: 2.75rem;
    }

    .careers-panel {
        gap: 2rem;
    }

    .final-cta-actions {
        justify-content: flex-start;
    }

    .footer-grid {
        grid-template-columns: 1.2fr .8fr;
    }

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

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

    .section {
        padding: 4.5rem 0;
    }

    .brand-copy small {
        display: none;
    }

    .hero {
        padding: 3.7rem 0 4.5rem;
    }

    .hero-visual img {
        min-height: 0;
        max-height: none;
        aspect-ratio: 16 / 10;
    }

    .provider-note {
        grid-template-columns: 1fr;
        gap: .8rem;
    }

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

    .service-card {
        min-height: 0;
    }

    .card-number,
    .trust-index {
        margin-bottom: 1.4rem;
    }

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

    .needs-list li {
        min-height: 0;
    }

    .needs-list span {
        margin-bottom: .85rem;
    }

    .trust-card {
        min-height: 0;
    }

    .careers-panel {
        width: min(calc(100% - 24px), var(--container));
        border-radius: var(--radius-md);
    }

    .contact-card {
        min-height: 135px;
    }

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

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom {
        padding-bottom: 68px;
    }

    .footer-bottom-inner {
        flex-direction: column;
    }

    .floating-whatsapp {
        display: none;
    }

    .mobile-actions {
        position: fixed;
        z-index: 1050;
        right: 0;
        bottom: 0;
        left: 0;
        display: grid;
        grid-template-columns: 1fr 1.35fr;
        min-height: 56px;
        background: var(--white);
        box-shadow: 0 -6px 25px rgba(7, 31, 75, .15);
    }

    .mobile-actions a {
        display: grid;
        min-height: 56px;
        place-items: center;
        color: var(--navy);
        font-size: .88rem;
        font-weight: 800;
    }

    .mobile-actions a:last-child {
        color: var(--white);
        background: var(--emerald-action);
    }
}

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

    h1 {
        font-size: clamp(2.35rem, 13vw, 3.1rem);
    }

    h2 {
        font-size: clamp(1.85rem, 10vw, 2.45rem);
    }

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

    .brand-copy strong {
        font-size: .95rem;
    }

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

    .hero-values {
        right: 10px;
        max-width: calc(100% - 28px);
    }

    .hero-values li {
        padding-inline: 7px;
        font-size: .62rem;
    }

    .hero-details {
        gap: .45rem;
    }

    .careers-panel {
        padding: 1.7rem;
    }

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

@media (max-width: 360px) {
    .brand-copy strong {
        max-width: 164px;
        font-size: .86rem;
    }

    .hero-values li {
        padding-inline: 5px;
        font-size: .58rem;
    }
}

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

@media print {
    .site-header,
    .floating-whatsapp,
    .mobile-actions,
    .button,
    .menu-toggle {
        display: none !important;
    }

    .hero,
    .section,
    .final-cta {
        padding-block: 2rem;
    }

    .needs-section,
    .careers-panel,
    .final-cta,
    .site-footer {
        color: #000;
        background: #fff;
        box-shadow: none;
    }

    h1,
    h2,
    h3,
    .needs-copy h2,
    .careers-panel h2,
    .careers-panel h3,
    .final-cta h2,
    .footer-title {
        color: #000;
    }
}
