:root {
    --bg: #f5f7fb;
    --surface: #ffffff;
    --surface_2: #eef2f7;
    --text: #142033;
    --muted: #5f6c80;
    --line: #dbe2ec;
    --primary: #ff7a00;
    --primary_dark: #e06500;
    --navy: #0d1b2f;
    --navy_2: #122642;
    --feature_icon: #7588ff;
    --shadow: 0 18px 48px rgba(13, 27, 47, 0.10);
    --radius: 22px;
    --container: 1240px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 78px;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}

main {
    display: flex;
    flex-direction: column;
}

.hero {
    order: 1;
}

.services {
    order: 2;
}

.benefits {
    order: 3;
}

.solutions {
    order: 4;
}

.references-strip {
    order: 5;
}

.detail {
    order: 6;
}

.logos {
    order: 7;
}

.contact {
    order: 8;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(var(--container), calc(100% - 32px));
    margin-inline: auto;
}

.section {
    padding: 88px 0;
}

.section-muted {
    background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
}

.section-dark {
    background:
        radial-gradient(circle at top left, rgba(255, 122, 0, 0.14), transparent 30%),
        linear-gradient(180deg, #0d1b2f 0%, #112642 100%);
    color: #fff;
}

.section-heading {
    margin-bottom: 36px;
}

.section-heading.center {
    text-align: center;
}

.section-heading h2 {
    margin: 0 0 10px;
    font-size: clamp(2rem, 3vw, 2.75rem);
    line-height: 1.15;
}

.section-heading p {
    margin: 0;
    color: var(--muted);
}

.section-heading--light p {
    color: rgba(255,255,255,0.78);
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.section-kicker::before {
    content: "";
    width: 40px;
    height: 2px;
    background: var(--primary);
    border-radius: 999px;
}


.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(13, 27, 47, 0.94);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 68px;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #fff;
    font-weight: 700;
    font-size: 1.28rem;
}

.brand-logo {
    width: 56px;
    height: 56px;
    display: block;
    object-fit: contain;
    flex: 0 0 56px;
}

.brand-text {
    line-height: 1.1;
    letter-spacing: 0.01em;
}

.site-nav ul {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 14px;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    border-radius: 999px;
    transition: 0.25s ease;
}

.site-nav a:hover {
    color: var(--primary);
    background: rgba(255,255,255,0.08);
}

.site-nav a:focus-visible {
    color: var(--primary);
    background: rgba(255,255,255,0.08);
    outline: none;
}

.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 12px;
    background: rgba(255,255,255,0.08);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    background: #fff;
}


.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 24px;
    border-radius: 14px;
    font-weight: 700;
    transition: 0.25s ease;
}

.btn-primary,
.btn_primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 14px 32px rgba(255, 122, 0, 0.28);
}

.btn-primary:hover,
.btn_primary:hover {
    background: var(--primary_dark);
    transform: translateY(-1px);
}

.btn-secondary,
.btn_secondary {
    border: 1px solid var(--line);
    background: #fff;
    color: var(--text);
}

.btn-secondary:hover,
.btn_secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}


.hero {
    padding: 0;
    background: linear-gradient(180deg, #f7f9fc 0%, #eef2f7 100%);
}

.hero_panel {
    position: relative;
    overflow: hidden;
    min-height: 0;
    background: #eef2f7;
}

.hero_visual {
    position: relative;
    z-index: 1;
}

.hero_visual img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
}

.hero_copy {
    position: absolute;
    top: 36px;
    left: 48px;
    z-index: 2;
    width: 54%;
    max-width: 690px;
}

.hero_copy h1 {
    margin: 0 0 22px;
    color: #142033;
    font-size: clamp(1.75rem, 2.2vw, 2.55rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
    font-weight: 800;
    max-width: none;
}

.hero_text {
    margin: 0 0 24px;
    max-width: 560px;
    color: #5f6c80;
    font-size: 1rem;
    line-height: 1.68;
}

.hero_text::before {
    content: "";
    display: block;
    width: 46px;
    height: 4px;
    margin: 0 0 18px;
    background: var(--primary);
    border-radius: 999px;
}

.hero_actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 12px;
}

.hero_actions .btn {
    gap: 9px;
}

