:root {
    --sky-25: #f8fdff;
    --sky-50: #f2fbff;
    --sky-100: #e4f6ff;
    --sky-150: #d8f1ff;
    --sky-200: #c7eaff;
    --sky-300: #9fdaff;
    --sky-400: #64c4f4;
    --sky-500: #28a9df;
    --sky-600: #1389bf;
    --sky-700: #0d6795;
    --sky-800: #0b496a;
    --ink: #103447;
    --ink-soft: #526e7d;
    --white: #ffffff;
    --line: rgba(18, 105, 146, 0.14);
    --line-strong: rgba(18, 105, 146, 0.25);
    --shadow-sm: 0 10px 30px rgba(24, 105, 142, 0.09);
    --shadow-md: 0 24px 70px rgba(21, 95, 132, 0.14);
    --shadow-lg: 0 35px 90px rgba(9, 70, 104, 0.22);
    --radius-sm: 14px;
    --radius-md: 22px;
    --radius-lg: 34px;
    --container: 1180px;
    --header-height: 88px;
}

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

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

body {
    margin: 0;
    min-width: 320px;
    color: var(--ink);
    background:
        radial-gradient(circle at 6% 12%, rgba(111, 207, 255, 0.23), transparent 24rem),
        radial-gradient(circle at 96% 32%, rgba(125, 217, 255, 0.15), transparent 28rem),
        linear-gradient(180deg, var(--sky-25) 0%, #ffffff 45%, var(--sky-50) 100%);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    opacity: 0.28;
    background-image: radial-gradient(rgba(22, 139, 190, 0.23) 0.7px, transparent 0.7px);
    background-size: 24px 24px;
    mask-image: linear-gradient(to bottom, black, transparent 55%);
}

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

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

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

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

h1,
h2,
h3 {
    letter-spacing: -0.035em;
    line-height: 1.08;
}

h1 {
    margin-bottom: 24px;
    font-size: clamp(3rem, 7.4vw, 6.5rem);
    font-weight: 750;
    color: #fff;
    text-wrap: balance;
}

h1 span {
    color: var(--sky-300);
}

h2 {
    margin-bottom: 0;
    font-size: clamp(2.3rem, 5vw, 4.4rem);
    font-weight: 740;
    text-wrap: balance;
}

h3 {
    margin-bottom: 14px;
    font-size: 1.35rem;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.section {
    position: relative;
    padding-block: clamp(84px, 10vw, 140px);
}

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1000;
    padding: 10px 16px;
    border-radius: 10px;
    color: #fff;
    background: var(--sky-800);
    transform: translateY(-140%);
    transition: transform 180ms ease;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    min-height: var(--header-height);
    border-bottom: 1px solid transparent;
    background: rgba(246, 252, 255, 0.82);
    backdrop-filter: blur(18px) saturate(130%);
    transition: box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.site-header.is-scrolled {
    border-color: var(--line);
    background: rgba(248, 253, 255, 0.94);
    box-shadow: 0 12px 38px rgba(22, 97, 132, 0.08);
}

.header-inner {
    min-height: var(--header-height);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 34px;
}

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

.brand-mark {
    width: 360px;
    height: auto;
    filter: drop-shadow(0 8px 16px rgba(8, 105, 151, 0.14));
    transition: transform 240ms ease;
}

.brand:hover .brand-mark {
    transform: translateY(-2px) rotate(-2deg);
}

.brand-copy {
    display: grid;
    gap: 2px;
}

.brand-copy strong {
    font-size: 1.12rem;
    letter-spacing: -0.02em;
}

.brand-copy small {
    color: var(--sky-700);
    font-size: 0.69rem;
    font-weight: 750;
    letter-spacing: 0.105em;
    line-height: 1.25;
    text-transform: uppercase;
}

.main-nav {
    justify-self: center;
    display: flex;
    align-items: center;
    gap: clamp(18px, 3vw, 38px);
}

.main-nav a {
    position: relative;
    padding-block: 10px;
    color: #254d61;
    font-size: 0.94rem;
    font-weight: 650;
}

.main-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 4px;
    left: 0;
    height: 2px;
    border-radius: 999px;
    background: var(--sky-500);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 220ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 5px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow-sm);
}

