:root {
    --brand-blue: #040957;
    --banner-accent: #963417;
    --brand-blue-soft: #1d4ed8;
    --brand-white: #ffffff;
    --page-bg: #ffffff;
    --text-dark: #1f2937;
    --text-muted: #6b7280;
    --border-light: #e5e7eb;
    --border-soft: #f3f4f6;
    --panel-soft: #f8fafc;
    --panel-hover: #eff6ff;
    --backdrop: rgba(0, 0, 0, 0.5);
    --container-width: 1280px;
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background-color: var(--page-bg);
    color: var(--text-dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body,
button,
input,
textarea,
select {
    font-family: "Google Sans", Arial, sans-serif;
}

body.drawer-open {
    overflow: hidden;
}

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

.top-banner {
    position: relative;
    z-index: 50;
    isolation: isolate;
    overflow: hidden;
    padding: 0.55rem 0;
    color: var(--brand-white);
    background-color: var(--brand-blue);
}

.top-banner::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: min(30rem, 42%);
    height: 100%;
    background-color: var(--banner-accent);
    clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
    pointer-events: none;
    z-index: 0;
}

.banner-inner {
    width: 100%;
    margin: 0;
    padding: 0 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.nav-shell {
    width: min(calc(100% - 2rem), var(--container-width));
    margin: 0 auto;
}

.banner-contact-list {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.875rem;
    letter-spacing: 0.04em;
}

.banner-socials {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin-left: auto;
    padding-right: 4px;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #bfdbfe;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    color: var(--brand-blue);
    background-color: var(--brand-white);
    border: 1px solid var(--brand-white);
    border-radius: 999px;
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.social-link:hover {
    color: var(--brand-blue);
    background-color: #eef2ff;
    border-color: var(--brand-white);
}

.contact-icon {
    font-size: 0.75rem;
}

.stagger-item {
    opacity: 0;
    transform: translateY(-10px);
    animation: fadeDown 0.6s ease forwards;
}

.banner-contact-list .stagger-item:nth-child(1) {
    animation-delay: 0.1s;
}

.banner-contact-list .stagger-item:nth-child(2) {
    animation-delay: 0.3s;
}

.banner-contact-list .stagger-item:nth-child(3) {
    animation-delay: 0.5s;
}

.banner-contact-list .stagger-item:nth-child(4) {
    animation-delay: 0.7s;
}

.contact-hover:hover i {
    color: #60a5fa;
    animation: bounce-icon 0.8s infinite;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background-color: var(--brand-white);
}

.nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.35rem 0;
}

.brand-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    outline: none;
}

.brand-link:hover .brand-mark {
    transform: scale(1.05);
}

.brand-link:hover .brand-title {
    color: var(--brand-blue-soft);
}

.brand-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    margin-bottom: 0.2rem;
    color: var(--brand-white);
    border-top-left-radius: 0.75rem;
    border-bottom-right-radius: 0.75rem;
    transition: transform 0.3s ease;
}

.brand-mark-icon {
    font-size: 1.25rem;
}

.brand-mark-img {
    display: block;
    width: 50px;
    height: 50px;
    object-fit: contain;

}

.brand-title {
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--brand-blue);
    transition: color 0.3s ease;
}

.desktop-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    position: relative;
}

