:root {
    --navy: #0e4e8e;
    --navy-dark: #082f55;
    --ink: #102942;
    --blue: #1678c7;
    --blue-soft: #e8f7ff;
    --sky: #5edcf1;
    --lime: #dffbff;
    --accent: #21a8d4;
    --paper: #f6f9fc;
    --white: #ffffff;
    --line: #dce5ee;
    --muted: #6d7f91;
    --display: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
    --body: "Inter", "Segoe UI", Arial, sans-serif;
    --shadow: 0 20px 55px rgba(19, 60, 105, 0.11);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--body);
    font-size: 15px;
    line-height: 1.65;
    font-synthesis: none;
    text-rendering: optimizeLegibility;
}

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

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

::selection {
    background: var(--lime);
    color: var(--ink);
}

.container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1000;
    padding: 10px 14px;
    border-radius: 8px;
    background: var(--lime);
    color: var(--ink);
    font-weight: 700;
    transform: translateY(-160%);
    transition: transform 180ms ease;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.94);
    color: var(--ink);
    backdrop-filter: blur(16px);
    transition: box-shadow 180ms ease;
}

.site-header.is-scrolled {
    box-shadow: 0 10px 30px rgba(16, 43, 70, 0.09);
}

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

.brand {
    display: inline-flex;
    min-width: max-content;
    align-items: center;
    gap: 10px;
}

.brand-mark {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgba(22, 120, 199, 0.28);
    border-radius: 11px;
    padding: 3px;
    background: linear-gradient(145deg, #f8fdff, #dff7ff);
    box-shadow: 0 8px 20px rgba(22, 120, 199, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

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

.brand-copy {
    display: grid;
    line-height: 1;
}

.brand-copy strong {
    color: var(--navy);
    font-family: var(--display);
    font-size: 14px;
    letter-spacing: 0.1em;
}

.brand-copy small {
    margin-top: 5px;
    color: #8193a5;
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 0.28em;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: clamp(18px, 3vw, 34px);
    margin-left: auto;
}

.desktop-nav a {
    position: relative;
    color: #607286;
    font-size: 12px;
    font-weight: 600;
    transition: color 180ms ease;
}

.desktop-nav a::after {
    position: absolute;
    right: 0;
    bottom: -10px;
    left: 0;
    height: 2px;
    border-radius: 4px;
    background: var(--accent);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
    color: var(--navy);
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 11px;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 0 21px;
    font-size: 12px;
    font-weight: 700;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button span {
    font-size: 17px;
    line-height: 1;
}

.button-header {
    min-height: 43px;
    padding: 0 16px;
    background: var(--navy);
    color: var(--white);
    box-shadow: 0 9px 19px rgba(18, 60, 105, 0.15);
}

.button-header:hover {
    background: var(--blue);
}

.button-primary {
    background: var(--blue);
    color: var(--white);
    box-shadow: 0 12px 25px rgba(22, 120, 199, 0.22);
}

.button-primary:hover {
    background: #0d5fa8;
    box-shadow: 0 17px 30px rgba(22, 120, 199, 0.3);
}

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

.button-outline-light:hover {
    border-color: var(--lime);
    background: rgba(214, 245, 91, 0.12);
}

.mobile-nav {
    display: none;
    position: relative;
}

.mobile-nav summary {
    display: grid;
    width: 43px;
    height: 43px;
    place-content: center;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: 11px;
    background: var(--white);
    list-style: none;
}

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

.mobile-nav summary span {
    display: block;
    width: 18px;
    height: 1px;
    background: var(--navy);
    transition: transform 180ms ease, opacity 180ms ease;
}

.mobile-nav[open] summary span:first-child {
    transform: translateY(6px) rotate(45deg);
}

.mobile-nav[open] summary span:nth-child(2) {
    opacity: 0;
}

.mobile-nav[open] summary span:last-child {
    transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav-panel {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    display: grid;
    min-width: 225px;
    gap: 2px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--white);
    box-shadow: 0 18px 38px rgba(18, 60, 105, 0.16);
}

.mobile-nav-panel > a:not(.button) {
    padding: 11px 12px;
    border-radius: 8px;
    color: #53687d;
    font-size: 13px;
}

.mobile-nav-panel > a:not(.button):hover {
    background: var(--blue-soft);
    color: var(--navy);
}

.mobile-nav-panel .button {
    margin-top: 7px;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 105px 0 90px;
    background: linear-gradient(135deg, #f6fbff 0%, #eef6ff 52%, #f8f6f4 100%);
}

.hero::before {
    position: absolute;
    top: -210px;
    right: -130px;
    width: 560px;
    height: 560px;
    border: 1px solid rgba(39, 118, 223, 0.12);
    border-radius: 50%;
    box-shadow: 0 0 0 34px rgba(39, 118, 223, 0.03), 0 0 0 70px rgba(39, 118, 223, 0.025);
    content: "";
    pointer-events: none;
}

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

.hero-shape-one {
    right: 35%;
    bottom: -150px;
    width: 360px;
    height: 360px;
    background: rgba(214, 245, 91, 0.12);
    filter: blur(70px);
}

.hero-shape-two {
    top: 13%;
    left: -170px;
    width: 300px;
    height: 300px;
    background: rgba(131, 223, 255, 0.18);
    filter: blur(80px);
}

.hero-grid {
    position: relative;
    display: grid;
    align-items: center;
    grid-template-columns: minmax(0, 0.93fr) minmax(420px, 0.85fr);
    gap: clamp(50px, 8vw, 120px);
}

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

.eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 17px;
    color: var(--blue);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.18em;
    line-height: 1.2;
    text-transform: uppercase;
}

.eyebrow-dark {
    color: var(--blue);
}

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

.eyebrow-dot,
.status-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 5px rgba(33, 168, 212, 0.14);
}

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

h1,
h2,
h3 {
    font-family: var(--display);
    letter-spacing: -0.045em;
}

h1 {
    max-width: 680px;
    margin-bottom: 25px;
    color: var(--navy-dark);
    font-size: clamp(3.45rem, 6.1vw, 6.2rem);
    font-weight: 700;
    line-height: 0.98;
}

.hero-lede {
    max-width: 570px;
    margin-bottom: 32px;
    color: var(--muted);
    font-size: clamp(1rem, 1.4vw, 1.15rem);
}

.hero-actions,
.contact-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 19px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--navy);
    font-size: 12px;
    font-weight: 700;
}

.text-link span {
    color: var(--accent);
    font-size: 17px;
    transition: transform 180ms ease;
}

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

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

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 54px;
    border-top: 1px solid rgba(18, 60, 105, 0.16);
    padding-top: 18px;
}

