:root {
    --dark: #011119;
    --dark-2: #021821;
    --navy: #052636;
    --petrol: #0c3d54;
    --cyan: #009fe3;
    --cyan-2: #28b8f5;
    --red: #d52b1e;
    --red-bright: #ff4034;
    --white: #ffffff;
    --soft: #d7eaf3;
    --muted: #9eb9c6;
    --line: rgba(215, 234, 243, 0.14);
    --shell: 1200px;
    --radius: 28px;
    --shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 96px;
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 12% 0%, rgba(0, 159, 227, 0.2), transparent 31rem),
        linear-gradient(135deg, var(--dark), var(--navy) 56%, var(--dark));
    color: var(--white);
    font-family: Montserrat, Arial, sans-serif;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

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

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

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

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

.section {
    position: relative;
    padding: clamp(78px, 9vw, 126px) 0;
}

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

h1,
h2,
h3 {
    margin-bottom: 0;
    line-height: 1.06;
    letter-spacing: -0.04em;
}

h1 {
    max-width: 820px;
    font-size: clamp(2.75rem, 6.8vw, 5.45rem);
    font-weight: 900;
}

h2 {
    font-size: clamp(2.15rem, 4.8vw, 4rem);
    font-weight: 850;
}

h3 {
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    font-weight: 800;
}

h1 span,
h2 span {
    color: var(--cyan-2);
}

p {
    color: var(--soft);
}

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

.skip-link {
    position: fixed;
    left: 16px;
    top: -100px;
    z-index: 1000;
    padding: 12px 18px;
    border-radius: 999px;
    background: var(--white);
    color: var(--dark);
    font-weight: 800;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 14px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--line);
    background: rgba(1, 17, 25, 0.88);
    -webkit-backdrop-filter: blur(22px);
    backdrop-filter: blur(22px);
}

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

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

.brand img {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    object-fit: cover;
    border: 2px solid rgba(40, 184, 245, 0.65);
    border-radius: 16px;
    background: var(--navy);
    box-shadow: 0 0 28px rgba(0, 159, 227, 0.18);
}

.brand span {
    min-width: 0;
    display: grid;
    line-height: 1.1;
}

.brand strong {
    overflow: hidden;
    font-size: 0.91rem;
    font-weight: 900;
    letter-spacing: 0.045em;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.brand small {
    margin-top: 5px;
    color: var(--cyan-2);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.primary-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(14px, 1.8vw, 25px);
    color: var(--soft);
    font-size: 0.82rem;
    font-weight: 750;
}

.primary-nav a {
    position: relative;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.primary-nav a:not(.nav-cta)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -8px;
    height: 2px;
    background: var(--cyan-2);
    transition: right 0.25s ease;
}

.primary-nav a:not(.nav-cta):hover,
.primary-nav a:not(.nav-cta):focus-visible {
    color: var(--white);
}

.primary-nav a:not(.nav-cta):hover::after,
.primary-nav a:not(.nav-cta):focus-visible::after {
    right: 0;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid rgba(40, 184, 245, 0.5);
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(0, 159, 227, 0.25), rgba(40, 184, 245, 0.12));
    color: var(--white);
    box-shadow: 0 10px 28px rgba(0, 159, 227, 0.14);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
    border-color: var(--cyan-2);
    background: linear-gradient(135deg, rgba(0, 159, 227, 0.42), rgba(40, 184, 245, 0.2));
    transform: translateY(-1px);
}

.menu-button {
    display: none;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    padding: 0;
    border: 1px solid rgba(40, 184, 245, 0.35);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    cursor: pointer;
}