.language-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 60px;
    height: 38px;
    padding-inline: 8px;
    border-radius: 11px;
    color: var(--ink-soft);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.language-button img {
    width: 28px;
    height: 18px;
    border-radius: 3px;
    box-shadow: 0 2px 7px rgba(15, 53, 72, 0.2);
    object-fit: cover;
}

.language-button:hover {
    transform: translateY(-1px);
    background: var(--sky-100);
}

.language-button.is-active {
    color: var(--sky-800);
    background: #fff;
    box-shadow: 0 6px 16px rgba(20, 101, 137, 0.12), inset 0 0 0 1px rgba(25, 149, 204, 0.16);
}

.language-button.is-active::after {
    content: "";
    position: absolute;
    top: -2px;
    right: -2px;
    width: 7px;
    height: 7px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: var(--sky-500);
}

.hero {
    padding-block: 20px clamp(68px, 8vw, 110px);
}

.hero-frame {
    position: relative;
    isolation: isolate;
    min-height: clamp(590px, 75vh, 780px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: var(--radius-lg);
    background: var(--sky-800);
    box-shadow: var(--shadow-lg);
}

.hero-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: inherit;
}

.hero-video {
    position: absolute;
    inset: 0;
    z-index: -3;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.01);
}

.hero-scrim {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(3, 31, 48, 0.92) 0%, rgba(4, 46, 67, 0.75) 44%, rgba(3, 31, 48, 0.18) 78%),
        linear-gradient(0deg, rgba(6, 42, 60, 0.65) 0%, transparent 45%);
}

.hero-orb {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(1px);
}

.hero-orb-one {
    top: -120px;
    right: -120px;
    width: 410px;
    height: 410px;
    border: 1px solid rgba(161, 225, 255, 0.33);
    background: radial-gradient(circle at 35% 35%, rgba(126, 211, 250, 0.22), rgba(19, 139, 191, 0.03) 70%);
}

.hero-orb-two {
    right: 12%;
    bottom: -190px;
    width: 360px;
    height: 360px;
    background: rgba(105, 205, 250, 0.12);
    box-shadow: inset 0 0 0 1px rgba(169, 229, 255, 0.18);
}

.hero-content {
    position: relative;
    z-index: 3;
    width: min(760px, 78%);
    min-height: inherit;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(42px, 7vw, 84px);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 20px;
    color: var(--sky-700);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    line-height: 1.3;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    border-radius: 99px;
    background: currentColor;
}

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

.hero-lead {
    max-width: 660px;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(1.05rem, 2vw, 1.27rem);
    line-height: 1.72;
}

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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 14px 21px;
    border: 1px solid transparent;
    border-radius: 15px;
    font-size: 0.95rem;
    font-weight: 760;
    line-height: 1.2;
    transition: transform 190ms ease, box-shadow 190ms ease, background 190ms ease, border-color 190ms ease, color 190ms ease;
}

.button span {
    font-size: 1.1rem;
    transition: transform 190ms ease;
}

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

.button:hover span {
    transform: translate(2px, -2px);
}

.button-primary {
    color: #083550;
    background: linear-gradient(135deg, #dff6ff, #82d7ff);
    box-shadow: 0 16px 35px rgba(41, 171, 224, 0.3);
}

.button-primary:hover {
    box-shadow: 0 20px 43px rgba(41, 171, 224, 0.4);
}

.button-ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.button-ghost:hover {
    border-color: rgba(255, 255, 255, 0.65);
    background: rgba(255, 255, 255, 0.14);
}

.hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 24px;
    margin-top: 42px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.82rem;
    font-weight: 650;
}