.hero_actions .btn::before {
    content: "";
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    background: currentColor;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.hero_actions .btn_primary::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 12a9 9 0 0 1-15.7 6.1'/%3E%3Cpath d='M3 12A9 9 0 0 1 18.3 5.7'/%3E%3Cpath d='M18 2v4h-4'/%3E%3Cpath d='M6 22v-4h4'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 12a9 9 0 0 1-15.7 6.1'/%3E%3Cpath d='M3 12A9 9 0 0 1 18.3 5.7'/%3E%3Cpath d='M18 2v4h-4'/%3E%3Cpath d='M6 22v-4h4'/%3E%3C/svg%3E");
}

.hero_actions .btn_secondary::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12a8 8 0 0 1 16 0'/%3E%3Cpath d='M6 13v3a2 2 0 0 0 2 2h1v-6H8a2 2 0 0 0-2 2Z'/%3E%3Cpath d='M18 13v3a2 2 0 0 1-2 2h-1v-6h1a2 2 0 0 1 2 2Z'/%3E%3Cpath d='M12 19h2'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12a8 8 0 0 1 16 0'/%3E%3Cpath d='M6 13v3a2 2 0 0 0 2 2h1v-6H8a2 2 0 0 0-2 2Z'/%3E%3Cpath d='M18 13v3a2 2 0 0 1-2 2h-1v-6h1a2 2 0 0 1 2 2Z'/%3E%3Cpath d='M12 19h2'/%3E%3C/svg%3E");
}

.hero_tags {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 26px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.hero_tags li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #304159;
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.2;
}

.hero_tag_icon {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    color: var(--feature_icon);
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.services.section {
    padding: 10px 0 16px;
}

.services .section-heading {
    display: none;
}


.card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.service-card {
    position: relative;
    background: var(--surface);
    border: 1px solid rgba(13, 27, 47, 0.08);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(13, 27, 47, 0.12);
    display: flex;
    flex-direction: column;
    min-height: 380px;
    padding: 20px 14px 14px;
}

.service-card::before {
    content: "";
    width: 34px;
    height: 34px;
    margin: 0 0 14px 8px;
    border: 2px solid var(--primary);
    border-radius: 6px;
    background:
        linear-gradient(var(--primary), var(--primary)) 9px 20px / 14px 2px no-repeat,
        linear-gradient(135deg, transparent 43%, var(--primary) 44% 56%, transparent 57%) 8px 9px / 16px 12px no-repeat;
}

.service-card__image {
    order: 2;
    aspect-ratio: 16 / 9;
    background: #dbe2ec;
    border-radius: 8px;
    overflow: hidden;
    margin-top: auto;
}

.service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card__body {
    order: 1;
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    padding: 0 8px 14px;
}

.service-card__body .service-card__title {
    margin: 0 0 8px;
    font-size: 1.55rem;
    font-weight: 700;
    line-height: 1.15;
}

.service-card__body p {
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 0.96rem;
    line-height: 1.52;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    margin-top: auto;
    color: var(--primary);
    font-size: 0.96rem;
    font-weight: 700;
}

.service-card__link::after {
    content: "\203A";
    font-size: 1.3em;
    line-height: 1;
    transition: transform 0.2s ease;
}

.service-card__link:hover::after {
    transform: translateX(3px);
}


.benefits.section {
    padding: 0 0 26px;
    background: var(--bg);
}

.benefits .container {
    padding: 20px 34px 26px;
    background: #fff;
    border: 1px solid rgba(13, 27, 47, 0.06);
    border-radius: 12px;
    box-shadow: 0 8px 28px rgba(13, 27, 47, 0.08);
}

.benefits .section-heading {
    margin-bottom: 14px;
}

.benefits .section-heading h2 {
    font-size: clamp(1.45rem, 2vw, 1.85rem);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.benefit {
    position: relative;
    display: grid;
    grid-template-columns: 54px 1fr;
    column-gap: 16px;
    row-gap: 6px;
    align-items: start;
    align-content: start;
    padding: 12px 24px;
    background: transparent;
    border: 0;
    border-radius: 0;
}

.benefit::before {
    content: "";
    grid-row: 1 / span 2;
    width: 44px;
    height: 44px;
    margin-top: 2px;
    background: var(--feature_icon);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='7' y='7' width='10' height='10' rx='1.5'/%3E%3Cpath d='M9.5 1v4M14.5 1v4M9.5 19v4M14.5 19v4M1 9.5h4M1 14.5h4M19 9.5h4M19 14.5h4'/%3E%3Cpath d='M10 12h4'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='7' y='7' width='10' height='10' rx='1.5'/%3E%3Cpath d='M9.5 1v4M14.5 1v4M9.5 19v4M14.5 19v4M1 9.5h4M1 14.5h4M19 9.5h4M19 14.5h4'/%3E%3Cpath d='M10 12h4'/%3E%3C/svg%3E");
}

.benefit:nth-child(2)::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='13' rx='2'/%3E%3Cpath d='M8 21h8M12 17v4M7 13l3-3 2 2 4-5'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='13' rx='2'/%3E%3Cpath d='M8 21h8M12 17v4M7 13l3-3 2 2 4-5'/%3E%3C/svg%3E");
}

.benefit:nth-child(3)::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14.7 6.3a4 4 0 0 0-5 5L3 18v3h3l6.7-6.7a4 4 0 0 0 5-5l-2.4 2.4-3-3 2.4-2.4Z'/%3E%3Cpath d='m14 14 5 5'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14.7 6.3a4 4 0 0 0-5 5L3 18v3h3l6.7-6.7a4 4 0 0 0 5-5l-2.4 2.4-3-3 2.4-2.4Z'/%3E%3Cpath d='m14 14 5 5'/%3E%3C/svg%3E");
}

