:root {
    --bg: #ffffff;
    --surface: #ffffff;
    --surface-soft: #f8f8f8;
    --text: #333333;
    --heading: #000000;
    --heading-accent: #285481;
    --link: #337ab7;
    --line: #eeeeee;
    --footer: #285481;
    --footer-text: #fefefe;
    --shadow-soft: 0 1px 1px rgba(0, 0, 0, 0.1);
    --radius-large: 25px;
    --radius-small: 4px;
    --max-width: 1170px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
    font-size: 16px;
    line-height: 24px;
}

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

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

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

.site-shell {
    width: min(calc(100% - 2rem), var(--max-width));
    margin: 0 auto;
    padding-bottom: 0;
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 20px 0;
    background: var(--bg);
    border-bottom: 1px solid transparent;
}

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

.brand img {
    width: 58px;
    height: auto;
}

.brand span {
    font-size: 15px;
    font-weight: 700;
    color: var(--heading-accent);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.site-nav a {
    color: var(--link);
    font-size: 15px;
    font-weight: 400;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.lang-link {
    color: var(--heading-accent);
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.25rem;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.nav-toggle span {
    width: 20px;
    height: 2px;
    background: var(--text);
    border-radius: 999px;
}

.top-banner {
    position: relative;
    margin: 0 0 60px;
    overflow: hidden;
    border-radius: var(--radius-large);
    background: #e8e0d8;
    box-shadow: 0 16px 34px rgba(40, 84, 129, 0.12);
}

.top-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(110deg, rgba(40, 84, 129, 0.18), transparent 45%, rgba(255, 255, 255, 0.14));
}

.top-banner img {
    width: 100%;
    height: auto;
    min-height: 170px;
    object-fit: cover;
    object-position: center center;
    animation: bannerDrift 16s ease-in-out infinite alternate;
}

@keyframes bannerDrift {
    from { transform: scale(1.02) translateX(-0.5%); }
    to { transform: scale(1.07) translateX(0.5%); }
}

.hero {
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    gap: 2.5rem;
    align-items: center;
    padding: 60px 0 30px;
}

.eyebrow {
    margin: 0 0 0.8rem;
    color: var(--heading-accent);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
}

h1,
h2,
h3 {
    margin: 0;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

h1 {
    color: var(--heading-accent);
    font-size: 54px;
    font-weight: 700;
    line-height: 62px;
}

h2 {
    color: var(--heading);
    font-size: 40px;
    font-weight: 700;
    line-height: 44px;
}

h3 {
    color: var(--heading);
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
}

.lede,
.section-heading p,
.benefit-list p,
.service-card p,
.process-grid p,
.contact-card p,
dl,
.hero-points,
.form-note,
.form-status,
.site-footer {
    color: var(--text);
    font-size: 16px;
    line-height: 24px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin: 24px 0 18px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 0;
    font-size: 15px;
    font-weight: 600;
    line-height: 24px;
    transition: color 200ms ease, background-color 200ms ease, transform 300ms ease, opacity 300ms ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(0);
}

.button-primary {
    color: var(--link);
    background: transparent;
    box-shadow: none;
    padding: 10px 24px;
}

.button-secondary {
    color: var(--link);
    background: transparent;
    border: 0;
    padding: 10px 24px;
}

.button-primary:hover,
.button-primary:focus-visible,
.button-secondary:hover,
.button-secondary:focus-visible {
    color: #ffffff;
    background: var(--heading-accent);
}

.hero-points {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.hero-points li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 17px;
    font-weight: 600;
}

.hero-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: var(--heading-accent);
}

.hero-visual {
    position: relative;
    min-height: 560px;
}

.image-card {
    position: absolute;
    overflow: hidden;
    border-radius: var(--radius-small);
    box-shadow: none;
    background: transparent;
}

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

.image-card-main {
    top: 0;
    left: 0;
    width: min(72%, 570px);
    height: 380px;
    max-height: 72%;
}

.image-card-accent {
    right: 0;
    bottom: 0;
    width: min(46%, 300px);
    height: 220px;
    border: 0;
}

.trust-band,
.service-card,
.benefit-list article,
.process-grid article,
.contact-card {
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
}

.trust-band {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 0 0 30px;
    border-radius: 0;
}

.trust-band article {
    padding: 26px;
    border-radius: var(--radius-large);
    background: transparent;
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.trust-band h2 {
    margin-bottom: 15px;
    color: var(--heading-accent);
    font-size: 24px;
    line-height: 30px;
}

.section {
    padding: 30px 0 0;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 40px;
    text-align: center;
}

.section-heading.compact {
    max-width: 560px;
}

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

.service-card,
.process-grid article,
.contact-card {
    padding: 26px;
    border-radius: var(--radius-large);
}

.service-card {
    min-height: 230px;
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.service-card h3,
.benefit-list h3,
.process-grid h3 {
    margin-bottom: 15px;
}

.service-card h3 {
    color: var(--heading-accent);
    font-size: 18px;
    line-height: 24px;
}

.split-section {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 1.5rem;
    align-items: start;
    padding-top: 60px;
}

.benefit-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.benefit-list article {
    padding: 26px;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-soft);
}

.benefit-list h3 {
    color: var(--heading-accent);
    font-size: 24px;
}

.process-grid article span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.3rem;
    height: 2.3rem;
    margin-bottom: 1rem;
    border-radius: 50%;
    background: var(--surface-soft);
    color: var(--heading-accent);
    font-weight: 800;
}

.process-grid article {
    box-shadow: var(--shadow-soft);
}

.contact-section {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 1rem;
    align-items: start;
    padding-bottom: 60px;
}

.contact-card {
    min-height: 100%;
}

.contact-details dl {
    display: grid;
    gap: 1rem;
    margin: 2rem 0 0;
}

.contact-details dt {
    margin-bottom: 0.2rem;
    color: var(--heading-accent);
    font-weight: 800;
}

.contact-details dd {
    margin: 0;
}

.contact-form {
    display: grid;
    gap: 1rem;
}

.contact-form label {
    display: grid;
    gap: 0.45rem;
    color: var(--text);
    font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    color: var(--text);
    background: #ffffff;
    border: 1px solid #cccccc;
    border-radius: var(--radius-small);
}

.contact-form input:focus-visible,
.contact-form select:focus-visible,
.contact-form textarea:focus-visible {
    outline: 1px solid rgba(51, 122, 183, 0.35);
    border-color: var(--link);
}

.form-note,
.form-status {
    margin: 0;
    font-size: 0.95rem;
}

.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 79px 20px 40px;
    background: var(--footer);
    color: var(--footer-text);
}

.site-footer a {
    color: var(--footer-text);
}

.reveal {
    opacity: 0;
    will-change: transform, opacity;
}

.reveal-down {
    transform: translate3d(0, -35px, 0);
}

.reveal-up {
    transform: translate3d(0, 35px, 0);
}

.reveal-left {
    transform: translate3d(-45px, 0, 0);
}

.reveal-right {
    transform: translate3d(45px, 0, 0);
}

.hero-visual .reveal-left {
    transform: translate3d(-80px, 0, 0);
}

.hero-visual .reveal-right {
    transform: translate3d(80px, 0, 0);
}

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

.reveal-down.is-visible {
    animation: fadeInDown 0.8s ease both;
}

.reveal-up.is-visible {
    animation: fadeInUp 0.8s ease both;
}

.reveal-left.is-visible {
    animation: fadeInLeft 0.8s ease both;
}

.reveal-right.is-visible {
    animation: fadeInRight 0.8s ease both;
}

.hero-visual .reveal-left.is-visible,
.hero-visual .reveal-right.is-visible {
    animation-duration: 0.9s;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -35px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 35px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translate3d(-45px, 0, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translate3d(45px, 0, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@media (max-width: 980px) and (min-width: 761px) {
    .service-grid,
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 980px) {
    .hero,
    .split-section,
    .contact-section,
    .trust-band,
    .service-grid,
    .benefit-list,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 40px;
    }

    .hero-visual {
        min-height: 420px;
    }

    .image-card-main {
        inset: 0 2.5rem 4rem 0;
    }

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

@media (max-width: 760px) {
    .site-shell {
        width: min(calc(100% - 1rem), var(--max-width));
    }

    .site-header {
        flex-wrap: wrap;
    }

    .top-banner {
        margin-bottom: 40px;
    }

    .top-banner img {
        min-height: 110px;
    }

    .nav-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .site-nav {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        padding-top: 0.5rem;
    }

    .site-nav.is-open {
        display: flex;
    }

    h1 {
        font-size: 42px;
        line-height: 48px;
    }

    h2 {
        font-size: 32px;
        line-height: 38px;
    }

    .hero-visual {
        min-height: 360px;
    }

    .image-card-main {
        inset: 0 1rem 4rem 0;
    }

    .image-card-accent {
        width: 58%;
        height: 42%;
    }

    .site-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 900px) {
    .site-header {
        flex-wrap: wrap;
        padding: 14px 0;
    }

    .nav-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .site-nav {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0.2rem;
        padding-top: 0.6rem;
    }

    .site-nav.is-open { display: flex; }
    .site-nav a,
    .lang-link { width: 100%; padding: 0.7rem 0.8rem; }
}

@media (max-width: 600px) {
    .brand img { width: 44px; }
    .brand span { font-size: 13px; line-height: 18px; }
    .top-banner { margin-bottom: 34px; border-radius: var(--radius-small); }
    .top-banner img { min-height: 118px; }
    .hero-visual { width: 100%; overflow: hidden; }
    .contact-card { width: 100%; min-width: 0; }
    .reveal-left,
    .reveal-right,
    .hero-visual .reveal-left,
    .hero-visual .reveal-right {
        transform: translate3d(0, 24px, 0);
    }

    .reveal-left.is-visible,
    .reveal-right.is-visible,
    .hero-visual .reveal-left.is-visible,
    .hero-visual .reveal-right.is-visible {
        transform: translate3d(0, 0, 0);
    }
}

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

    .button {
        transition: none;
    }

    .reveal,
    .reveal-down,
    .reveal-up,
    .reveal-left,
    .reveal-right,
    .reveal.is-visible,
    .reveal-down.is-visible,
    .reveal-up.is-visible,
    .reveal-left.is-visible,
    .reveal-right.is-visible {
        opacity: 1;
        transform: none;
        animation: none;
    }
}