.nav-link-text {
    font-weight: 500;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.nav-link-text:hover {
    color: var(--brand-blue);
}

.nav-link.is-active,
.nav-link[aria-current="page"] {
    color: var(--brand-blue);
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -0.25rem;
    width: 0;
    height: 2px;
    background-color: var(--brand-blue);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.is-active::after,
.nav-link[aria-current="page"]::after {
    width: 100%;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 1.25rem;
    border: 2px solid var(--brand-blue);
    border-radius: 999px;
    font-weight: 600;
    color: var(--brand-blue);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-cta:hover {
    color: var(--brand-white);
    background-color: var(--brand-blue);
}

.mobile-menu-wrap {
    display: none;
    align-items: center;
}

.menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    color: var(--brand-blue);
    background: transparent;
    border: 0;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.menu-button:hover {
    background-color: #f3f4f6;
}

.menu-icon {
    font-size: 1.5rem;
}

.backdrop {
    position: fixed;
    inset: 0;
    z-index: 50;
    opacity: 0;
    pointer-events: none;
    background-color: var(--backdrop);
    backdrop-filter: blur(4px);
    transition: opacity 0.4s ease;
}

.backdrop.open {
    opacity: 1;
    pointer-events: auto;
}

.drawer {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 51;
    display: flex;
    flex-direction: column;
    width: min(18rem, 88vw);
    height: 100%;
    background-color: var(--brand-white);
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-smooth);
}

.drawer.open {
    transform: translateX(0);
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem;
    border-bottom: 1px solid var(--border-soft);
}

.drawer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.drawer-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    flex-shrink: 0;
}

.drawer-mark-icon {
    font-size: 0.875rem;
}

.drawer-mark-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.drawer-brand-text {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--brand-blue);
}

.drawer-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    color: var(--text-muted);
    background: transparent;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.drawer-close:hover {
    color: #dc2626;
    background-color: #fef2f2;
}

.drawer-close-icon {
    font-size: 1.25rem;
}

.drawer-nav {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem 0.75rem;
    overflow-y: auto;
}

.drawer-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.95rem 1rem;
    font-weight: 500;
    color: var(--text-dark);
    border-radius: 0.75rem;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.drawer-link:hover {
    color: var(--brand-blue);
    background-color: var(--panel-hover);
}

.drawer-link-icon {
    display: inline-flex;
    justify-content: center;
    width: 1.25rem;
}

.drawer-cta-wrap {
    margin-top: 1.5rem;
    padding: 1.5rem 1rem 0;
    border-top: 1px solid var(--border-soft);
}

.drawer-cta {
    display: block;
    width: 100%;
    padding: 0.95rem 1rem;
    font-weight: 600;
    text-align: center;
    color: var(--brand-white);
    background-color: var(--brand-blue);
    border-radius: 0.75rem;
    transition: background-color 0.3s ease;
}

.drawer-cta:hover {
    background-color: #0b146f;
}

.drawer-footer {
    padding: 1.25rem;
    background-color: var(--panel-soft);
    border-top: 1px solid var(--border-light);
}

.drawer-footer-title {
    margin: 0 0 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.drawer-footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.drawer-footer-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--brand-blue);
}

.footer-link-icon {
    margin-right: 0.5rem;
}

.page-main {
    padding: 0 0 3.5rem;
}

.hero-section {
    position: relative;
    overflow: hidden;
    background-color: #ffffff;
}

.hero-shell {
    width: min(calc(100% - 2rem), var(--container-width));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: 3rem;
    align-items: center;
    padding: 2.5rem 0 1rem;
}

.hero-copy {
    position: relative;
    z-index: 1;
}

.hero-title {
    max-width: 11ch;
    margin: 0;
    font-size: clamp(2.75rem, 5vw, 5.2rem);
    line-height: 0.95;
    letter-spacing: -0.04em;
    color: #10193f;
}

.hero-description {
    max-width: 37rem;
    margin: 1.35rem 0 0;
    font-size: 1.05rem;
    line-height: 1.75;
    color: #475569;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.75rem;
}

.hero-action-primary,
.hero-action-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.25rem;
    padding: 0.85rem 1.45rem;
    border-radius: 999px;
    font-weight: 600;
    transition: transform 0.3s ease, color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.hero-action-primary {
    color: var(--brand-white);
    background: linear-gradient(135deg, var(--brand-blue), #1c2b86);
}

.hero-action-primary:hover {
    transform: translateY(-2px);
}

.hero-action-secondary {
    color: var(--brand-blue);
    background-color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(4, 9, 87, 0.14);
}

.hero-action-secondary:hover {
    color: var(--brand-white);
    background-color: var(--brand-blue);
    border-color: var(--brand-blue);
}

.hero-visual {
    position: relative;
}

.hero-visual-frame {
    position: relative;
    min-height: 34rem;
}

.hero-visual-card {
    position: relative;
    border-radius: 1.55rem;
}

.hero-image-card {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
}

.hero-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.clients-section {
    padding: 2rem 0 0;
}

.clients-shell {
    width: min(calc(100% - 2rem), var(--container-width));
    margin: 0 auto;
}

.clients-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
}