.benefit:nth-child(4)::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 21v-2a4 4 0 0 0-8 0v2'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3Cpath d='M22 21v-2a4 4 0 0 0-3-3.87M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 21v-2a4 4 0 0 0-8 0v2'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3Cpath d='M22 21v-2a4 4 0 0 0-3-3.87M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E");
}

.benefit:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 14px;
    right: 0;
    bottom: 14px;
    width: 1px;
    background: var(--line);
}

.benefit .benefit__title {
    grid-column: 2;
    margin: 0 0 5px;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.25;
}

.benefit p {
    grid-column: 2;
    margin: 0;
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.45;
}


.solutions.section {
    padding: 0 0 28px;
    background: var(--bg);
}

.solutions .section-heading {
    margin-bottom: 14px;
}

.solutions .section-heading h2 {
    font-size: clamp(1.55rem, 2vw, 1.9rem);
}

.solutions .section-heading h2::after {
    content: "";
    display: block;
    width: 46px;
    height: 3px;
    margin: 10px auto 0;
    background: var(--primary);
    border-radius: 999px;
}

.solutions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(2, 132px);
    gap: 10px;
}

.solution-large,
.solution-small {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    min-height: 0;
    background: #dbe2ec;
}

.solution-large {
    grid-row: 1 / span 2;
    min-height: 274px;
}

.solution-large img,
.solution-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.solution-overlay {
    position: absolute;
    left: 18px;
    right: auto;
    bottom: 18px;
    max-width: 520px;
    padding: 18px 20px;
    border-radius: 8px;
    background: rgba(13, 27, 47, 0.82);
    color: #fff;
}

.solution-overlay h3,
.solution-box h3 {
    margin: 0 0 8px;
}

.solution-overlay p,
.solution-box p {
    margin: 0;
}

.solution-box {
    position: absolute;
    right: 16px;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    max-width: 320px;
    padding: 16px 18px;
    border-radius: 8px;
    background: rgba(255,255,255,0.92);
    box-shadow: 0 12px 28px rgba(13, 27, 47, 0.12);
}

.solution-overlay h3,
.solution-box h3 {
    font-size: 1rem;
}

.solution-overlay p,
.solution-box p {
    font-size: 0.88rem;
    line-height: 1.45;
}


.detail {
    display: none;
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 42px;
    align-items: center;
}

.detail-grid--reverse .detail-media {
    order: 2;
}

.detail-grid--reverse .detail-copy {
    order: 1;
}

.detail-media {
    border-radius: 26px;
    overflow: hidden;
    background: #dbe2ec;
    box-shadow: var(--shadow);
    min-height: 420px;
}