.menu-button > span:not(.sr-only) {
    width: 20px;
    height: 2px;
    display: block;
    margin: 4px auto;
    border-radius: 2px;
    background: currentColor;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-button[aria-expanded="true"] > span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.menu-button[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0;
}

.menu-button[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: clamp(82px, 9vw, 138px) 0 clamp(66px, 8vw, 110px);
}

.hero-grid {
    position: absolute;
    inset: 0;
    z-index: -3;
    opacity: 0.18;
    background-image:
        linear-gradient(rgba(40, 184, 245, 0.25) 1px, transparent 1px),
        linear-gradient(90deg, rgba(40, 184, 245, 0.25) 1px, transparent 1px);
    background-size: 64px 64px;
    -webkit-mask-image: linear-gradient(to bottom, black, transparent 88%);
    mask-image: linear-gradient(to bottom, black, transparent 88%);
}

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

.hero-light-one {
    width: 520px;
    height: 520px;
    right: -130px;
    top: -160px;
    background: rgba(0, 159, 227, 0.25);
}

.hero-light-two {
    width: 260px;
    height: 260px;
    left: 7%;
    bottom: -140px;
    background: rgba(213, 43, 30, 0.12);
}

.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(470px, 1.08fr);
    align-items: center;
    gap: clamp(48px, 7vw, 92px);
}

.market-label,
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--cyan-2);
    font-size: 0.76rem;
    font-weight: 850;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.market-label {
    margin-bottom: 24px;
    padding: 9px 14px;
    border: 1px solid rgba(40, 184, 245, 0.29);
    border-radius: 999px;
    background: rgba(0, 159, 227, 0.08);
}

.swiss-mark {
    position: relative;
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    border-radius: 6px;
    background: var(--red);
    box-shadow: 0 0 18px rgba(213, 43, 30, 0.32);
}

.swiss-mark::before,
.swiss-mark::after {
    content: "";
    position: absolute;
    inset: 50% auto auto 50%;
    border-radius: 1px;
    background: var(--white);
    transform: translate(-50%, -50%);
}

.swiss-mark::before {
    width: 11px;
    height: 3px;
}

.swiss-mark::after {
    width: 3px;
    height: 11px;
}

.hero-lead {
    max-width: 760px;
    margin: 28px 0 0;
    color: var(--soft);
    font-size: clamp(1.04rem, 1.45vw, 1.26rem);
    line-height: 1.75;
}

.hero-service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    padding: 0;
    margin: 23px 0 0;
    list-style: none;
}

.hero-service-tags li {
    padding: 8px 12px;
    border: 1px solid rgba(40, 184, 245, 0.28);
    border-radius: 999px;
    background: rgba(0, 159, 227, 0.07);
    color: var(--soft);
    font-size: 0.7rem;
    font-weight: 750;
    letter-spacing: 0.02em;
}

.hero-actions,
.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 850;
    text-align: center;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.button-primary {
    background: linear-gradient(135deg, var(--cyan), var(--cyan-2));
    box-shadow: 0 16px 38px rgba(0, 159, 227, 0.27);
}

.button-ghost {
    border-color: rgba(215, 234, 243, 0.22);
    background: rgba(255, 255, 255, 0.055);
}

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

.button-primary:hover,
.button-primary:focus-visible {
    box-shadow: 0 20px 46px rgba(0, 159, 227, 0.38);
}

.button-ghost:hover,
.button-ghost:focus-visible {
    border-color: rgba(40, 184, 245, 0.65);
    background: rgba(0, 159, 227, 0.1);
}

.hero-facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    padding: 0;
    margin: 46px 0 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--line);
    list-style: none;
}

.hero-facts li {
    min-width: 0;
    padding: 18px;
    background: rgba(3, 30, 41, 0.92);
}

.hero-facts strong,
.hero-facts span {
    display: block;
}

.hero-facts strong {
    margin-bottom: 4px;
    font-size: 0.9rem;
}

.hero-facts span {
    color: var(--muted);
    font-size: 0.72rem;
    line-height: 1.45;
}

.hero-visual {
    position: relative;
    min-width: 0;
    margin: 0;
    padding: 18px 0 46px 12px;
}

.hero-frame {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1733 / 907;
    border: 1px solid rgba(215, 234, 243, 0.2);
    border-radius: 30px;
    background: var(--navy);
    box-shadow: var(--shadow), 0 0 80px rgba(0, 159, 227, 0.13);
    transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
}

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

.hero-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.hero-frame:hover img {
    transform: scale(1.035);
}

.hero-frame-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(1, 17, 25, 0.9), transparent 58%, rgba(1, 17, 25, 0.2));
}

.frame-caption {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 26px;
    display: grid;
    line-height: 1.15;
}