.clients-heading-group {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    text-align: left;
}

.clients-kicker {
    margin: 0;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--banner-accent);
}

.clients-title {
    margin: 0;
    font-size: clamp(2rem, 3.8vw, 3rem);
    line-height: 1;
    letter-spacing: -0.04em;
    color: #10193f;
}

.clients-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: 0.75rem 1.2rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--brand-blue);
    background-color: #ffffff;
    border: 1px solid rgba(4, 9, 87, 0.12);
    border-radius: 999px;
    transition: color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
}

.clients-action:hover {
    color: var(--brand-white);
    background-color: var(--brand-blue);
    transform: translateY(-1px);
}

.clients-marquee {
    position: relative;
    margin-top: 1.5rem;
    padding: 0.35rem 0;
    overflow: hidden;
}

.clients-marquee::before,
.clients-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    width: min(10rem, 14vw);
    pointer-events: none;
}

.clients-marquee::before {
    left: 0;
    background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.clients-marquee::after {
    right: 0;
    background: linear-gradient(270deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.clients-track {
    display: flex;
    gap: 0.65rem;
    width: max-content;
    animation: marquee 28s linear infinite;
}

.clients-marquee:hover .clients-track {
    animation-play-state: paused;
}

.client-card {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex: 0 0 18.5rem;
    min-height: 6.5rem;
    padding: 0.85rem 0.95rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 1.35rem;
}

.client-card-image {
    display: block;
    width: 4rem;
    height: 4rem;
    flex-shrink: 0;
    padding: 0.25rem;
    object-fit: contain;
    background-color: #ffffff;
    border-radius: 1rem;
}

.client-card-title {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.35;
    color: #10193f;
}

.choose-section {
    padding: 3rem 0 0;
}

.choose-shell {
    width: min(calc(100% - 2rem), var(--container-width));
    margin: 0 auto;
}

.choose-intro {
    max-width: 44rem;
}

.choose-kicker {
    margin: 0;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--banner-accent);
}

.choose-title {
    margin: 0.8rem 0 0;
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
    color: #10193f;
}

.choose-description {
    max-width: 38rem;
    margin: 1rem 0 0;
    font-size: 1rem;
    line-height: 1.75;
    color: #475569;
}

.choose-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin: 1.9rem 0 0;
    padding: 1rem 0;
    list-style: none;
    border-top: 1px solid rgba(4, 9, 87, 0.12);
    border-bottom: 1px solid rgba(4, 9, 87, 0.12);
}

.choose-stat {
    padding: 0 1rem;
}

.choose-stat + .choose-stat {
    border-left: 1px solid rgba(4, 9, 87, 0.1);
}

.choose-stat-value {
    display: block;
    font-size: clamp(1.85rem, 3vw, 2.4rem);
    font-weight: 700;
    line-height: 1;
    color: var(--brand-blue);
}

.choose-stat-label {
    display: block;
    margin-top: 0.45rem;
    font-size: 0.94rem;
    line-height: 1.5;
    color: #475569;
}

.choose-points {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 1.75rem;
    padding: 0;
    list-style: none;
}

.choose-points::before {
    content: "";
    position: absolute;
    top: 0.45rem;
    bottom: 0.45rem;
    left: 0.42rem;
    width: 1px;
    background-color: rgba(4, 9, 87, 0.14);
}

.choose-point {
    position: relative;
    padding: 0 0 0 2rem;
}

.choose-point::before {
    content: "";
    position: absolute;
    top: 0.18rem;
    left: 0;
    z-index: 1;
    width: 0.9rem;
    height: 0.9rem;
    border-radius: 999px;
    background-color: #ffffff;
    border: 1px solid rgba(4, 9, 87, 0.22);
    transition: background-color 0.28s ease, border-color 0.28s ease;
}

.choose-point.is-active::before {
    background-color: var(--banner-accent);
    border-color: var(--banner-accent);
}

.choose-point-title {
    margin: 0;
    font-size: 1.16rem;
    line-height: 1.3;
    color: #10193f;
}

.choose-point-copy {
    margin: 0.7rem 0 0;
    font-size: 0.97rem;
    line-height: 1.72;
    color: #475569;
}

.choose-point + .choose-point {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
}

.featured-section {
    margin-top: 3rem;
    padding: 3rem 0;
    background-color: #963417;
}

.featured-shell {
    width: min(calc(100% - 2rem), var(--container-width));
    margin: 0 auto;
}

.featured-intro {
    max-width: 44rem;
    text-align: left;
}

.featured-kicker {
    margin: 0;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.76);
}