.hero-proof div {
    display: grid;
    gap: 1px;
}

.hero-proof strong {
    color: var(--navy);
    font-family: var(--display);
    font-size: 19px;
    line-height: 1.1;
}

.hero-proof span {
    color: var(--muted);
    font-size: 10px;
}

.hero-visual {
    position: relative;
    justify-self: end;
    width: min(100%, 520px);
}

.hero-image-card {
    position: relative;
    aspect-ratio: 0.92;
    overflow: hidden;
    border: 8px solid rgba(255, 255, 255, 0.72);
    border-radius: 31px;
    background: var(--navy);
    box-shadow: 0 25px 65px rgba(18, 60, 105, 0.2);
    transform: rotate(2deg);
}

.hero-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.83) contrast(1.04);
    transform: scale(1.05);
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(18, 60, 105, 0.04), rgba(9, 31, 55, 0.72));
}

.hero-image-label,
.hero-note {
    position: absolute;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 14px;
    background: rgba(18, 60, 105, 0.82);
    color: var(--white);
    box-shadow: 0 15px 28px rgba(18, 60, 105, 0.2);
    backdrop-filter: blur(12px);
}

.hero-image-label {
    right: 24px;
    bottom: 23px;
    left: 24px;
    padding: 13px 14px;
}

.hero-image-label span:last-child,
.hero-note {
    display: grid;
    gap: 2px;
    line-height: 1.25;
}

.hero-image-label strong,
.hero-note strong {
    font-size: 12px;
}

.hero-image-label small,
.hero-note span {
    color: #c3d5e6;
    font-size: 10px;
}

.status-dot {
    background: var(--lime);
    box-shadow: 0 0 0 5px rgba(214, 245, 91, 0.15), 0 0 17px rgba(214, 245, 91, 0.7);
}

.hero-note {
    right: -24px;
    padding: 12px 15px;
    background: var(--white);
    color: var(--navy);
}

.hero-note span {
    color: var(--muted);
}

.hero-note-top {
    top: 54px;
}