.detail-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-copy h2 {
    margin: 0 0 16px;
    font-size: clamp(2rem, 3vw, 3rem);
}

.detail-copy p {
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 1.05rem;
}

.check-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.check-list li {
    position: relative;
    padding-left: 28px;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary);
    font-weight: 700;
}


.references-strip.section,
.references-strip.section-dark {
    padding: 0 0 24px;
    background: var(--bg);
    color: var(--text);
}

.references-strip .section-heading {
    margin-bottom: 12px;
}

.references-strip .section-heading h2 {
    margin-bottom: 0;
    font-size: clamp(1.55rem, 2vw, 1.9rem);
    color: var(--text);
}

.references-strip .section-heading h2::after {
    content: "";
    display: block;
    width: 46px;
    height: 3px;
    margin: 10px auto 0;
    background: var(--primary);
    border-radius: 999px;
}

.references-strip .section-heading p {
    display: none;
}

.marquee {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.08);
    background: var(--navy);
    padding: 12px 34px;
    box-shadow: 0 10px 30px rgba(13, 27, 47, 0.14);
}

.marquee__track {
    display: flex;
    width: max-content;
    gap: 10px;
    padding-inline: 12px;
    animation: marquee 28s linear infinite;
}

.references-strip .container::after {
    content: "<------------------------- Posuňte se automaticky ------------------------->";
    display: block;
    margin-top: -18px;
    text-align: center;
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 700;
    pointer-events: none;
}

.marquee:hover .marquee__track {
    animation-play-state: paused;
}

.marquee-card {
    width: 250px;
    flex: 0 0 auto;
    overflow: hidden;
    border-radius: 8px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.08);
}

.marquee-card img {
    width: 100%;
    aspect-ratio: 16 / 8.6;
    object-fit: cover;
}

.marquee-card__body {
    display: block;
    padding: 10px 12px 12px;
    background: rgba(18, 38, 66, 0.92);
}

.marquee-card__body .marquee-card__title {
    margin: 0 0 4px;
    font-size: 0.95rem;
    line-height: 1.2;
    color: #fff;
}

.marquee-card__body .marquee-card__text {
    margin: 0;
    color: rgba(255,255,255,0.76);
    font-size: 0.7rem;
    line-height: 1.4;
}

.marquee-empty {
    margin: 0;
    padding: 22px;
    color: rgba(255,255,255,0.78);
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}


.logos.section {
    padding: 0 0 28px;
    background: #fff;
}

.logos .section-heading {
    margin-bottom: 16px;
}

.logos .section-heading h2 {
    margin-bottom: 0;
    font-size: clamp(1.4rem, 1.8vw, 1.75rem);
}

.logos .section-heading p {
    display: none;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px 30px;
    align-items: center;
}

.logo-pill {
    min-height: 58px;
    display: grid;
    place-items: center;
    padding: 6px 10px;
    text-align: center;
    border-radius: 0;
    background: transparent;
    border: 0;
}

.logo-pill img {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: 50px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.78;
}

.logo-empty {
    grid-column: 1 / -1;
    margin: 0;
    text-align: center;
    color: var(--muted);
}


.contact.section {
    padding: 0;
    background: var(--navy);
}