.featured-title {
    margin: 0.8rem 0 0;
    font-size: clamp(2rem, 4vw, 3.1rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
    color: #ffffff;
}

.featured-description {
    max-width: 38rem;
    margin: 1rem 0 0;
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.74);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.featured-card {
    display: grid;
    gap: 1rem;
    align-content: center;
    justify-items: start;
    min-height: 11rem;
    padding: 1.4rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid rgba(4, 9, 87, 0.1);
    border-radius: 1.5rem;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06);
}

.featured-logo {
    display: block;
    max-width: 100%;
    height: 4.6rem;
    object-fit: contain;
    object-position: left center;
}

.featured-logo-wide {
    width: min(100%, 18rem);
}

.featured-logo-bank {
    width: min(100%, 12rem);
}

.featured-card-label {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    color: #10193f;
}

.testimonials-section {
    padding: 3rem 1rem 0;
}

.testimonials-section > * {
    width: min(100%, var(--container-width));
    margin-left: auto;
    margin-right: auto;
}

.testimonials-intro {
    max-width: 44rem;
}

.testimonials-kicker {
    margin: 0;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--banner-accent);
}

.testimonials-title {
    margin: 0.8rem 0 0;
    font-size: clamp(2rem, 4vw, 3.1rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
    color: #10193f;
}

.testimonials-description {
    max-width: 40rem;
    margin: 1rem 0 0;
    font-size: 1rem;
    line-height: 1.75;
    color: #475569;
}

.testimonial-list {
    display: flex;
    gap: 1rem;
    margin: 2rem 0 0;
    padding: 0;
    list-style: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.testimonial-list::-webkit-scrollbar {
    display: none;
}

.testimonial-carousel {
    width: min(100%, var(--container-width));
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.2rem;
}

.testimonial-dot {
    width: 0.55rem;
    height: 0.55rem;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(16, 25, 63, 0.2);
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.testimonial-dot.is-active {
    background: #10193f;
    transform: scale(1.1);
}

.testimonial-dot:focus-visible {
    outline: 2px solid rgba(16, 25, 63, 0.35);
    outline-offset: 3px;
}

.testimonial-item {
    flex: 0 0 calc((100% - 2rem) / 3);
    min-width: 0;
    scroll-snap-align: start;
}

.testimonial-card {
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: 1rem;
    height: 100%;
    min-height: 15rem;
    padding: 1.35rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid rgba(4, 9, 87, 0.1);
    border-radius: 1.4rem;
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.06);
}

.testimonial-stars {
    display: flex;
    align-items: center;
    gap: 0.28rem;
    color: #f59e0b;
    font-size: 0.92rem;
}

.testimonial-copy {
    margin: 0;
    font-size: 0.99rem;
    line-height: 1.78;
    color: #10193f;
}

.testimonial-meta {
    display: grid;
    gap: 0.25rem;
    margin-top: 1rem;
    font-style: normal;
}

.testimonial-meta strong {
    font-size: 0.98rem;
    color: var(--brand-blue);
}

.testimonial-meta span {
    font-size: 0.9rem;
    color: #64748b;
}

.site-footer {
    margin-top: 3rem;
    padding: 2.8rem 1rem 1.4rem;
    color: #ffffff;
    background-color: #040957;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer > * {
    width: min(100%, var(--container-width));
    margin-left: auto;
    margin-right: auto;
}

.footer-top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr);
    gap: 2rem;
    align-items: start;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-brand {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 0.95rem;
    row-gap: 0.18rem;
    align-items: center;
    max-width: max-content;
}

.footer-brand-mark {
    grid-row: 1 / span 2;
    width: 3rem;
    height: 3rem;
    object-fit: contain;
}

.footer-brand-name {
    font-size: 1.12rem;
    font-weight: 700;
    line-height: 1.15;
    color: #ffffff;
}

.footer-brand-tag {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.66);
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, max-content));
    justify-content: end;
    gap: 0.7rem 2.8rem;
    align-content: start;
}