.hero-note-bottom {
    bottom: 55px;
    left: -35px;
}

.trust-bar {
    border-bottom: 1px solid var(--line);
    background: var(--white);
}

.trust-bar-inner {
    display: flex;
    min-height: 71px;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: #60758a;
    font-size: 10px;
    font-weight: 700;
}

.trust-bar-inner > span:first-child {
    color: var(--navy);
    font-family: var(--display);
    font-size: 11px;
}

.trust-bar-inner i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
}

.section {
    padding: 125px 0;
}

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

.about-grid {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 0.9fr);
    gap: clamp(55px, 9vw, 125px);
}

.about-image {
    position: relative;
    min-height: 480px;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--navy);
    box-shadow: var(--shadow);
}

.about-image img {
    width: 100%;
    height: 100%;
    min-height: 480px;
    object-fit: cover;
    filter: saturate(0.83);
}

.about-image::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(11, 41, 73, 0.7), transparent 55%);
    content: "";
}

.about-image-badge {
    position: absolute;
    z-index: 1;
    right: 23px;
    bottom: 23px;
    left: 23px;
    display: flex;
    align-items: baseline;
    gap: 7px;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    padding-top: 13px;
    color: var(--white);
}

.about-image-badge strong {
    font-family: var(--display);
    font-size: 24px;
}

.about-image-badge span {
    color: var(--lime);
    font-size: 12px;
}

.about-copy {
    max-width: 550px;
}

.about-copy h2,
.section-heading h2,
.why-heading h2,
.contact-copy h2 {
    margin-bottom: 20px;
    color: var(--navy-dark);
    font-size: clamp(2.6rem, 5vw, 4.8rem);
    font-weight: 700;
    line-height: 1.02;
}

.about-copy > p:not(.eyebrow),
.section-heading > p,
.why-heading > p,
.contact-copy > p {
    color: var(--muted);
    font-size: 15px;
}

.about-copy > p:not(.eyebrow) {
    margin-bottom: 21px;
}

.about-copy .text-link {
    margin-top: 11px;
}

.services-section {
    border-top: 1px solid var(--line);
    background: var(--white);
}

.section-heading {
    display: grid;
    align-items: end;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 0.55fr);
    gap: 55px;
    margin-bottom: 54px;
}

.section-heading h2 {
    max-width: 650px;
    margin-bottom: 0;
}

.section-heading > p {
    max-width: 400px;
    margin: 0 0 4px auto;
}

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

.service-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--paper);
    box-shadow: 0 10px 25px rgba(18, 60, 105, 0.05);
    transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.service-card:hover {
    border-color: rgba(39, 118, 223, 0.45);
    box-shadow: 0 19px 38px rgba(18, 60, 105, 0.12);
    transform: translateY(-6px);
}

.service-card-image {
    position: relative;
    aspect-ratio: 1.28;
    overflow: hidden;
    background: #dce9f4;
}

.service-card-image::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(11, 41, 73, 0.58));
    content: "";
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 400ms ease;
}

.service-card:hover .service-card-image img {
    transform: scale(1.07);
}

.service-card-image > span {
    position: absolute;
    z-index: 1;
    right: 12px;
    bottom: 12px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    padding: 5px 8px;
    background: rgba(11, 41, 73, 0.62);
    color: var(--white);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.service-card-content {
    display: flex;
    min-height: 220px;
    flex-direction: column;
    padding: 19px 18px 17px;
}

.service-card h3 {
    margin-bottom: 9px;
    color: var(--navy);
    font-size: 19px;
    font-weight: 700;
    line-height: 1.15;
}

.service-card p {
    margin-bottom: 18px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.6;
}

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

.service-card a span {
    font-size: 15px;
    transition: transform 180ms ease;
}

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

.why-section {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    background: var(--navy);
    color: var(--white);
}

.why-section::before {
    position: absolute;
    top: -190px;
    right: -150px;
    width: 510px;
    height: 510px;
    border: 1px solid rgba(131, 223, 255, 0.14);
    border-radius: 50%;
    box-shadow: 0 0 0 38px rgba(131, 223, 255, 0.025), 0 0 0 75px rgba(131, 223, 255, 0.018);
    content: "";
    pointer-events: none;
}

.why-heading {
    position: relative;
    max-width: 680px;
    margin-bottom: 55px;
}

.why-heading h2 {
    margin-bottom: 16px;
    color: var(--white);
}

.why-heading > p {
    max-width: 520px;
    margin-bottom: 0;
    color: #b5c5d2;
}

.reason-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 17px;
}