.hero-chips span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-chips i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--sky-300);
    box-shadow: 0 0 0 5px rgba(126, 213, 255, 0.12);
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
    align-items: end;
    gap: clamp(36px, 8vw, 100px);
    margin-bottom: 52px;
}

.section-lead {
    margin-bottom: 3px;
    color: var(--ink-soft);
    font-size: 1.06rem;
    line-height: 1.8;
}

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

.value-card {
    position: relative;
    overflow: hidden;
    min-height: 310px;
    padding: 30px 27px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(12px);
    transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.value-card::before {
    content: "";
    position: absolute;
    top: -90px;
    right: -90px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(87, 193, 239, 0.24), rgba(87, 193, 239, 0));
    transition: transform 300ms ease;
}

.value-card:hover {
    z-index: 2;
    border-color: var(--line-strong);
    box-shadow: var(--shadow-md);
    transform: translateY(-7px);
}

.value-card:hover::before {
    transform: scale(1.22);
}

.icon-shell,
.service-icon {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    margin-bottom: 54px;
    border: 1px solid rgba(37, 160, 214, 0.18);
    border-radius: 17px;
    color: var(--sky-700);
    background: linear-gradient(145deg, #f8fdff, var(--sky-100));
    box-shadow: 0 12px 28px rgba(25, 141, 190, 0.11);
}

.icon-shell svg,
.service-icon svg,
.contact-item-icon svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.value-card p,
.service-card p {
    margin-bottom: 0;
    color: var(--ink-soft);
    line-height: 1.72;
}

.services-section {
    isolation: isolate;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(221, 244, 255, 0.64), rgba(235, 249, 255, 0.86));
}

.services-section::before,
.services-section::after {
    content: "";
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    pointer-events: none;
}

.services-section::before {
    top: -260px;
    right: -180px;
    width: 620px;
    height: 620px;
    border: 1px solid rgba(30, 150, 201, 0.13);
    box-shadow: inset 0 0 0 80px rgba(255, 255, 255, 0.12), inset 0 0 0 160px rgba(58, 178, 228, 0.06);
}

.services-section::after {
    bottom: -210px;
    left: -230px;
    width: 480px;
    height: 480px;
    background: rgba(95, 201, 246, 0.12);
}

.services-backdrop {
    position: absolute;
    inset: 0;
    z-index: -2;
    opacity: 0.35;
    background-image:
        linear-gradient(rgba(34, 146, 194, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34, 146, 194, 0.08) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
}

.section-heading-centered {
    display: flex;
    max-width: 850px;
    margin: 0 auto 58px;
    flex-direction: column;
    align-items: center;
    gap: 0;
    text-align: center;
}

.section-heading-centered .section-lead {
    max-width: 760px;
    margin: 24px auto 0;
}

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

.service-card {
    position: relative;
    min-height: 365px;
    grid-column: span 2;
    overflow: hidden;
    padding: 28px;
    border: 1px solid rgba(29, 139, 187, 0.15);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 16px 45px rgba(26, 116, 155, 0.1);
    transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.service-card:nth-child(4) {
    grid-column: 2 / span 2;
}

.service-card:hover {
    border-color: rgba(23, 139, 189, 0.34);
    box-shadow: 0 28px 66px rgba(26, 116, 155, 0.17);
    transform: translateY(-7px);
}

.service-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 44px;
}

.service-icon {
    margin-bottom: 0;
}

.service-number {
    color: var(--sky-300);
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.08em;
    line-height: 1;
}

.service-card h3 {
    max-width: 260px;
    font-size: 1.52rem;
}

.service-line {
    position: absolute;
    right: 28px;
    bottom: 24px;
    left: 28px;
    height: 3px;
    overflow: hidden;
    border-radius: 999px;
    background: var(--sky-100);
}

.service-line::after {
    content: "";
    display: block;
    width: 33%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--sky-400), var(--sky-600));
    transition: width 280ms ease;
}