.frame-caption span {
    color: var(--cyan-2);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.frame-caption strong {
    margin-top: 5px;
    font-size: clamp(1.65rem, 3.2vw, 2.65rem);
    font-weight: 900;
    letter-spacing: -0.04em;
}

.production-card {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 4;
    min-width: min(390px, calc(100% - 24px));
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 18px;
    border: 1px solid rgba(215, 234, 243, 0.18);
    border-radius: 18px;
    background: rgba(3, 28, 39, 0.88);
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.3);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}

.record-dot {
    width: 11px;
    height: 11px;
    flex: 0 0 11px;
    border-radius: 50%;
    background: var(--red-bright);
    box-shadow: 0 0 17px rgba(255, 64, 52, 0.7);
}

.production-card div {
    display: grid;
}

.production-card small {
    color: var(--muted);
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.production-card strong {
    margin-top: 2px;
    font-size: 0.76rem;
}

.swiss-badge {
    position: absolute;
    top: 0;
    right: -4px;
    z-index: 4;
    width: 70px;
    height: 70px;
    display: grid;
    place-items: center;
    border: 7px solid rgba(1, 17, 25, 0.85);
    border-radius: 22px;
    background: var(--red);
    box-shadow: 0 16px 40px rgba(213, 43, 30, 0.28);
    transform: rotate(5deg);
}

.swiss-badge span,
.country-cross {
    position: relative;
    width: 36px;
    height: 36px;
}

.swiss-badge span::before,
.swiss-badge span::after,
.country-cross::before,
.country-cross::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 2px;
    background: var(--white);
    transform: translate(-50%, -50%);
}

.swiss-badge span::before,
.country-cross::before {
    width: 100%;
    height: 9px;
}

.swiss-badge span::after,
.country-cross::after {
    width: 9px;
    height: 100%;
}

.answer-section {
    position: relative;
    z-index: 3;
    margin-top: -24px;
}

.answer-card {
    display: grid;
    grid-template-columns: 170px 1fr;
    gap: clamp(28px, 5vw, 68px);
    align-items: start;
    padding: clamp(28px, 4vw, 48px);
    border: 1px solid rgba(40, 184, 245, 0.22);
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(5, 38, 54, 0.96), rgba(12, 61, 84, 0.72));
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.answer-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--cyan-2);
    font-size: 0.7rem;
    font-weight: 850;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.answer-kicker::before {
    content: "";
    width: 26px;
    height: 2px;
    background: var(--red-bright);
}

.answer-card h2 {
    max-width: 850px;
    font-size: clamp(1.6rem, 3vw, 2.45rem);
}

.answer-card p {
    max-width: 900px;
    margin: 20px 0 0;
    font-size: clamp(0.97rem, 1.25vw, 1.08rem);
}

.answer-card p strong {
    color: var(--white);
}

.section-heading {
    max-width: 790px;
    margin-bottom: 44px;
}

.section-heading-wide {
    max-width: 920px;
}

.eyebrow {
    margin-bottom: 18px;
}

.eyebrow::before {
    content: "";
    width: 32px;
    height: 2px;
    background: var(--cyan-2);
}

.section-heading p {
    max-width: 790px;
    margin: 23px 0 0;
    color: var(--muted);
    font-size: clamp(0.98rem, 1.2vw, 1.08rem);
}

.services-section {
    padding-top: clamp(110px, 12vw, 165px);
}

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

.service-card {
    position: relative;
    min-width: 0;
    min-height: 310px;
    overflow: hidden;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(5, 38, 54, 0.86), rgba(12, 61, 84, 0.35));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.service-card::after {
    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    right: -70px;
    bottom: -70px;
    border-radius: 50%;
    background: rgba(0, 159, 227, 0.09);
    filter: blur(5px);
    transition: transform 0.35s ease, background 0.35s ease;
}

.service-card:hover {
    border-color: rgba(40, 184, 245, 0.48);
    box-shadow: 0 24px 52px rgba(0, 0, 0, 0.22);
    transform: translateY(-6px);
}

.service-card:hover::after {
    background: rgba(0, 159, 227, 0.18);
    transform: scale(1.25);
}