.reason-card {
    min-height: 250px;
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 18px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.07);
    transition: transform 200ms ease, border-color 200ms ease, background 200ms ease;
}

.reason-card:hover {
    border-color: rgba(214, 245, 91, 0.5);
    background: rgba(255, 255, 255, 0.11);
    transform: translateY(-5px);
}

.reason-number {
    display: inline-grid;
    width: 34px;
    height: 34px;
    margin-bottom: 58px;
    place-items: center;
    border-radius: 10px;
    background: var(--lime);
    color: var(--navy);
    font-family: var(--display);
    font-size: 11px;
    font-weight: 800;
}

.reason-card h3 {
    margin-bottom: 8px;
    color: var(--white);
    font-size: 21px;
    font-weight: 700;
}

.reason-card p {
    margin: 0;
    color: #b5c5d2;
    font-size: 12px;
}

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

.process-heading {
    margin-bottom: 54px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--line);
}

.process-step {
    display: grid;
    grid-template-columns: 43px 1fr;
    gap: 18px;
    min-height: 185px;
    border-right: 1px solid var(--line);
    padding: 26px 28px 20px 0;
}

.process-step + .process-step {
    padding-left: 28px;
}

.process-step:last-child {
    border-right: 0;
    padding-right: 0;
}

.process-step > span {
    color: var(--accent);
    font-family: var(--display);
    font-size: 12px;
    font-weight: 800;
}

.process-step h3 {
    margin-bottom: 8px;
    color: var(--navy);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.15;
}

.process-step p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
}

.contact-section {
    padding: 0 0 125px;
    background: var(--paper);
}

.contact-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.8fr);
    gap: 75px;
    border-radius: var(--radius);
    padding: clamp(38px, 6vw, 72px);
    background: linear-gradient(135deg, var(--navy), var(--navy-dark));
    color: var(--white);
    box-shadow: 0 24px 60px rgba(18, 60, 105, 0.22);
}

.contact-copy h2 {
    max-width: 610px;
    margin-bottom: 18px;
    color: var(--white);
}

.contact-copy > p {
    max-width: 500px;
    margin-bottom: 30px;
    color: #b9c9d7;
}

.contact-details {
    display: grid;
    align-content: center;
    gap: 23px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 36px;
}

.contact-details div {
    display: grid;
    gap: 3px;
}

.contact-details small {
    color: var(--lime);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.contact-details a,
.contact-details address {
    color: var(--white);
    font-size: 13px;
    font-style: normal;
    line-height: 1.45;
}

.contact-details a:hover {
    color: var(--sky);
}

.site-footer {
    padding: 63px 0 23px;
    background: var(--navy-dark);
    color: #a8b8c8;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.65fr 1fr;
    gap: 55px;
    padding-bottom: 47px;
}

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

.footer-brand p {
    max-width: 280px;
    margin: 22px 0 0;
    color: #a8b8c8;
    font-size: 12px;
}

.footer-column {
    display: grid;
    align-content: start;
    gap: 8px;
}

.footer-column h3 {
    margin-bottom: 9px;
    color: var(--lime);
    font-family: var(--body);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.footer-column a,
.footer-column span {
    width: fit-content;
    color: #a8b8c8;
    font-size: 12px;
}

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

.footer-column span {
    max-width: 250px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    padding-top: 18px;
    color: #71879d;
    font-size: 10px;
}

[data-reveal] {
    --reveal-delay: 0ms;
}

.js [data-reveal] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 620ms ease var(--reveal-delay), transform 620ms ease var(--reveal-delay);
}

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

a:focus-visible,
summary:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 4px;
}

@media (max-width: 1050px) {
    .desktop-nav {
        gap: 20px;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.8fr);
        gap: 55px;
    }

    h1 {
        font-size: clamp(3.4rem, 6.7vw, 5.2rem);
    }

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