.service-card:hover .service-line::after {
    width: 100%;
}

.contact-section {
    padding-top: clamp(78px, 9vw, 125px);
    padding-bottom: clamp(80px, 9vw, 130px);
}

.contact-panel {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(380px, 0.75fr);
    gap: clamp(40px, 7vw, 90px);
    padding: clamp(38px, 6vw, 76px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-lg);
    color: #fff;
    background:
        radial-gradient(circle at 85% 5%, rgba(174, 232, 255, 0.28), transparent 25rem),
        linear-gradient(135deg, #0c4e73 0%, #0e7eaf 55%, #38afe2 100%);
    box-shadow: var(--shadow-lg);
}

.contact-panel::before {
    content: "";
    position: absolute;
    z-index: -1;
    right: -170px;
    bottom: -220px;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    box-shadow: inset 0 0 0 80px rgba(255, 255, 255, 0.035), inset 0 0 0 160px rgba(255, 255, 255, 0.025);
}

.contact-intro {
    align-self: center;
}

.contact-intro h2 {
    margin-bottom: 24px;
    color: #fff;
}

.contact-intro > p:not(.eyebrow) {
    max-width: 620px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
}

.button-white {
    color: var(--sky-800);
    background: #fff;
    box-shadow: 0 15px 35px rgba(5, 50, 75, 0.2);
}

.button-outline-white {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.07);
}

.button-outline-white:hover {
    border-color: rgba(255, 255, 255, 0.64);
    background: rgba(255, 255, 255, 0.13);
}

.contact-list {
    display: grid;
    gap: 12px;
    align-content: center;
}

.contact-item {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(14px);
    transition: transform 200ms ease, background 200ms ease, border-color 200ms ease;
}

.contact-item:hover {
    border-color: rgba(255, 255, 255, 0.32);
    background: rgba(255, 255, 255, 0.16);
    transform: translateX(4px);
}

.contact-item-icon {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    color: #e5f7ff;
    background: rgba(255, 255, 255, 0.13);
}

.contact-item-icon svg {
    width: 22px;
    height: 22px;
}

.contact-item span:nth-child(2) {
    display: grid;
    min-width: 0;
}

.contact-item small {
    color: rgba(255, 255, 255, 0.63);
    font-size: 0.72rem;
    font-weight: 760;
    letter-spacing: 0.08em;
    line-height: 1.3;
    text-transform: uppercase;
}

.contact-item strong {
    margin-top: 3px;
    color: #fff;
    font-size: 0.96rem;
    font-weight: 680;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.contact-item em {
    margin-top: 4px;
    color: var(--sky-200);
    font-size: 0.8rem;
    font-style: normal;
    font-weight: 650;
}

.contact-item b {
    color: rgba(255, 255, 255, 0.72);
    font-size: 1rem;
    font-weight: 500;
    transition: transform 190ms ease;
}

.contact-item:hover b {
    transform: translate(2px, -2px);
}

.site-footer {
    border-top: 1px solid var(--line);
    background: rgba(238, 249, 255, 0.68);
}

.footer-inner {
    min-height: 102px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 26px;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 750;
}

.footer-brand img {
    width: 360px;
    height: auto;
}

.footer-inner p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.85rem;
    text-align: center;
}

.back-to-top {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--sky-700);
    font-size: 0.86rem;
    font-weight: 740;
}

.back-to-top span {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
    transition: transform 180ms ease;
}

.back-to-top:hover span {
    transform: translateY(-3px);
}

:focus-visible {
    outline: 3px solid rgba(38, 168, 223, 0.55);
    outline-offset: 3px;
}

.js .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 650ms ease var(--delay, 0ms), transform 650ms cubic-bezier(0.2, 0.75, 0.22, 1) var(--delay, 0ms);
}

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