.contact-panel {
    display: grid;
    grid-template-columns: 1.1fr 1.65fr;
    gap: 0;
    overflow: hidden;
    background:
        radial-gradient(circle at left top, rgba(255, 122, 0, 0.14), transparent 28%),
        linear-gradient(135deg, #06111f 0%, #0d2944 100%);
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    color: #fff;
}

.contact-intro h2 {
    grid-column: 2;
    margin: 0 0 4px;
    font-size: clamp(1rem, 1.4vw, 1.3rem);
    line-height: 1.2;
}

.contact-intro p {
    grid-column: 2;
    margin: 0;
    color: rgba(255,255,255,0.78);
    font-size: 0.88rem;
    line-height: 1.35;
}

.contact-intro {
    display: grid;
    grid-template-columns: 52px 1fr auto;
    gap: 0 16px;
    align-items: center;
    padding: 28px 34px;
}

.contact-intro::before {
    content: "";
    grid-row: 1 / span 2;
    width: 44px;
    height: 44px;
    border: 3px solid var(--primary);
    border-radius: 50%;
    background-color: var(--primary);
    background-image: none;
    -webkit-mask:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 44 44'%3E%3Ccircle cx='22' cy='22' r='20' fill='none' stroke='black' stroke-width='3'/%3E%3Cpath d='M29.8 28.1v3a2 2 0 0 1-2.2 2 19.4 19.4 0 0 1-16.7-16.7 2 2 0 0 1 2-2.2h3a2 2 0 0 1 2 1.7c.1.9.3 1.7.6 2.5a2 2 0 0 1-.5 2.1l-1.1 1.1a15.2 15.2 0 0 0 5.5 5.5l1.1-1.1a2 2 0 0 1 2.1-.5c.8.3 1.6.5 2.5.6a2 2 0 0 1 1.7 2Z' fill='black'/%3E%3C/svg%3E") center / contain no-repeat;
    mask:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 44 44'%3E%3Ccircle cx='22' cy='22' r='20' fill='none' stroke='black' stroke-width='3'/%3E%3Cpath d='M29.8 28.1v3a2 2 0 0 1-2.2 2 19.4 19.4 0 0 1-16.7-16.7 2 2 0 0 1 2-2.2h3a2 2 0 0 1 2 1.7c.1.9.3 1.7.6 2.5a2 2 0 0 1-.5 2.1l-1.1 1.1a15.2 15.2 0 0 0 5.5 5.5l1.1-1.1a2 2 0 0 1 2.1-.5c.8.3 1.6.5 2.5.6a2 2 0 0 1 1.7 2Z' fill='black'/%3E%3C/svg%3E") center / contain no-repeat;
}

.contact-intro .btn {
    grid-column: 3;
    grid-row: 1 / span 2;
    min-height: 38px;
    padding: 0 18px;
    border-radius: 4px;
    font-size: 0.9rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding: 26px 24px;
    border-left: 1px solid rgba(255,255,255,0.28);
}

.contact-item {
    position: relative;
    padding: 0 18px 0 42px;
    border-radius: 0;
    background: transparent;
    border: 0;
}

.contact-item::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 0;
    width: 22px;
    height: 22px;
    background: var(--primary);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.contact-item--address::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 10c0 6-8 12-8 12S4 16 4 10a8 8 0 0 1 16 0Z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 10c0 6-8 12-8 12S4 16 4 10a8 8 0 0 1 16 0Z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
}

.contact-item--email::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='m3 7 9 6 9-6'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='m3 7 9 6 9-6'/%3E%3C/svg%3E");
}

.contact-item--phone::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2A19.8 19.8 0 0 1 3.08 5.18 2 2 0 0 1 5.06 3h3a2 2 0 0 1 2 1.72c.12.9.32 1.78.6 2.63a2 2 0 0 1-.45 2.11L9 10.67a16 16 0 0 0 4.33 4.33l1.21-1.21a2 2 0 0 1 2.11-.45c.85.28 1.73.48 2.63.6A2 2 0 0 1 22 16.92Z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2A19.8 19.8 0 0 1 3.08 5.18 2 2 0 0 1 5.06 3h3a2 2 0 0 1 2 1.72c.12.9.32 1.78.6 2.63a2 2 0 0 1-.45 2.11L9 10.67a16 16 0 0 0 4.33 4.33l1.21-1.21a2 2 0 0 1 2.11-.45c.85.28 1.73.48 2.63.6A2 2 0 0 1 22 16.92Z'/%3E%3C/svg%3E");
}

.contact-item h3 {
    margin: 0 0 4px;
    font-size: 0.88rem;
    color: var(--primary);
}

.contact-item p {
    margin: 0;
    color: rgba(255,255,255,0.86);
    font-size: 0.82rem;
    line-height: 1.45;
}

.contact-item a:hover {
    color: var(--primary);
}

.contact-meta {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1.4fr 0.45fr 1.3fr;
    gap: 28px;
    align-items: center;
    padding: 16px 34px;
    border-top: 1px solid rgba(255,255,255,0.16);
    color: rgba(255,255,255,0.78);
    font-size: 0.78rem;
}