@media (max-width: 820px) {
    .container {
        width: min(100% - 36px, 620px);
    }

    .desktop-nav,
    .button-header {
        display: none;
    }

    .mobile-nav {
        display: block;
    }

    .hero {
        padding: 78px 0 80px;
    }

    .hero-grid {
        display: block;
    }

    .hero-visual {
        width: min(100%, 530px);
        margin: 70px auto 0;
    }

    .section,
    .why-section {
        padding: 92px 0;
    }

    .about-grid,
    .section-heading,
    .contact-panel {
        grid-template-columns: 1fr;
        gap: 43px;
    }

    .about-copy {
        max-width: 650px;
    }

    .section-heading {
        gap: 18px;
        margin-bottom: 43px;
    }

    .section-heading > p {
        margin: 0;
    }

    .reason-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .reason-card {
        min-height: 210px;
    }

    .reason-number {
        margin-bottom: 38px;
    }

    .process-step,
    .process-step + .process-step,
    .process-step:last-child {
        min-height: 0;
        border-right: 0;
        border-bottom: 1px solid var(--line);
        padding: 24px 0;
    }

    .process-step:last-child {
        border-bottom: 0;
    }

    .contact-section {
        padding-bottom: 92px;
    }

    .contact-details {
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        border-left: 0;
        padding-top: 32px;
        padding-left: 0;
    }

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

    .footer-grid .footer-column:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 560px) {
    .container {
        width: calc(100% - 28px);
    }

    .nav-wrap {
        min-height: 70px;
    }

    .brand-mark {
        width: 35px;
        height: 35px;
    }

    .brand-copy strong {
        font-size: 12px;
    }

    .hero {
        padding-top: 64px;
        padding-bottom: 66px;
    }

    h1 {
        margin-bottom: 21px;
        font-size: clamp(3rem, 14vw, 4.35rem);
    }

    .hero-lede {
        font-size: 14px;
    }

    .hero-actions,
    .contact-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-actions .button,
    .contact-actions .button {
        width: 100%;
    }

    .hero-actions .text-link {
        justify-content: center;
    }

    .hero-proof {
        display: grid;
        gap: 11px;
        margin-top: 40px;
    }

    .hero-proof div {
        display: flex;
        align-items: baseline;
        justify-content: space-between;
        border-bottom: 1px solid rgba(18, 60, 105, 0.13);
        padding-bottom: 8px;
    }

    .hero-image-card {
        border-width: 5px;
        border-radius: 23px;
        transform: rotate(1deg);
    }

    .hero-note {
        padding: 10px 12px;
    }

    .hero-note-top {
        top: 32px;
        right: -8px;
    }

    .hero-note-bottom {
        bottom: 35px;
        left: -8px;
    }

    .hero-image-label {
        right: 16px;
        bottom: 16px;
        left: 16px;
    }

    .trust-bar-inner {
        min-height: 58px;
        justify-content: flex-start;
        overflow: hidden;
        white-space: nowrap;
        font-size: 8px;
    }

    .trust-bar-inner > span:first-child {
        font-size: 9px;
    }

    .trust-bar-inner > span:nth-last-of-type(-n + 2),
    .trust-bar-inner > i:nth-last-of-type(-n + 2) {
        display: none;
    }

    .section,
    .why-section {
        padding: 75px 0;
    }

    .about-image,
    .about-image img {
        min-height: 330px;
    }

    .about-copy h2,
    .section-heading h2,
    .why-heading h2,
    .contact-copy h2 {
        font-size: 2.8rem;
    }

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

    .service-card-content {
        min-height: 200px;
    }

    .reason-card {
        min-height: 190px;
        padding: 20px;
    }

    .reason-number {
        margin-bottom: 27px;
    }

    .contact-section {
        padding-bottom: 75px;
    }

    .contact-panel {
        gap: 35px;
        border-radius: 20px;
        padding: 29px 21px;
    }

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

    .footer-grid .footer-column:last-child {
        grid-column: auto;
    }

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

.hero-slogan {
    margin: -13px 0 25px;
    color: var(--blue);
    font-family: var(--display);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.map-address {
    max-width: 520px;
    margin: 9px 0 0;
    color: #66788b;
    font-size: 13px;
    font-style: normal;
    line-height: 1.5;
}

.footer-slogan {
    margin: 14px 0 0 !important;
    color: var(--sky) !important;
    font-family: var(--display);
    font-size: 14px !important;
    font-weight: 700;
}

.footer-slogan + p {
    margin-top: 8px;
}

@media (max-width: 560px) {
    .hero-slogan {
        margin-top: -7px;
        margin-bottom: 21px;
        font-size: 13px;
    }

    .map-address {
        font-size: 12px;
    }
}

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

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

    .js [data-reveal] {
        opacity: 1;
        transform: none;
    }
}

/* Compact classic refinement */
.nav-wrap {
    min-height: 72px;
}

.hero {
    padding: 76px 0 62px;
}

.hero-grid {
    grid-template-columns: minmax(0, 0.98fr) minmax(390px, 0.82fr);
    gap: clamp(38px, 6vw, 78px);
}

h1 {
    max-width: 610px;
    margin-bottom: 20px;
    font-size: clamp(3rem, 5.25vw, 5.25rem);
    line-height: 1;
}

.hero-lede {
    margin-bottom: 25px;
    font-size: clamp(0.95rem, 1.25vw, 1.08rem);
}

.hero-proof {
    margin-top: 39px;
}

.hero-image-card {
    aspect-ratio: 1.06;
    border-width: 6px;
    transform: rotate(1deg);
}

.hero-image-card img,
.about-image img,
.service-card-image img {
    object-position: center;
}

.hero-note {
    right: -15px;
    padding: 10px 13px;
}

.hero-note-top {
    top: 38px;
}

.hero-note-bottom {
    bottom: 38px;
    left: -25px;
}

.trust-bar-inner {
    min-height: 58px;
}

.section {
    padding: 88px 0;
}

.about-grid {
    gap: clamp(42px, 7vw, 84px);
}

.about-image,
.about-image img {
    min-height: 390px;
}

.about-copy h2,
.section-heading h2,
.why-heading h2,
.contact-copy h2 {
    font-size: clamp(2.35rem, 4.3vw, 4.1rem);
}

.section-heading {
    gap: 40px;
    margin-bottom: 42px;
}

.service-card-image {
    aspect-ratio: 1.5;
}

.service-card-content {
    min-height: 185px;
}

.why-section {
    padding: 88px 0;
}

.why-heading {
    margin-bottom: 39px;
}

.reason-card {
    min-height: 210px;
}

.reason-number {
    margin-bottom: 43px;
}

.contact-section {
    padding-bottom: 88px;
}

.contact-panel {
    gap: 55px;
    padding: clamp(32px, 5vw, 58px);
}

.site-footer {
    padding: 48px 0 20px;
}

@media (max-width: 1050px) {
    h1 {
        font-size: clamp(3rem, 5.8vw, 4.7rem);
    }
}

@media (max-width: 820px) {
    .hero {
        padding: 58px 0;
    }

    .hero-visual {
        margin: 48px auto 0;
    }

    .section,
    .why-section {
        padding: 70px 0;
    }

    .about-grid,
    .section-heading,
    .contact-panel {
        gap: 32px;
    }

    .reason-card {
        min-height: 180px;
    }

    .reason-number {
        margin-bottom: 30px;
    }

    .process-step,
    .process-step + .process-step,
    .process-step:last-child {
        padding: 19px 0;
    }

    .contact-section {
        padding-bottom: 70px;
    }
}

@media (max-width: 560px) {
    .hero {
        padding-top: 48px;
        padding-bottom: 52px;
    }

    h1 {
        margin-bottom: 18px;
        font-size: clamp(2.65rem, 12.5vw, 3.75rem);
    }

    .hero-lede {
        font-size: 13px;
    }

    .hero-proof {
        margin-top: 28px;
    }

    .hero-visual {
        margin-top: 46px;
    }

    .hero-image-card {
        aspect-ratio: 1;
        border-width: 4px;
    }

    .hero-note {
        padding: 8px 10px;
    }

    .hero-note-top {
        top: 24px;
    }

    .hero-note-bottom {
        bottom: 26px;
    }

    .trust-bar-inner {
        min-height: 48px;
    }

    .section,
    .why-section {
        padding: 56px 0;
    }

    .about-image,
    .about-image img {
        min-height: 280px;
    }

    .about-copy h2,
    .section-heading h2,
    .why-heading h2,
    .contact-copy h2 {
        font-size: 2.35rem;
    }

    .service-card-content {
        min-height: 175px;
    }

    .reason-card {
        min-height: 165px;
    }

    .reason-number {
        margin-bottom: 22px;
    }

    .contact-section {
        padding-bottom: 56px;
    }

    .contact-panel {
        gap: 27px;
        padding: 24px 19px;
    }
}

.contact-map {
    margin-top: 18px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 18px 45px rgba(18, 60, 105, 0.1);
}

.contact-map-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    padding: 25px 28px 21px;
}