.footer-link {
    font-size: 0.94rem;
    line-height: 1.35;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.84);
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ffffff;
}

.footer-bottom {
    display: grid;
    justify-items: center;
    gap: 0.9rem;
    padding-top: 2rem;
}

.footer-socials {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.7rem;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.4rem;
    height: 2.4rem;
    font-size: 0.92rem;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

.footer-social-link:hover {
    color: #040957;
    background-color: #ffffff;
    border-color: #ffffff;
}

.footer-note {
    display: block;
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.68);
}

.footer-credit {
    margin: 0;
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.68);
}

.footer-credit span {
    color: #ffffff;
    font-weight: 600;
}

@keyframes fadeDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce-icon {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (min-width: 768px) {
    .banner-inner {
        flex-wrap: nowrap;
    }

    .backdrop,
    .drawer {
        display: none;
    }
}

@media (max-width: 767px) {
    .top-banner::after {
        width: 36%;
        clip-path: polygon(28% 0, 100% 0, 100% 100%, 0 100%);
    }

    .top-banner {
        padding: 0.38rem 0;
    }

    .banner-inner {
        flex-direction: row;
        align-items: center;
        gap: 0.5rem;
        flex-wrap: nowrap;
    }

    .banner-contact-list {
        flex: 1;
        min-width: 0;
        max-width: calc(100% - 5rem);
        gap: 0.55rem;
        flex-wrap: nowrap;
        font-size: 0.62rem;
        letter-spacing: 0;
    }

    .contact-link {
        gap: 0.22rem;
        white-space: nowrap;
    }

    .contact-icon {
        font-size: 0.58rem;
    }

    .banner-socials {
        margin-left: auto;
        justify-content: flex-end;
        width: auto;
        gap: 0.22rem;
        padding-left: 0.4rem;
        flex-shrink: 0;
    }

    .social-link {
        width: 1.35rem;
        height: 1.35rem;
        font-size: 0.72rem;
    }

    .desktop-menu {
        display: none;
    }

    .mobile-menu-wrap {
        display: flex;
    }

    .nav-shell {
        width: min(calc(100% - 1.5rem), var(--container-width));
    }

    .page-main {
        padding: 0 0 2.5rem;
    }

    .hero-shell {
        width: min(calc(100% - 1.5rem), var(--container-width));
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-top: 1.25rem;
    }

    .hero-title {
        max-width: none;
        font-size: clamp(2.15rem, 12vw, 3.1rem);
    }

    .hero-description {
        font-size: 0.98rem;
        line-height: 1.68;
    }

    .hero-actions {
        gap: 0.7rem;
        flex-wrap: nowrap;
    }

    .hero-action-primary,
    .hero-action-secondary {
        flex: 1 1 0;
        min-height: 3rem;
        padding: 0.8rem 0.9rem;
        font-size: 0.92rem;
        white-space: nowrap;
    }

    .hero-action-primary {
        flex: 1.35 1 0;
    }

    .hero-action-secondary {
        flex: 0.85 1 0;
    }

    .hero-visual-frame {
        min-height: auto;
        padding: 0.75rem 0 0;
    }

    .hero-image-card {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        width: 100%;
        max-width: none;
    }

    .hero-image-card {
        inset: auto;
        height: auto;
        overflow: visible;
    }

    .hero-image {
        height: auto;
        object-fit: contain;
    }

    .clients-shell {
        width: min(calc(100% - 1.5rem), var(--container-width));
    }

    .choose-shell {
        width: min(calc(100% - 1.5rem), var(--container-width));
    }

    .clients-header {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }

    .clients-heading-group {
        width: auto;
        text-align: left;
    }

    .clients-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }

    .clients-action {
        align-self: auto;
        flex-shrink: 0;
        min-height: 2.5rem;
        padding: 0.65rem 1rem;
        font-size: 0.88rem;
    }

    .clients-track {
        gap: 0.5rem;
        animation-duration: 24s;
    }

    .client-card {
        flex-basis: 14.5rem;
        min-height: 5.8rem;
        gap: 0.65rem;
        padding: 0.7rem 0.8rem;
    }

    .client-card-image {
        width: 2.9rem;
        height: 2.9rem;
    }

    .client-card-title {
        font-size: 0.96rem;
    }

    .choose-title {
        font-size: clamp(1.85rem, 8vw, 2.55rem);
    }

    .choose-description {
        font-size: 0.96rem;
        line-height: 1.72;
    }

    .choose-points {
        grid-template-columns: 1fr;
    }

    .choose-stats {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 0;
        margin-top: 1.5rem;
        padding: 0.75rem 0;
    }

    .choose-stat {
        min-width: 0;
        padding: 0 0.35rem;
        text-align: center;
    }

    .choose-stat + .choose-stat {
        border-left: 1px solid rgba(4, 9, 87, 0.1);
        border-top: 0;
    }

    .choose-stat-value {
        font-size: clamp(1.05rem, 4.8vw, 1.3rem);
    }

    .choose-stat-label {
        font-size: 0.66rem;
        line-height: 1.28;
    }

    .choose-point {
        padding-left: 1.75rem;
    }

    .choose-point::before {
        width: 0.82rem;
        height: 0.82rem;
    }

    .choose-point + .choose-point {
        margin-top: 1rem;
        padding-top: 1rem;
    }

    .featured-section {
        margin-top: 2.5rem;
        padding: 2.5rem 0;
    }

    .featured-shell {
        width: min(calc(100% - 1.5rem), var(--container-width));
    }

    .featured-intro {
        padding-left: 0.35rem;
    }

    .featured-title {
        font-size: clamp(1.85rem, 8vw, 2.55rem);
    }

    .featured-description {
        font-size: 0.96rem;
        line-height: 1.72;
    }

    .featured-grid {
        grid-template-columns: 1fr;
        gap: 0.9rem;
        margin-top: 1.6rem;
    }

    .featured-card {
        min-height: 9.5rem;
        padding: 1.15rem 1.1rem 1.2rem 1.2rem;
    }

    .featured-logo {
        height: 4rem;
    }

    .testimonials-section {
        padding: 2.5rem 0.75rem 0;
    }

    .testimonials-title {
        font-size: clamp(1.85rem, 8vw, 2.55rem);
    }

    .testimonials-description {
        font-size: 0.96rem;
        line-height: 1.72;
    }

    .testimonial-list {
        margin-top: 1.6rem;
    }

    .testimonial-item {
        flex-basis: 100%;
    }

    .testimonial-card {
        min-height: 14rem;
        padding: 1.15rem;
    }

    .site-footer {
        margin-top: 2.5rem;
        padding: 2.4rem 0.75rem 1.1rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .footer-brand {
        column-gap: 0.8rem;
    }

    .footer-brand-mark {
        width: 2.65rem;
        height: 2.65rem;
    }

    .footer-brand-name {
        font-size: 1rem;
    }

    .footer-brand-tag {
        font-size: 0.72rem;
    }

    .footer-nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        justify-content: stretch;
        gap: 0.75rem 1rem;
    }

    .footer-link {
        font-size: 0.9rem;
    }

    .footer-bottom {
        gap: 0.8rem;
        padding-top: 1.5rem;
    }

    .footer-socials {
        gap: 0.6rem;
    }

    .footer-social-link {
        width: 2.2rem;
        height: 2.2rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .clients-track {
        animation: none;
    }
}