.contact-meta p {
    margin: 0;
}

.contact-qr {
    width: 112px;
    height: 112px;
    display: grid;
    place-items: center;
    justify-self: center;
    padding: 0;
    background: transparent;
}

.contact-qr img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.contact-copy {
    justify-self: end;
    text-align: right;
}


.site-footer {
    display: none;
}

.footer-inner {
    text-align: center;
}


.back-to-top {
    position: fixed;
    right: clamp(18px, 3vw, 34px);
    bottom: clamp(18px, 3vw, 34px);
    z-index: 1200;
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 14px;
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 14px 32px rgba(13, 27, 47, 0.24);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease, background 0.2s ease;
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus-visible {
    background: var(--primary_dark);
    outline: none;
}

.back-to-top span {
    font-size: 1.65rem;
    font-weight: 700;
    line-height: 1;
    transform: translateY(-1px);
}


@media (max-width: 1180px) {
    .logo-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .detail-grid {
        grid-template-columns: 1fr;
    }

    .hero_copy {
        top: 34px;
        left: 30px;
        width: 56%;
        max-width: 640px;
    }

    .hero_copy h1 {
        font-size: clamp(1.65rem, 2.2vw, 2.3rem);
    }

    .hero_text {
        font-size: 0.96rem;
        max-width: 520px;
    }
}

@media (max-width: 980px) {
    .card-grid,
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefit:nth-child(2)::after {
        display: none;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .solution-large {
        grid-row: auto;
        min-height: 360px;
    }
}

@media (max-width: 920px) {
    .hero_panel {
        min-height: auto;
    }

    .hero_copy {
        position: static;
        width: 100%;
        max-width: 680px;
        padding: 28px 0 0;
    }

    .hero_copy h1 {
        max-width: none;
    }

    .hero_visual {
        margin-top: 22px;
    }

    .services.section {
        padding: 10px 0 18px;
    }
}

@media (max-width: 860px) {
    .nav-toggle {
        display: block;
    }

    .site-nav {
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        background: var(--navy);
        padding: 12px 16px 18px;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        display: none;
    }

    .site-nav.is-open,
    .site-nav.is_open {
        display: block;
    }

    .site-nav ul {
        flex-direction: column;
        align-items: stretch;
    }

    .site-nav a {
        min-height: 48px;
        border-radius: 12px;
    }

    .section {
        padding: 72px 0;
    }

    .card-grid,
    .benefits-grid,
    .contact-grid,
    .logo-grid {
        grid-template-columns: 1fr;
    }

    .contact-panel {
        grid-template-columns: 1fr;
        padding: 0;
    }

    .contact-intro {
        grid-template-columns: 52px 1fr;
        padding: 24px;
    }

    .contact-intro .btn {
        grid-column: 2;
        grid-row: 3;
        justify-self: start;
        margin-top: 14px;
    }

    .contact-grid {
        border-left: 0;
        border-top: 1px solid rgba(255,255,255,0.16);
        padding: 22px 24px;
    }

    .contact-meta {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 20px 24px;
    }

    .contact-qr,
    .contact-copy {
        justify-self: start;
        text-align: left;
    }

    .benefits .container {
        padding: 20px;
    }

    .benefit {
        padding: 14px 0;
    }

    .benefit::after {
        display: none;
    }

    .solution-box {
        position: static;
        max-width: none;
        margin: 14px;
        transform: none;
    }

    .solution-small {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        min-height: 260px;
    }

    .marquee-card {
        width: 300px;
    }

    .brand-logo {
        width: 48px;
        height: 48px;
        flex: 0 0 48px;
    }

    .brand-text {
        font-size: 1rem;
    }

    .hero_copy {
        padding: 24px 0 0;
    }

    .hero_copy h1 {
        font-size: clamp(1.65rem, 7vw, 2.2rem);
        line-height: 1.1;
    }

    .hero_text {
        font-size: 0.98rem;
    }

    .hero_actions {
        margin-bottom: 18px;
    }

    .hero_tags {
        gap: 12px 18px;
    }

    .hero_tags li {
        font-size: 0.92rem;
    }

    .services.section {
        padding-top: 10px;
    }

    .detail-media {
        min-height: 280px;
    }
}