@media (max-width: 1040px) {
    .header-inner {
        grid-template-columns: auto 1fr auto;
        gap: 18px;
    }

    .brand-copy small {
        display: none;
    }

    .main-nav {
        gap: 20px;
    }

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

    .value-card {
        min-height: 280px;
    }

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

    .service-card,
    .service-card:nth-child(4) {
        grid-column: auto;
    }

    .service-card:last-child {
        grid-column: 1 / -1;
        min-height: 300px;
    }

    .contact-panel {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 780px) {
    :root {
        --header-height: 124px;
    }

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

    .site-header {
        position: relative;
    }

    .header-inner {
        min-height: auto;
        grid-template-columns: 1fr auto;
        padding-block: 14px 12px;
    }

    .main-nav {
        grid-column: 1 / -1;
        grid-row: 2;
        justify-self: stretch;
        justify-content: space-between;
        padding-top: 4px;
        border-top: 1px solid var(--line);
    }

    .main-nav a {
        flex: 1;
        padding: 10px 4px 3px;
        font-size: 0.82rem;
        text-align: center;
    }

    .brand-mark {
        width: 360px;
        height: auto;
    }

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

    .language-button {
        min-width: 48px;
        height: 36px;
        padding-inline: 7px;
    }

    .language-button > span:not(.sr-only) {
        display: none;
    }

    .hero {
        padding-top: 12px;
    }

    .hero-frame {
        min-height: 690px;
        border-radius: 26px;
    }

    .hero-scrim {
        background:
            linear-gradient(180deg, rgba(3, 31, 48, 0.25) 0%, rgba(3, 31, 48, 0.92) 68%),
            linear-gradient(90deg, rgba(3, 31, 48, 0.5), rgba(3, 31, 48, 0.2));
    }

    .hero-content {
        width: 100%;
        padding: 34px 26px;
    }

    h1 {
        font-size: clamp(3.05rem, 14vw, 4.7rem);
    }

    .hero-chips {
        margin-top: 34px;
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .section-heading h2 {
        max-width: 640px;
    }

    .section-heading-centered {
        gap: 0;
    }

    .contact-panel {
        border-radius: 26px;
    }

    .footer-inner {
        grid-template-columns: 1fr auto;
        padding-block: 22px;
    }

    .footer-inner p {
        grid-column: 1 / -1;
        grid-row: 2;
        text-align: left;
    }
}

@media (max-width: 590px) {
    .section {
        padding-block: 78px;
    }

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

    .language-switcher {
        gap: 4px;
        padding: 4px;
    }

    .language-button {
        min-width: 43px;
    }

    .language-button img {
        width: 27px;
        height: 18px;
    }

    .hero-frame {
        min-height: 660px;
    }

    .hero-content {
        padding: 28px 22px;
    }

    .hero-lead {
        margin-bottom: 28px;
        font-size: 1rem;
    }

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

    .button {
        width: 100%;
    }

    .hero-chips {
        display: grid;
        gap: 12px;
    }

    .value-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card,
    .service-card:nth-child(4),
    .service-card:last-child {
        min-height: 340px;
        grid-column: auto;
    }

    .value-card {
        min-height: 270px;
    }

    .contact-panel {
        padding: 30px 21px;
    }

    .contact-item {
        gap: 12px;
        padding: 15px;
    }

    .contact-item-icon {
        width: 42px;
        height: 42px;
    }

    .contact-item b {
        display: none;
    }

    .footer-brand span {
        font-size: 0.88rem;
    }

    .back-to-top {
        font-size: 0;
        gap: 0;
    }

    .back-to-top span {
        font-size: 1rem;
    }
}

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

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

    .hero-video {
        display: none;
    }

    .hero-frame {
        background: linear-gradient(rgba(5, 42, 61, 0.72), rgba(5, 42, 61, 0.86)), url("../images/hero-poster.jpg") center / cover no-repeat;
    }

    .js .reveal {
        opacity: 1;
        transform: none;
    }
}