.contact-map-head .eyebrow {
    margin-bottom: 8px;
}

.contact-map-head h3 {
    margin: 0;
    color: var(--navy-dark);
    font-size: clamp(1.45rem, 2.4vw, 2.1rem);
    font-weight: 700;
    line-height: 1.1;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue);
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.map-link span {
    font-size: 16px;
    transition: transform 180ms ease;
}

.map-link:hover span {
    transform: translate(3px, -3px);
}

.contact-map-frame {
    min-height: 300px;
    background: #dce9f4;
}

.contact-map-frame iframe {
    display: block;
    width: 100%;
    height: 300px;
    border: 0;
    filter: saturate(0.85) contrast(1.02);
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 110;
    display: inline-flex;
    min-height: 56px;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 999px;
    padding: 0 18px 0 14px;
    background: linear-gradient(135deg, #28dc7f, #0aab5a);
    color: var(--white);
    box-shadow: 0 16px 32px rgba(6, 132, 70, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.45);
    font-family: var(--display);
    font-size: 13px;
    font-weight: 700;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.whatsapp-float svg {
    width: 25px;
    height: 25px;
    flex: 0 0 auto;
}

.whatsapp-float:hover {
    background: linear-gradient(135deg, #35e88b, #079a50);
    box-shadow: 0 20px 38px rgba(6, 132, 70, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.52);
    transform: translateY(-3px);
}

@media (max-width: 820px) {
    .contact-map-head {
        padding: 22px 24px 18px;
    }

    .contact-map-frame,
    .contact-map-frame iframe {
        min-height: 280px;
        height: 280px;
    }
}

@media (max-width: 560px) {
    .contact-map {
        margin-top: 14px;
        border-radius: 20px;
    }

    .contact-map-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
        padding: 20px 18px 17px;
    }

    .contact-map-head h3 {
        font-size: 1.5rem;
    }

    .map-link {
        font-size: 12px;
    }

    .contact-map-frame,
    .contact-map-frame iframe {
        min-height: 245px;
        height: 245px;
    }

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

    .whatsapp-float span {
        display: none;
    }
}

.brand-logo {
    width: 158px;
    height: 58px;
    object-fit: contain;
    border-radius: 0;
    box-shadow: none;
}

.brand-footer {
    width: fit-content;
    padding: 0;
}

.brand-footer .brand-logo {
    width: 164px;
    height: 58px;
    filter: brightness(0) invert(1);
    opacity: 0.94;
}

@media (max-width: 560px) {
    .brand-logo {
        width: 142px;
        height: 52px;
    }

    .brand-footer .brand-logo {
        width: 148px;
        height: 52px;
    }
}

/* Readable type scale */
body {
    font-size: 16px;
}

.desktop-nav a,
.button {
    font-size: 13px;
}

.eyebrow {
    font-size: 11px;
}

.hero-lede {
    font-size: clamp(1rem, 1.25vw, 1.12rem);
}

.hero-proof span,
.trust-bar-inner {
    font-size: 11px;
}

.trust-bar-inner > span:first-child {
    font-size: 12px;
}

.hero-image-label strong,
.hero-note strong {
    font-size: 13px;
}

.hero-image-label small,
.hero-note span {
    font-size: 11px;
}

.about-copy > p:not(.eyebrow),
.section-heading > p,
.why-heading > p,
.contact-copy > p {
    font-size: 16px;
}

.about-image-badge span {
    font-size: 13px;
}

.service-card-image > span {
    font-size: 9px;
}

.service-card p,
.reason-card p,
.process-step p {
    font-size: 13px;
}

.service-card a {
    font-size: 12px;
}

.contact-details small {
    font-size: 10px;
}

.contact-details a,
.contact-details address {
    font-size: 14px;
}

.footer-brand p,
.footer-column a,
.footer-column span {
    font-size: 13px;
}

.footer-column h3 {
    font-size: 11px;
}

.footer-bottom {
    font-size: 11px;
}

@media (max-width: 560px) {
    .hero-lede {
        font-size: 14px;
    }

    .hero-proof span,
    .trust-bar-inner {
        font-size: 9px;
    }

    .trust-bar-inner > span:first-child {
        font-size: 10px;
    }

    .about-copy > p:not(.eyebrow),
    .section-heading > p,
    .why-heading > p,
    .contact-copy > p {
        font-size: 15px;
    }
}