.service-number {
    position: absolute;
    top: 22px;
    right: 24px;
    color: rgba(215, 234, 243, 0.16);
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
}

.service-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    margin-bottom: 46px;
    border: 1px solid rgba(40, 184, 245, 0.3);
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(0, 159, 227, 0.23), rgba(40, 184, 245, 0.06));
    color: var(--cyan-2);
    font-size: 1.4rem;
    font-weight: 900;
}

.service-card h3 {
    position: relative;
    z-index: 1;
}

.service-card p {
    position: relative;
    z-index: 1;
    margin: 15px 0 0;
    color: var(--muted);
    font-size: 0.91rem;
}

.swiss-section {
    overflow: hidden;
    border-block: 1px solid var(--line);
    background:
        radial-gradient(circle at 80% 50%, rgba(213, 43, 30, 0.12), transparent 31rem),
        linear-gradient(135deg, rgba(5, 38, 54, 0.88), rgba(1, 17, 25, 0.98));
}

.swiss-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    align-items: center;
    gap: clamp(52px, 8vw, 110px);
}

.swiss-copy > p:not(.transparency-note) {
    max-width: 760px;
    margin: 26px 0 0;
    color: var(--soft);
    font-size: clamp(1rem, 1.25vw, 1.1rem);
}

.transparency-note {
    max-width: 760px;
    margin: 24px 0 0;
    padding: 16px 18px;
    border-left: 3px solid var(--red-bright);
    border-radius: 0 14px 14px 0;
    background: rgba(255, 255, 255, 0.045);
    color: var(--muted);
    font-size: 0.84rem;
}

.transparency-note strong {
    color: var(--white);
}

.region-list {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 30px;
}

.region-list span {
    padding: 8px 12px;
    border: 1px solid rgba(40, 184, 245, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--soft);
    font-size: 0.75rem;
    font-weight: 700;
}

.swiss-visual {
    position: relative;
    min-height: 440px;
    display: grid;
    place-items: center;
}

.swiss-visual::before,
.swiss-visual::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(40, 184, 245, 0.16);
    border-radius: 50%;
}

.swiss-visual::before {
    width: 390px;
    height: 390px;
}

.swiss-visual::after {
    width: 280px;
    height: 280px;
}

.country-card {
    position: relative;
    z-index: 2;
    width: min(270px, 80vw);
    aspect-ratio: 1;
    display: grid;
    align-content: center;
    justify-items: center;
    padding: 30px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 36px;
    background: linear-gradient(145deg, #ea3529, #a9160e);
    box-shadow: 0 32px 90px rgba(213, 43, 30, 0.25);
    transform: rotate(-4deg);
}

.country-card::before {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    left: -125px;
    top: -120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    filter: blur(8px);
}

.country-code {
    position: absolute;
    top: 18px;
    right: 22px;
    color: rgba(255, 255, 255, 0.27);
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1;
}

.country-cross {
    width: 74px;
    height: 74px;
    margin-bottom: 22px;
}

.country-cross::before {
    height: 18px;
}

.country-cross::after {
    width: 18px;
}

.country-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.country-card strong {
    margin-top: 4px;
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.route-line {
    position: absolute;
    z-index: 1;
    border-top: 1px dashed rgba(40, 184, 245, 0.5);
    transform-origin: left center;
}

.route-line::after {
    content: "";
    position: absolute;
    right: -5px;
    top: -5px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--cyan-2);
    box-shadow: 0 0 16px rgba(40, 184, 245, 0.8);
}

.route-line-one {
    width: 170px;
    left: -10px;
    top: 34%;
    transform: rotate(18deg);
}

.route-line-two {
    width: 150px;
    right: -20px;
    bottom: 29%;
    transform: rotate(192deg);
}

.references-section {
    isolation: isolate;
    overflow: hidden;
}

.reference-glow {
    position: absolute;
    z-index: -1;
    width: 720px;
    height: 720px;
    top: 20%;
    left: -400px;
    border-radius: 50%;
    background: rgba(0, 159, 227, 0.12);
    filter: blur(110px);
}

.reference-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.video-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: linear-gradient(145deg, rgba(5, 38, 54, 0.82), rgba(1, 17, 25, 0.92));
    box-shadow: 0 20px 54px rgba(0, 0, 0, 0.19);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
    border-color: rgba(40, 184, 245, 0.42);
    box-shadow: 0 30px 68px rgba(0, 0, 0, 0.3);
    transform: translateY(-6px);
}

.video-embed {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background: #000;
}

.video-embed iframe,
.video-embed video {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
    background: #000;
}

.video-embed video {
    object-fit: contain;
}

.video-preview {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
    overflow: hidden;
    padding: 0;
    border: 0;
    background: #000;
    color: var(--white);
    cursor: pointer;
    text-align: left;
}

.video-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.35s ease;
}

.video-preview-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(1, 17, 25, 0.86), transparent 58%, rgba(1, 17, 25, 0.1));
    transition: background 0.3s ease;
}

.video-preview .play-mark {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.video-preview-label {
    position: absolute;
    left: 20px;
    bottom: 17px;
    padding: 7px 11px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    background: rgba(1, 17, 25, 0.64);
    color: var(--white);
    font-size: 0.67rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.video-preview:hover img,
.video-preview:focus-visible img {
    filter: brightness(1.07);
    transform: scale(1.035);
}

.video-preview:hover .play-mark,
.video-preview:focus-visible .play-mark {
    border-color: rgba(40, 184, 245, 0.8);
    background: rgba(0, 159, 227, 0.5);
    transform: translate(-50%, -50%) scale(1.08);
}

.video-poster {
    position: relative;
    isolation: isolate;
    min-height: 260px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
}

.video-poster::before,
.video-poster::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.video-poster::before {
    inset: 0;
    z-index: -3;
    background:
        linear-gradient(to top, rgba(1, 17, 25, 0.95), rgba(1, 17, 25, 0.06) 70%),
        radial-gradient(circle at 70% 25%, rgba(40, 184, 245, 0.35), transparent 35%),
        linear-gradient(135deg, #082c3e, #011119);
}

.video-card-two .video-poster::before {
    background:
        linear-gradient(to top, rgba(1, 17, 25, 0.95), rgba(1, 17, 25, 0.08) 70%),
        radial-gradient(circle at 25% 20%, rgba(213, 43, 30, 0.25), transparent 32%),
        linear-gradient(145deg, #173447, #02131b);
}

.video-card-three .video-poster::before {
    background:
        linear-gradient(to top, rgba(1, 17, 25, 0.94), transparent 72%),
        linear-gradient(90deg, rgba(40, 184, 245, 0.14) 1px, transparent 1px),
        linear-gradient(rgba(40, 184, 245, 0.14) 1px, transparent 1px),
        linear-gradient(135deg, #0a3142, #02131b);
    background-size: auto, 40px 40px, 40px 40px, auto;
}

.video-card-four .video-poster::before {
    background:
        linear-gradient(to top, rgba(1, 17, 25, 0.93), rgba(1, 17, 25, 0.03) 70%),
        radial-gradient(ellipse at 72% 22%, rgba(255, 196, 122, 0.32), transparent 35%),
        linear-gradient(145deg, #194053, #041a24);
}

.video-card-five .video-poster::before {
    background:
        linear-gradient(to top, rgba(1, 17, 25, 0.95), transparent 70%),
        radial-gradient(circle at 72% 30%, rgba(213, 43, 30, 0.35), transparent 30%),
        linear-gradient(135deg, #102c3a, #011119);
}

.video-card-six .video-poster::before {
    background:
        linear-gradient(to top, rgba(1, 17, 25, 0.94), transparent 70%),
        radial-gradient(ellipse at 50% 35%, rgba(126, 226, 255, 0.28), transparent 37%),
        linear-gradient(135deg, #08354a, #02131b);
}

.video-poster::after {
    width: 230px;
    height: 230px;
    z-index: -2;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    box-shadow: 0 0 0 38px rgba(255, 255, 255, 0.025), 0 0 0 76px rgba(255, 255, 255, 0.015);
}

.video-index {
    position: absolute;
    top: 22px;
    left: 24px;
    color: rgba(255, 255, 255, 0.18);
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1;
}

.play-mark {
    position: relative;
    width: 76px;
    height: 76px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    background: rgba(1, 17, 25, 0.54);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.3), 0 0 30px rgba(40, 184, 245, 0.12);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.play-mark::after {
    content: "";
    position: absolute;
    left: 31px;
    top: 25px;
    border-top: 13px solid transparent;
    border-bottom: 13px solid transparent;
    border-left: 19px solid var(--white);
}

.placeholder-label {
    position: absolute;
    left: 22px;
    bottom: 19px;
    padding: 7px 10px;
    border: 1px solid rgba(40, 184, 245, 0.26);
    border-radius: 999px;
    background: rgba(1, 17, 25, 0.62);
    color: var(--soft);
    font-size: 0.66rem;
    font-weight: 750;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.video-copy {
    padding: 26px 28px 30px;
}

.video-copy > span {
    display: block;
    margin-bottom: 9px;
    color: var(--cyan-2);
    font-size: 0.67rem;
    font-weight: 850;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.video-copy p {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 0.88rem;
}

.video-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    color: var(--cyan-2);
    font-size: 0.76rem;
    font-weight: 800;
    transition: color 0.2s ease, transform 0.2s ease;
}

.video-link:hover,
.video-link:focus-visible {
    color: var(--white);
    transform: translateX(3px);
}

.process-section {
    border-top: 1px solid var(--line);
    background: rgba(1, 17, 25, 0.42);
}

.process-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: start;
    gap: clamp(50px, 8vw, 110px);
}

.process-list {
    display: grid;
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.process-list li {
    min-width: 0;
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 22px;
    align-items: start;
    padding: 25px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: linear-gradient(145deg, rgba(5, 38, 54, 0.67), rgba(12, 61, 84, 0.25));
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.process-list li:hover {
    border-color: rgba(40, 184, 245, 0.42);
    transform: translateX(6px);
}

.process-list > li > span {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(40, 184, 245, 0.3);
    border-radius: 17px;
    background: rgba(0, 159, 227, 0.11);
    color: var(--cyan-2);
    font-size: 0.76rem;
    font-weight: 900;
}

.process-list h3 {
    font-size: 1.2rem;
}

.process-list p {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 0.86rem;
}

.quality-section {
    padding-top: 0;
}

.quality-card {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(45px, 7vw, 88px);
    align-items: center;
    padding: clamp(34px, 6vw, 72px);
    overflow: hidden;
    border: 1px solid rgba(40, 184, 245, 0.22);
    border-radius: 34px;
    background:
        radial-gradient(circle at 90% 15%, rgba(40, 184, 245, 0.15), transparent 25rem),
        linear-gradient(145deg, rgba(5, 38, 54, 0.95), rgba(12, 61, 84, 0.55));
    box-shadow: var(--shadow);
}

.quality-card p {
    margin: 24px 0 0;
    color: var(--soft);
}

.quality-list {
    display: grid;
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.quality-list li {
    position: relative;
    display: grid;
    padding: 15px 15px 15px 48px;
    border: 1px solid var(--line);
    border-radius: 17px;
    background: rgba(1, 17, 25, 0.35);
}

.quality-list li::before {
    content: "✓";
    position: absolute;
    left: 16px;
    top: 17px;
    width: 21px;
    height: 21px;
    display: grid;
    place-items: center;
    border-radius: 7px;
    background: rgba(0, 159, 227, 0.17);
    color: var(--cyan-2);
    font-size: 0.74rem;
    font-weight: 900;
}

.quality-list strong {
    font-size: 0.88rem;
}

.quality-list span {
    margin-top: 2px;
    color: var(--muted);
    font-size: 0.75rem;
}

.faq-section {
    border-top: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(1, 17, 25, 0.2), rgba(5, 38, 54, 0.42));
}

.faq-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
    align-items: start;
    gap: clamp(50px, 8vw, 110px);
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-list details {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 19px;
    background: rgba(1, 17, 25, 0.38);
    transition: border-color 0.22s ease, background 0.22s ease;
}

.faq-list details[open] {
    border-color: rgba(40, 184, 245, 0.4);
    background: rgba(5, 38, 54, 0.72);
}

.faq-list summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 21px 23px;
    cursor: pointer;
    font-size: 0.91rem;
    font-weight: 800;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary span {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(40, 184, 245, 0.28);
    border-radius: 10px;
    color: var(--cyan-2);
    font-size: 1.2rem;
    font-weight: 500;
    transition: transform 0.22s ease;
}

.faq-list details[open] summary span {
    transform: rotate(45deg);
}

.faq-list details p {
    margin: 0;
    padding: 0 23px 23px;
    color: var(--muted);
    font-size: 0.88rem;
}

.contact-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: clamp(92px, 10vw, 145px) 0;
}

.contact-beam {
    position: absolute;
    z-index: -1;
    width: 900px;
    height: 260px;
    left: 50%;
    top: 48%;
    background: linear-gradient(90deg, transparent, rgba(0, 159, 227, 0.18), transparent);
    filter: blur(45px);
    transform: translate(-50%, -50%) rotate(-8deg);
}

.contact-card {
    position: relative;
    overflow: hidden;
    padding: clamp(38px, 7vw, 86px);
    border: 1px solid rgba(40, 184, 245, 0.28);
    border-radius: 36px;
    background:
        radial-gradient(circle at 90% 0%, rgba(213, 43, 30, 0.12), transparent 22rem),
        linear-gradient(145deg, rgba(5, 38, 54, 0.97), rgba(12, 61, 84, 0.58));
    box-shadow: var(--shadow);
}

.contact-card::after {
    content: "CH";
    position: absolute;
    right: 3%;
    bottom: -0.3em;
    color: rgba(255, 255, 255, 0.035);
    font-size: clamp(9rem, 26vw, 23rem);
    font-weight: 900;
    line-height: 0.8;
    pointer-events: none;
}

.contact-card > * {
    position: relative;
    z-index: 1;
}

.contact-card h2 {
    max-width: 850px;
}

.contact-card > p {
    max-width: 760px;
    margin: 25px 0 0;
    font-size: clamp(1rem, 1.3vw, 1.1rem);
}

.contact-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
    color: var(--soft);
    font-size: 0.88rem;
    font-weight: 750;
}

.contact-meta a:hover,
.contact-meta a:focus-visible {
    color: var(--cyan-2);
}

.contact-card > small {
    display: block;
    max-width: 760px;
    margin-top: 18px;
    color: var(--muted);
    font-size: 0.68rem;
}

footer {
    padding: 45px 0 27px;
    border-top: 1px solid var(--line);
    background: rgba(1, 17, 25, 0.72);
}

.footer-layout {
    display: grid;
    grid-template-columns: auto minmax(220px, 1fr) auto;
    align-items: center;
    gap: 30px;
}

.footer-brand img {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
}

.footer-layout > p {
    max-width: 470px;
    margin: 0;
    color: var(--muted);
    font-size: 0.78rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px 18px;
    color: var(--soft);
    font-size: 0.72rem;
    font-weight: 700;
}

.footer-links a:hover,
.footer-links a:focus-visible {
    color: var(--cyan-2);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(215, 234, 243, 0.08);
    color: rgba(215, 234, 243, 0.5);
    font-size: 0.65rem;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-delay {
    transition-delay: 0.12s;
}

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

:focus-visible {
    outline: 3px solid rgba(126, 226, 255, 0.9);
    outline-offset: 3px;
}

@media (max-width: 1080px) {
    .primary-nav {
        gap: 14px;
        font-size: 0.75rem;
    }

    .hero-layout {
        grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr);
        gap: 40px;
    }

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

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

    .footer-links {
        grid-column: 1 / -1;
        justify-content: flex-start;
    }
}

@media (max-width: 900px) {
    .menu-button {
        display: block;
    }

    .primary-nav {
        position: fixed;
        left: 18px;
        right: 18px;
        top: 92px;
        display: grid;
        gap: 0;
        padding: 12px;
        border: 1px solid rgba(40, 184, 245, 0.26);
        border-radius: 22px;
        background: rgba(2, 24, 33, 0.98);
        box-shadow: 0 28px 80px rgba(0, 0, 0, 0.48);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-12px);
        transition: opacity 0.22s ease, transform 0.22s ease;
    }

    .primary-nav.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .primary-nav a {
        padding: 13px 14px;
        border-radius: 12px;
    }

    .primary-nav a:not(.nav-cta)::after {
        display: none;
    }

    .primary-nav a:not(.nav-cta):hover,
    .primary-nav a:not(.nav-cta):focus-visible {
        background: rgba(0, 159, 227, 0.1);
    }

    .nav-cta {
        margin-top: 7px;
    }

    .hero-layout,
    .swiss-layout,
    .process-layout,
    .quality-card,
    .faq-layout {
        grid-template-columns: 1fr;
    }

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

    .hero-visual {
        width: min(850px, 100%);
        margin-inline: auto;
    }

    .hero-frame {
        aspect-ratio: 1733 / 907;
    }

    .hero-frame img {
        object-position: center;
    }

    .answer-card {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .swiss-copy {
        max-width: 800px;
    }

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

    .swiss-visual::before {
        width: 330px;
        height: 330px;
    }

    .swiss-visual::after {
        width: 230px;
        height: 230px;
    }

    .process-layout > .section-heading,
    .faq-layout > .section-heading {
        margin-bottom: 0;
    }

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

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

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

    .site-header .shell {
        width: calc(100% - 24px);
    }

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

    .brand img {
        width: 47px;
        height: 47px;
        flex-basis: 47px;
        border-radius: 14px;
    }

    .brand strong {
        font-size: 0.78rem;
    }

    .brand small {
        font-size: 0.59rem;
    }

    .primary-nav {
        top: 83px;
        left: 12px;
        right: 12px;
    }

    .hero {
        padding-top: 68px;
    }

    .market-label {
        white-space: normal;
        line-height: 1.45;
    }

    .hero-facts {
        grid-template-columns: 1fr;
    }

    .hero-facts li {
        display: grid;
        grid-template-columns: minmax(95px, 0.6fr) 1fr;
        gap: 12px;
        align-items: center;
    }

    .hero-facts strong {
        margin-bottom: 0;
    }

    .hero-visual {
        padding: 10px 0 52px;
    }

    .hero-frame {
        aspect-ratio: 1733 / 907;
        border-radius: 22px;
        transform: none;
    }

    .production-card {
        left: 0;
        min-width: 230px;
    }

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

    .service-card {
        min-height: 285px;
    }

    .video-poster {
        min-height: 220px;
    }

    .route-line {
        display: none;
    }

    .process-list li {
        grid-template-columns: 52px 1fr;
        gap: 15px;
        padding: 20px;
    }

    .process-list > li > span {
        width: 48px;
        height: 48px;
    }

    .faq-list summary {
        padding: 18px;
        font-size: 0.84rem;
    }

    .faq-list details p {
        padding: 0 18px 19px;
    }

    .contact-card {
        border-radius: 28px;
    }

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

    .contact-meta {
        display: grid;
    }

    .contact-meta > span {
        display: none;
    }

    .footer-bottom {
        display: grid;
    }
}

@media (max-width: 390px) {
    h1 {
        font-size: clamp(2.35rem, 12vw, 2.85rem);
    }

    .brand span {
        max-width: 172px;
    }

    .menu-button {
        width: 43px;
        height: 43px;
        flex-basis: 43px;
    }

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

    .hero-facts li {
        grid-template-columns: 1fr;
        gap: 3px;
    }

    .production-card {
        min-width: 0;
        right: 14px;
    }

    .swiss-visual {
        min-height: 320px;
    }

    .swiss-visual::before {
        width: 290px;
        height: 290px;
    }

    .country-card {
        width: 225px;
    }

    .service-card,
    .video-copy {
        padding-left: 23px;
        padding-right: 23px;
    }
}

@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;
    }

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

@media print {
    .site-header,
    .menu-button,
    .hero-actions,
    .contact-actions {
        display: none !important;
    }

    body {
        background: #fff;
        color: #111;
    }

    p,
    .section-heading p,
    .service-card p,
    .video-copy p,
    .faq-list details p {
        color: #333;
    }

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