* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f8f9fc;
    color: #1a1a2e;
    overflow-x: hidden;
}

/* ========== ФІКСОВАНЕ МЕНЮ ========== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 56px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    transform: translateY(0);
    transition: transform 0.3s ease;
    will-change: transform;
}

.navbar.navbar-hidden {
    transform: translateY(-100%);
}

.logo {
    font-size: 26px;
    font-weight: 600;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav-links {
    display: flex;
    gap: 26px;
    list-style: none;
    align-items: center;
}

.mobile-menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid rgba(148, 163, 184, 0.45);
    background: rgba(255, 255, 255, 0.92);
    padding: 8px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 2px;
    background: #334155;
    border-radius: 2px;
}

.mobile-menu-panel {
    display: none;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lang-switch {
    position: relative;
}

.lang-btn {
    height: 40px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.45);
    background: rgba(255, 255, 255, 0.9);
    color: #334155;
    padding: 0 14px;
    font-size: 13px;
    font-weight: 700;
    font-family: inherit;
    letter-spacing: 0.4px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lang-btn:hover,
.lang-switch.open .lang-btn {
    border-color: #60a5fa;
    box-shadow: 0 8px 18px -14px rgba(37, 99, 235, 0.6);
}

.lang-btn i {
    font-size: 11px;
    transition: transform 0.2s ease;
}

.lang-switch.open .lang-btn i {
    transform: rotate(180deg);
}

.lang-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    min-width: 150px;
    margin: 0;
    padding: 8px;
    list-style: none;
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 16px 30px -18px rgba(15, 23, 42, 0.45);
    opacity: 0;
    pointer-events: none;
    transform: translateY(6px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 1200;
}

.lang-switch.open .lang-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.lang-option {
    width: 100%;
    border: none;
    border-radius: 8px;
    background: transparent;
    color: #334155;
    text-align: left;
    padding: 8px 10px;
    font-size: 14px;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.lang-option:hover,
.lang-option.active {
    background: rgba(37, 99, 235, 0.12);
    color: #1d4ed8;
}

.nav-item {
    position: relative;
    padding-right: 18px;
}

.nav-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 18px;
    background: linear-gradient(180deg, rgba(148, 163, 184, 0.15), rgba(148, 163, 184, 0.7), rgba(148, 163, 184, 0.15));
}

.nav-link-btn {
    border: none;
    background: none;
    cursor: pointer;
    padding: 4px 0;
    font-size: 16px;
    color: #4a4a6a;
    font-weight: 500;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    text-decoration: none;
    background-image: linear-gradient(90deg, #2563eb 0%, #0ea5e9 100%);
    background-size: 0% 100%;
    background-repeat: no-repeat;
    -webkit-background-clip: text;
    background-clip: text;
    transition: color 0.25s ease, background-size 0.3s ease;
}

.nav-link-btn i {
    font-size: 12px;
    transition: transform 0.25s ease, color 0.25s ease;
}

.nav-item:hover .nav-link-btn,
.nav-item.open .nav-link-btn {
    color: transparent;
    background-size: 100% 100%;
}

.nav-item.open .nav-link-btn i {
    transform: rotate(180deg);
    color: #2563eb;
}

.submenu {
    position: absolute;
    top: calc(100% + 14px);
    left: -8px;
    min-width: 230px;
    list-style: none;
    margin: 0;
    padding: 10px;
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.3);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 36px -22px rgba(15, 23, 42, 0.45);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 1100;
}

.nav-item.open .submenu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    background: #fff;
    border-radius: 0;
}

.nav-item-services {
    position: static;
}

.mega-menu {
    position: fixed;
    left: 0;
    right: 0;
    top: var(--mega-menu-top, 84px);
    width: auto;
    padding: 0 56px;
    border: none;
    background: transparent;
    box-sizing: border-box;
    overflow: hidden;
}

.mega-menu-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 0;
    border-radius: 24px;
    overflow: hidden;
    padding-bottom: 20px;
    padding-top: 20px;
}

.mega-menu-list {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mega-service-btn {
    border: none;
    width: 100%;
    text-align: left;
    padding: 14px 14px;
    border-radius: 12px;
    background: transparent;
    color: #334155;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.mega-service-btn:hover,
.mega-service-btn.active {
    color: #0f172a;
    background: linear-gradient(90deg, rgba(37, 99, 235, 0.16), rgba(14, 165, 233, 0.1));
    transform: translateX(2px);
}

.mega-preview {
    position: relative;
    height: 320px;
    min-width: 0;
    background: #0f172a;
    overflow: hidden;
}

.mega-preview img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
    display: block;
}

.mega-preview::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.18), rgba(15, 23, 42, 0.75));
}

.mega-preview-content {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 22px;
    z-index: 2;
    padding: 16px 18px;
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: rgba(15, 23, 42, 0.62);
    backdrop-filter: blur(8px);
}

.mega-preview-content h4 {
    color: #f8fafc;
    font-size: 22px;
    margin-bottom: 8px;
}

.mega-preview-content p {
    color: #dbeafe;
    font-size: 14px;
    line-height: 1.45;
}

.submenu li + li {
    margin-top: 4px;
}

.submenu a {
    display: block;
    padding: 10px 12px;
    border-radius: 10px;
    color: #334155;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.2s ease, color 0.2s ease;
}

.submenu a:hover {
    background: rgba(37, 99, 235, 0.12);
    color: #1d4ed8;
}

@media (max-width: 1000px) {
    .nav-actions {
        gap: 8px;
    }

    .lang-btn {
        height: 36px;
        padding: 0 12px;
    }

    .mega-menu {
        top: 72px;
        padding: 0 24px;
    }

    .mega-menu-inner {
        grid-template-columns: 1fr;
    }

    .mega-menu-list {
        border-right: none;
        border-bottom: 1px solid rgba(148, 163, 184, 0.28);
    }

    .mega-preview {
        min-height: 250px;
    }
}

.btn-calc {
    height: 40px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.45);
    background-color: rgba(255, 255, 255, 0.9);
    background-image: linear-gradient(90deg, #2563eb, #2563eb);
    background-repeat: no-repeat;
    background-size: 0% 100%;
    padding: 0 18px;
    color: #1d4ed8;
    font-size: 13px;
    letter-spacing: 0.2px;
    font-weight: 700;
    font-family: inherit;
    -webkit-text-stroke: 0.25px #1d4ed8;
    cursor: pointer;
    transition: color 0.25s ease, background-size 0.3s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 8px 18px -14px rgba(37, 99, 235, 0.4);
}

.btn-calc:hover {
    color: #ffffff;
    -webkit-text-stroke: 0;
    border-color: #2563eb;
    background-size: 100% 100%;
    box-shadow: 0 12px 24px -14px rgba(37, 99, 235, 0.58);
}

.btn-calc:focus-visible {
    outline: none;
    border-color: #60a5fa;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
}

/* ========== СЛАЙДЕР (перший екран) ========== */
.hero-slider {
    width: 100%;
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0;
    background: #ffffff;
    position: relative;
}

.slider-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    height: 100%;
}

.slider-text {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 72px;
    min-width: 0;
}

.text-content {
    transition: opacity 0.35s ease, transform 0.35s ease;
    max-width: 640px;
}

.text-content.fade-out {
    opacity: 0;
    transform: translateY(12px);
}

.text-content.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.badge {
    font-size: 13px;
    letter-spacing: 3px;
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 16px;
}

.slider-text h1 {
    font-size: 50px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #1e293b, #2563eb);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.slider-text p {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.55;
    max-width: 100%;
    margin-bottom: 32px;
}

.slider-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, #2563eb, #0ea5e9);
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 14px 28px -18px rgba(37, 99, 235, 0.7);
}

.slider-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 30px -18px rgba(37, 99, 235, 0.78);
}

.slider-nav {
    display: flex;
    gap: 12px;
    margin-top: 0;
    position: absolute;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    z-index: 30;
}

.nav-dot {
    width: 40px;
    height: 4px;
    background: #d1d5db;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.2s;
}

.nav-dot.active {
    background: #2563eb;
    width: 60px;
}

.slider-image {
    min-width: 0;
    position: relative;
    overflow: hidden;
    border-radius: 0;
    background: #f1f5f9;
    box-shadow: none;
}

.image-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    width: 100%;
    height: 100%;
}

.slide-img {
    flex: 0 0 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 0;
    background: #fff;
}

.slide-img img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
}

.slide-img video {
    width: 100%;
    height: auto;
    max-width: none;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    align-self: center;
    border-radius: 0;
    box-shadow: none;
}

.arrows {
    position: absolute;
    bottom: 24px;
    right: 24px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.arrow {
    background: rgba(255, 255, 255, 0.9);
    width: 44px;
    height: 44px;
    border-radius: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 1px solid #e2e8f0;
    transition: 0.2s;
}

.arrow:hover {
    background: #2563eb;
    color: white;
}

/* ========== БЛОКИ ЕТАПІВ ========== */
.stages-heading-section {
    width: 100%;
    padding: 72px 56px 40px;
    background: linear-gradient(135deg, #f8f9fc 0%, #eef2ff 100%);
}

.stages-heading-container {
    max-width: 1400px;
    margin: 0 auto;
}

.stages-heading-title {
    text-align: center;
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #1e293b, #2563eb);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stages-section {
    position: relative;
}

.stage-block {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.stage-block .stage-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    padding: 60px 40px;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(4px);
    border-radius: 48px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stage-block.sticky {
    position: sticky;
    top: 0;
    z-index: 10;
}

.stage-number {
    font-size: 120px;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff, #a5f3fc);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 0.9;
    margin-bottom: 24px;
}

.stage-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
    color: white;
}

.stage-desc {
    font-size: 18px;
    color: #f1f5f9;
    line-height: 1.5;
    max-width: 80%;
}

.stage-icon {
    font-size: 48px;
    color: #a5f3fc;
    margin-bottom: 20px;
}

/* ========== БЛОК ПЕРЕВАГ ========== */
.advantages-section {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fc 0%, #eef2ff 100%);
    padding: 100px 56px;
    padding-bottom: 20px;
}

.advantages-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

.advantages-title {
    text-align: center;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 64px;
    background: linear-gradient(135deg, #1e293b, #2563eb);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.advantage-card {
    background: white;
    border-radius: 28px;
    padding: 32px 28px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px -12px rgba(0, 0, 0, 0.08);
}

.advantage-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 40px -12px rgba(37, 99, 235, 0.2);
}

.advantage-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #e0e7ff, #ede9fe);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.advantage-icon i {
    font-size: 32px;
    color: #2563eb;
}

.advantage-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.advantage-card p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.5;
}

.suppliers-block {
    margin-top: 52px;
}

.suppliers-caption {
    text-align: center;
    font-size: 24px;
    line-height: 1.4;
    color: #0f172a;
    margin-bottom: 26px;
}

.suppliers-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    /* background: rgba(255, 255, 255, 0.74); */
    /* border: 1px solid rgba(148, 163, 184, 0.24); */
    /* box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65), 0 14px 34px -28px rgba(15, 23, 42, 0.5); */
    padding: 20px 0;
}

.suppliers-carousel::before,
.suppliers-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.suppliers-carousel::before {
    left: 0;
    background: linear-gradient(90deg, #eef2ff 5%, rgba(238, 242, 255, 0));
}

.suppliers-carousel::after {
    right: 0;
    background: linear-gradient(-90deg, #eef2ff 5%, rgba(238, 242, 255, 0));
}

.suppliers-track {
    display: flex;
    align-items: center;
    gap: 18px;
    width: max-content;
    animation: suppliers-scroll 30s linear infinite;
}

.suppliers-carousel:hover .suppliers-track {
    animation-play-state: paused;
}

.supplier-logo-item {
    width: 188px;
    height: 92px;
    flex: 0 0 auto;
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.28);
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
}

.supplier-logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: saturate(0.95);
}

.supplier-logo-fallback {
    display: none;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    letter-spacing: 0.02em;
}

@keyframes suppliers-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ========== ПОСЛУГИ ========== */
.services-section {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #eef2ff 0%, #f8f9fc 100%);
    padding: 100px 56px;
}

.services-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

.services-title {
    text-align: center;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 64px;
    background: linear-gradient(135deg, #1e293b, #2563eb);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: white;
    border-radius: 28px;
    padding: 36px 32px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px -12px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 40px -12px rgba(37, 99, 235, 0.2);
}

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
}

.service-card p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 24px;
}

.service-link {
    display: inline-block;
    color: #2563eb;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.service-link:hover {
    color: #1d4ed8;
    transform: translateX(4px);
}

/* ========== КОМУ БУДУТЬ КОРИСНІ ПОСЛУГИ ========== */
.audience-section {
    width: 100%;
    padding: 100px 56px;
    background: linear-gradient(140deg, #f8fafc 0%, #eef5ff 50%, #f1f5f9 100%);
}

.audience-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.audience-title {
    text-align: center;
    font-size: 46px;
    font-weight: 800;
    margin-bottom: 56px;
    background: linear-gradient(135deg, #0f172a, #2563eb);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.audience-card {
    padding: 0px 0px 22px;
    border-radius: 24px;
    border: 1px solid rgba(148, 163, 184, 0.26);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 16px 32px -22px rgba(15, 23, 42, 0.3);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.audience-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 16px 16px 0px 0px;
    display: block;
    margin-bottom: 14px;
}

.audience-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 36px -20px rgba(37, 99, 235, 0.28);
}

.audience-card h3 {
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 12px;
    color: #0f172a;
    padding: 0 14px;
}

.audience-card p {
    font-size: 16px;
    line-height: 1.5;
    color: #475569;
    padding: 0 14px;
}

/* ========== ФОРМА ЗАМОВЛЕННЯ ========== */
.order-section {
    width: 100%;
    padding: 100px 56px;
    background:
        radial-gradient(circle at 8% 20%, rgba(14, 165, 233, 0.28), transparent 38%),
        radial-gradient(circle at 92% 84%, rgba(59, 130, 246, 0.24), transparent 34%),
        linear-gradient(145deg, #020617 0%, #0b1733 45%, #111827 100%);
}

.order-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 36px;
    padding: 46px;
    background: linear-gradient(150deg, rgba(15, 23, 42, 0.84), rgba(11, 23, 51, 0.88));
    border: 1px solid rgba(148, 163, 184, 0.38);
    box-shadow: 0 28px 58px -32px rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.order-intro {
    margin-bottom: 28px;
}

.order-title {
    font-size: 40px;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 10px;
    color: #f8fafc;
}

.order-subtitle {
    font-size: 17px;
    color: #cbd5e1;
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.order-form-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 20px;
    align-items: stretch;
}

.order-form-left {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.order-form-right {
    display: flex;
}

.order-fields {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.order-file-field {
    width: 100%;
    height: 100%;
}

.order-label {
    font-size: 14px;
    font-weight: 600;
    color: #dbeafe;
}

.order-input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, 0.42);
    background: rgba(248, 250, 252, 0.94);
    color: #0f172a;
    font-size: 15px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.order-input:focus {
    border-color: #38bdf8;
    box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.2);
}

.order-dropzone {
    position: relative;
    flex: 1;
    min-height: 0;
    border: 1px dashed rgba(148, 163, 184, 0.5);
    border-radius: 18px;
    padding: 22px;
    background: rgba(15, 23, 42, 0.35);
    text-align: center;
    color: #e2e8f0;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.order-dropzone:hover {
    border-color: rgba(56, 189, 248, 0.8);
    background: rgba(30, 41, 59, 0.55);
    transform: translateY(-1px);
}

.order-dropzone.dragover {
    border-color: #38bdf8;
    background: rgba(14, 165, 233, 0.24);
}

.order-file-input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.order-dropzone i {
    font-size: 26px;
    margin-bottom: 10px;
    color: #7dd3fc;
}

.order-drop-text {
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 8px;
}

.order-drop-link {
    color: #38bdf8;
    font-weight: 700;
}

.order-file-name {
    font-size: 13px;
    color: #bfdbfe;
}

.order-hint {
    font-size: 13px;
    line-height: 1.45;
    color: #93c5fd;
    margin-top: 10px;
}

.order-submit {
    grid-column: 1 / -1;
    margin-top: 8px;
    padding: 14px 22px;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, #38bdf8, #2563eb);
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    justify-self: start;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 14px 30px -16px rgba(56, 189, 248, 0.65);
    max-width: 300px;
    margin: auto;
}

.order-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 34px -16px rgba(37, 99, 235, 0.72);
}

/* ========== ФУТЕР ========== */
.site-footer {
    width: 100%;
    padding: 56px;
    background: linear-gradient(155deg, #0f172a 0%, #111827 65%, #0b1224 100%);
    border-top: 1px solid rgba(148, 163, 184, 0.2);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 30px;
}

.footer-logo {
    color: transparent;
    margin-bottom: 10px;
}

.footer-text {
    max-width: 420px;
    color: #cbd5e1;
    line-height: 1.5;
}

.footer-contacts h3,
.footer-socials h3 {
    color: #f8fafc;
    font-size: 20px;
    margin-bottom: 14px;
}

.footer-contacts a,
.footer-contacts p {
    display: block;
    margin-bottom: 8px;
    color: #cbd5e1;
    text-decoration: none;
}

.footer-contacts a:hover {
    color: #7dd3fc;
}

.footer-social-links {
    display: flex;
    gap: 12px;
}

.footer-social-links a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(148, 163, 184, 0.16);
    border: 1px solid rgba(148, 163, 184, 0.25);
    color: #e2e8f0;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.footer-social-links a:hover {
    transform: translateY(-2px);
    background: rgba(56, 189, 248, 0.2);
    color: #7dd3fc;
}

/* ========== НАШІ РОБОТИ (30% / 70%) ========== */
.portfolio-section {
    width: 100%;
    min-height: auto;
    background:
        radial-gradient(circle at 12% 20%, rgba(37, 99, 235, 0.16), transparent 36%),
        radial-gradient(circle at 85% 80%, rgba(14, 165, 233, 0.14), transparent 42%),
        linear-gradient(140deg, #f8fbff 0%, #eff6ff 48%, #e6f0ff 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 28px 56px;
}

.portfolio-heading-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto 20px;
}

.portfolio-heading-title {
    text-align: center;
    font-size: 44px;
    font-weight: 800;
    background: linear-gradient(135deg, #1e293b, #2563eb);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.portfolio-container {
    width: 100%;
    max-width: 1400px;
    height: auto;
    min-height: 0;
    max-height: none;
    display: flex;
    align-items: stretch;
    gap: 22px;
}

.portfolio-list {
    width: 50%;
    /* background: linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 252, 0.95)); */
    padding: 0px 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    overflow-y: visible;
    border-radius: 30px;
    /* border: 1px solid rgba(148, 163, 184, 0.35); */
    /* box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 18px 40px -28px rgba(15, 23, 42, 0.35); */
}

.portfolio-item {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 3px 5px;
    background: rgba(255, 255, 255, 0.78);
    border-radius: 20px;
    cursor: pointer;
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(148, 163, 184, 0.32);
}

.portfolio-item:hover {
    background: linear-gradient(135deg, rgba(219, 234, 254, 0.92), rgba(224, 242, 254, 0.86));
    border-color: rgba(37, 99, 235, 0.45);
    transform: translateX(6px);
}

.portfolio-item.active {
    background: linear-gradient(135deg, rgba(191, 219, 254, 0.9), rgba(186, 230, 253, 0.85));
    /* border-color: #3b82f6; */
    box-shadow: 0 12px 28px -18px rgba(37, 99, 235, 0.45);
}

.portfolio-thumb {
    width: 74px;
    height: 74px;
    border-radius: 18px;
    object-fit: cover;
    background: #dbeafe;
    border: 1px solid rgba(148, 163, 184, 0.45);
}

.portfolio-item-info h4 {
    color: #0f172a;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 4px;
}

.portfolio-item-info p {
    color: #475569;
    font-size: 13px;
}

.portfolio-preview {
    width: 50%;
    position: relative;
    background-size: cover;
    background-position: center;
    transition: background-image 0.35s ease;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 0px;
    border-radius: 34px;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.4);
    box-shadow: 0 24px 48px -30px rgba(15, 23, 42, 0.4);
}

.portfolio-preview::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(15, 23, 42, 0.38));
    z-index: 0;
}

.portfolio-preview::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.9);
    opacity: 0;
    pointer-events: none;
    z-index: 1;
}

.portfolio-preview.flash::after {
    animation: portfolioFlash 0.45s ease-out;
}

@keyframes portfolioFlash {
    0% {
        opacity: 0;
    }

    18% {
        opacity: 0.62;
    }

    100% {
        opacity: 0;
    }
}

.info-overlay {
    position: relative;
    z-index: 2;
    background: rgb(255 255 255 / 71%);
    backdrop-filter: blur(32px);
    border-radius: 0px 0px 32px 32px;
    padding: 32px 40px;
    max-width: 100%;
    width: 100%;
    border: 1px solid rgba(148, 163, 184, 0.35);
    animation: fadeInUp 0.5s ease;
    box-shadow: 0 18px 36px -28px rgba(15, 23, 42, 0.35);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.info-overlay h3 {
    font-size: 28px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 20px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.28);
}

.info-label {
    color: #475569;
    font-weight: 500;
}

.info-value {
    color: #0f172a;
    font-weight: 600;
}

/* ========== ГАЛЕРЕЯ ПРИКЛАДІВ РОБІТ ========== */
.home-gallery-section {
    width: 100%;
    padding: 36px 56px 86px;
    background:
        radial-gradient(circle at 15% 15%, rgba(59, 130, 246, 0.12), transparent 40%),
        radial-gradient(circle at 82% 82%, rgba(14, 165, 233, 0.14), transparent 36%),
        linear-gradient(160deg, #f3f9ff 0%, #eaf3ff 45%, #f8fbff 100%);
}

.home-gallery-container {
    max-width: 1400px;
    margin: 0 auto;
}

.home-gallery-heading {
    margin-bottom: 24px;
    text-align: center;
}

.home-gallery-title {
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, #0f172a, #2563eb);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.home-gallery-subtitle {
    margin-top: 8px;
    color: #475569;
    font-size: 15px;
}

.home-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.home-gallery-card {
    position: relative;
    border: 1px solid rgba(148, 163, 184, 0.35);
    border-radius: 20px;
    overflow: hidden;
    padding: 0;
    cursor: pointer;
    background: #e2e8f0;
    aspect-ratio: 1 / 1;
    box-shadow: 0 12px 26px -20px rgba(15, 23, 42, 0.45);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.home-gallery-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(37, 99, 235, 0), rgba(15, 23, 42, 0.22));
    opacity: 0;
    transition: opacity 0.25s ease;
}

.home-gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.home-gallery-card:hover {
    transform: translateY(-4px);
    border-color: rgba(37, 99, 235, 0.45);
    box-shadow: 0 18px 36px -20px rgba(37, 99, 235, 0.42);
}

.home-gallery-card:hover::after {
    opacity: 1;
}

.home-gallery-card:hover img {
    transform: scale(1.05);
}

body.home-gallery-open {
    overflow: hidden;
}

.home-gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2600;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.84);
    backdrop-filter: blur(6px);
    padding: 42px;
}

.home-gallery-lightbox.is-open {
    display: flex;
}

.home-gallery-lightbox-content {
    margin: 0;
    max-width: min(1060px, 100%);
    width: 100%;
    max-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.home-gallery-lightbox-content img {
    width: auto;
    max-width: 100%;
    max-height: calc(100vh - 170px);
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.4);
    box-shadow: 0 24px 52px -22px rgba(15, 23, 42, 0.8);
}

.home-gallery-lightbox-content figcaption {
    color: #f1f5f9;
    font-size: 14px;
    text-align: center;
}

.home-gallery-lightbox-close {
    position: absolute;
    top: 16px;
    right: 18px;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    background: rgba(15, 23, 42, 0.72);
    color: #e2e8f0;
    font-size: 26px;
    line-height: 1;
}

.home-gallery-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.45);
    background: rgba(15, 23, 42, 0.72);
    color: #f8fafc;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
}

.home-gallery-lightbox-nav.prev {
    left: 16px;
}

.home-gallery-lightbox-nav.next {
    right: 16px;
}

@media (max-width: 1000px) {
    .slider-text h1 {
        font-size: 42px;
    }

    .slider-text p {
        font-size: 15px;
    }

    .slider-cta {
        font-size: 13px;
        padding: 11px 20px;
    }

    .hero-slider {
        height: auto;
        padding-top: 88px;
    }

    .slider-container {
        grid-template-columns: 1fr;
        height: auto;
    }

    .slider-text {
        padding: 32px 24px;
    }

    .slider-nav {
        bottom: 16px;
    }

    .slider-image {
        min-height: 55vh;
    }

    .portfolio-section {
        padding: 20px 24px;
    }

    .portfolio-heading-title {
        font-size: 36px;
    }

    .home-gallery-section {
        padding: 26px 24px 70px;
    }

    .home-gallery-title {
        font-size: 34px;
    }

    .home-gallery-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
    }

    .audience-section {
        padding: 80px 24px;
    }

    .services-section {
        padding: 80px 24px;
    }

    .order-section {
        padding: 80px 24px;
    }

    .site-footer {
        padding: 44px 24px;
    }

    .order-container {
        padding: 28px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .order-title {
        font-size: 32px;
    }

    .order-form {
        gap: 16px;
    }

    .order-form-layout {
        grid-template-columns: 1fr;
    }

    .order-form-left {
        gap: 16px;
    }

    .audience-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .audience-title {
        font-size: 38px;
        margin-bottom: 36px;
    }

    .portfolio-container {
        flex-direction: column;
        gap: 16px;
        min-height: auto;
    }

    .portfolio-list {
        width: 100%;
        flex-direction: row;
        overflow-x: auto;
        padding: 24px 16px;
        min-height: auto;
        border-radius: 24px;
    }

    .portfolio-preview {
        width: 100%;
        min-height: 56vh;
        padding: 0px;
        border-radius: 24px;
    }

    .portfolio-item {
        min-width: 200px;
    }
}

@media (max-width: 900px) {
    .nav-links,
    .nav-actions {
        display: none;
    }

    .mobile-menu-toggle {
        display: inline-flex;
    }

    .navbar.mobile-menu-open .mobile-menu-panel {
        display: block;
    }

    .mobile-menu-panel {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(12px);
        border-top: 1px solid rgba(148, 163, 184, 0.24);
        border-bottom: 1px solid rgba(148, 163, 184, 0.24);
        padding: 14px 20px 18px;
        box-shadow: 0 18px 30px -22px rgba(15, 23, 42, 0.45);
        max-height: calc(100vh - 72px);
        overflow-y: auto;
    }

    .mobile-menu-links {
        list-style: none;
        margin: 0 0 12px;
        padding: 0;
    }

    .mobile-menu-links > li {
        border-bottom: 1px solid rgba(148, 163, 184, 0.2);
    }

    .mobile-menu-links a,
    .mobile-menu-group-toggle {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 2px;
        color: #334155;
        text-decoration: none;
        font-size: 15px;
        font-weight: 600;
        border: none;
        background: none;
        font-family: inherit;
        cursor: pointer;
    }

    .mobile-menu-group-toggle i {
        font-size: 12px;
        transition: transform 0.2s ease;
    }

    .mobile-menu-group.open .mobile-menu-group-toggle i {
        transform: rotate(180deg);
    }

    .mobile-submenu {
        list-style: none;
        margin: 0;
        padding: 0 0 8px 8px;
        display: none;
    }

    .mobile-menu-group.open .mobile-submenu {
        display: block;
    }

    .mobile-submenu a {
        padding: 8px 0;
        font-size: 14px;
        font-weight: 500;
        color: #475569;
        border: none;
    }

    .mobile-calc-btn {
        width: 100%;
        height: 42px;
    }

    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .suppliers-caption {
        font-size: 20px;
    }

    .supplier-logo-item {
        width: 164px;
        height: 84px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-list {
        flex-direction: column;
    }

    .portfolio-item {
        min-width: auto;
    }
}

@media (max-width: 600px) {
    .navbar {
        padding: 14px 16px;
    }

    .logo {
        font-size: 22px;
    }

    .slider-text h1 {
        font-size: 34px;
    }

    .slider-text p {
        font-size: 14px;
    }

    .lang-menu {
        right: auto;
        left: 0;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .suppliers-block {
        margin-top: 40px;
    }

    .suppliers-caption {
        font-size: 18px;
        margin-bottom: 18px;
    }

    .suppliers-carousel {
        border-radius: 18px;
        padding: 14px 0;
    }

    .suppliers-carousel::before,
    .suppliers-carousel::after {
        width: 36px;
    }

    .supplier-logo-item {
        width: 132px;
        height: 72px;
        border-radius: 14px;
    }

    .supplier-logo-fallback {
        font-size: 14px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .audience-title {
        font-size: 30px;
    }

    .portfolio-heading-title {
        font-size: 30px;
    }

    .home-gallery-title {
        font-size: 30px;
    }

    .home-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .home-gallery-lightbox {
        padding: 24px 12px;
    }

    .home-gallery-lightbox-nav {
        width: 42px;
        height: 42px;
        font-size: 28px;
    }

    .home-gallery-lightbox-nav.prev {
        left: 8px;
    }

    .home-gallery-lightbox-nav.next {
        right: 8px;
    }

    .home-gallery-lightbox-content img {
        max-height: calc(100vh - 140px);
    }

    .audience-grid {
        grid-template-columns: 1fr;
    }

    .audience-card {
        padding: 22px;
    }

    .audience-card h3 {
        font-size: 20px;
    }

    .audience-card p {
        font-size: 15px;
    }

    .order-container {
        padding: 22px;
        border-radius: 24px;
    }

    .site-footer {
        padding: 36px 20px;
    }

    .order-title {
        font-size: 27px;
    }

    .order-subtitle {
        font-size: 15px;
    }

    .order-submit {
        width: 100%;
        justify-self: stretch;
    }

    .info-overlay {
        padding: 24px;
    }

    .info-overlay h3 {
        font-size: 22px;
    }
}

.modal-overlay {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.modal-content {
    background: white;
    border-radius: 32px;
    max-width: 500px;
    width: 90%;
    padding: 32px;
}

.modal-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.modal-content input,
.modal-content textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    font-family: inherit;
}

.modal-dropzone {
    position: relative;
    width: 100%;
    border: 1px dashed rgba(148, 163, 184, 0.65);
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 10px;
    text-align: center;
    background: #f8fbff;
    color: #475569;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.modal-dropzone.dragover {
    border-color: #2563eb;
    background: #eaf2ff;
}

.modal-file-input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.modal-dropzone i {
    font-size: 22px;
    color: #2563eb;
    margin-bottom: 6px;
}

.modal-drop-text {
    font-size: 14px;
    margin-bottom: 6px;
}

.modal-drop-text span {
    color: #1d4ed8;
    font-weight: 700;
}

.modal-file-name {
    font-size: 12px;
    color: #64748b;
}

.modal-file-hint {
    margin: -6px 2px 14px;
    font-size: 12px;
    line-height: 1.4;
    color: #64748b;
}

.modal-content button {
    background: #2563eb;
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 40px;
    color: white;
    font-weight: 600;
    cursor: pointer;
}

.cancel-modal {
    background: transparent !important;
    color: #64748b !important;
    margin-top: 12px;
}

 .service-page {
            width: 100%;
            padding-top: 108px;
            background:
                radial-gradient(circle at 12% 20%, rgba(37, 99, 235, 0.15), transparent 30%),
                radial-gradient(circle at 88% 14%, rgba(14, 165, 233, 0.12), transparent 26%),
                linear-gradient(180deg, #f8fbff 0%, #eef5ff 45%, #f8f9fc 100%);
        }

        .service-page-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 56px 80px;
        }

        .service-hero,
        .service-content-grid {
            display: grid;
            gap: 28px;
            align-items: stretch;
        }

        .service-hero {
            grid-template-columns: 1.1fr 0.9fr;
            margin-bottom: 32px;
        }

        .service-hero-copy,
        .service-hero-media,
        .service-content-card,
        .service-related-card {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(148, 163, 184, 0.26);
            box-shadow: 0 20px 40px -28px rgba(15, 23, 42, 0.28);
        }

        .service-hero-copy {
            border-radius: 32px;
            padding: 34px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .service-breadcrumbs {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            font-size: 13px;
            color: #64748b;
            margin-bottom: 16px;
        }

        .service-breadcrumbs a {
            color: #2563eb;
            text-decoration: none;
        }

        .service-title {
            font-size: 48px;
            line-height: 1.05;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 16px;
        }

        .service-description {
            font-size: 18px;
            line-height: 1.6;
            color: #475569;
            margin-bottom: 24px;
            max-width: 56ch;
        }

        .service-cta {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 20px;
            border-radius: 999px;
            background: linear-gradient(135deg, #2563eb, #0ea5e9);
            color: #ffffff;
            text-decoration: none;
            font-weight: 700;
            width: fit-content;
            box-shadow: 0 16px 32px -20px rgba(37, 99, 235, 0.75);
        }

        .service-hero-media {
            border-radius: 32px;
            overflow: hidden;
            min-height: 420px;
            position: relative;
        }

        .service-hero-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .service-hero-media::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(15, 23, 42, 0.08), rgba(15, 23, 42, 0.35));
            pointer-events: none;
        }

        .service-content-grid {
            grid-template-columns: 1.05fr 0.95fr;
            align-items: start;
        }

        .service-content-card,
        .service-related-card {
            border-radius: 28px;
            padding: 30px;
        }

        .service-content-card h2,
        .service-related-card h2 {
            font-size: 26px;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 18px;
        }

        .service-content-body {
            font-size: 16px;
            line-height: 1.75;
            color: #334155;
        }

        .service-content-body p + p {
            margin-top: 14px;
        }

        .service-related-list {
            display: grid;
            gap: 14px;
        }

        .service-related-link {
            display: block;
            padding: 18px 18px 16px;
            border-radius: 20px;
            border: 1px solid rgba(148, 163, 184, 0.28);
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 252, 0.88));
            text-decoration: none;
            color: #0f172a;
            transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
        }

        .service-related-link:hover {
            transform: translateY(-2px);
            border-color: rgba(37, 99, 235, 0.42);
            box-shadow: 0 16px 28px -22px rgba(37, 99, 235, 0.38);
        }

        .service-related-link h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 6px;
        }

        .service-related-link p {
            font-size: 14px;
            line-height: 1.55;
            color: #64748b;
        }

        @media (max-width: 1000px) {
            .service-page-container {
                padding: 0 24px 64px;
            }

            .service-hero,
            .service-content-grid {
                grid-template-columns: 1fr;
            }

            .service-title {
                font-size: 38px;
            }
        }

        @media (max-width: 600px) {
            .service-page {
                padding-top: 92px;
            }

            .service-hero-copy,
            .service-content-card,
            .service-related-card {
                padding: 22px;
                border-radius: 24px;
            }

            .service-hero-media {
                min-height: 280px;
                border-radius: 24px;
            }

            .service-title {
                font-size: 30px;
            }

            .service-description {
                font-size: 16px;
            }
        }

.logo a {
    display: flex;
}

.logo-link {
    text-decoration: none;
    color: inherit;
}

.logo img {
    width: 140px;
    margin-right: 5px;
}
.logo a font
 {
    width: 140px;
    line-height: 94%;
    background: linear-gradient(135deg, #1e293b, #2563eb);
    -webkit-background-clip: text;
    background-clip: text;
}
.logo.footer-logo img {
    width: 36px;
}
.footer-logo {
    color: #ffffff;
    display: flex;
    align-items: center;
}

.is-hidden {
    display: none !important;
}

.slider-cta-hidden {
    display: none !important;
}

.modal-result-message-success {
    color: #047857;
}

.modal-result-message-error {
    color: #dc2626;
}

.order-submit-message-success {
    color: #047857;
}

.order-submit-message-error {
    color: #dc2626;
}
/* ===== Extracted from Blade templates ===== */
.page-hero-media-gallery {
    background-image: url('https://images.pexels.com/photos/3846554/pexels-photo-3846554.jpeg?auto=compress&cs=tinysrgb&w=1200');
}

.page-hero-media-works {
    background-image: url('https://images.pexels.com/photos/373489/pexels-photo-373489.jpeg?auto=compress&cs=tinysrgb&w=1200');
}

.page-template-gallery {
    padding-top: 70px;
}

.works-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.works-gallery-card {
    position: relative;
    border: 1px solid rgba(148, 163, 184, 0.35);
    border-radius: 20px;
    overflow: hidden;
    padding: 0;
    cursor: pointer;
    background: #e2e8f0;
    aspect-ratio: 1 / 1;
    box-shadow: 0 12px 26px -20px rgba(15, 23, 42, 0.45);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.works-gallery-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(37, 99, 235, 0), rgba(15, 23, 42, 0.22));
    opacity: 0;
    transition: opacity 0.25s ease;
}

.works-gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.works-gallery-card:hover {
    transform: translateY(-4px);
    border-color: rgba(37, 99, 235, 0.45);
    box-shadow: 0 18px 36px -20px rgba(37, 99, 235, 0.42);
}

.works-gallery-card:hover::after {
    opacity: 1;
}

.works-gallery-card:hover img {
    transform: scale(1.05);
}

body.works-gallery-open {
    overflow: hidden;
}

.works-gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2600;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.84);
    backdrop-filter: blur(6px);
    padding: 42px;
}

.works-gallery-lightbox.is-open {
    display: flex;
}

.works-gallery-lightbox-content {
    margin: 0;
    max-width: min(1060px, 100%);
    width: 100%;
    max-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.works-gallery-lightbox-content img {
    width: auto;
    max-width: 100%;
    max-height: calc(100vh - 170px);
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.4);
    box-shadow: 0 24px 52px -22px rgba(15, 23, 42, 0.8);
}

.works-gallery-lightbox-content figcaption {
    color: #f1f5f9;
    font-size: 14px;
    text-align: center;
}

.works-gallery-lightbox-close {
    position: absolute;
    top: 16px;
    right: 18px;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    background: rgba(15, 23, 42, 0.72);
    color: #e2e8f0;
    font-size: 26px;
    line-height: 1;
}

.works-gallery-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.45);
    background: rgba(15, 23, 42, 0.72);
    color: #f8fafc;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
}

.works-gallery-lightbox-nav.prev {
    left: 16px;
}

.works-gallery-lightbox-nav.next {
    right: 16px;
}

.stages-overview-section {
    min-height: 100vh;
    padding: clamp(56px, 8vw, 88px) clamp(16px, 5vw, 56px);
    background: linear-gradient(160deg, #f8fbff 0%, #eef4ff 50%, #e8f0ff 100%);
    display: flex;
    align-items: center;
}

.stages-overview-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

.stages-overview-title {
    text-align: center;
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
}

.stages-overview-subtitle {
    text-align: center;
    font-size: clamp(14px, 2vw, 17px);
    color: #334155;
    margin-bottom: clamp(24px, 3vw, 34px);
}

.stages-overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 14px;
}

.stages-overview-card {
    min-height: 170px;
    border-radius: 20px;
    background: linear-gradient(160deg, #ffffff 0%, #f6f9ff 100%);
    border: 1px solid rgba(37, 99, 235, 0.16);
    box-shadow: 0 16px 36px -28px rgba(30, 41, 59, 0.45);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.stages-overview-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 16px;
}

.stages-overview-icon {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: #dbeafe;
    color: #1d4ed8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

.stages-overview-number {
    font-size: 13px;
    font-weight: 700;
    color: #1d4ed8;
    padding: 4px 10px;
    border-radius: 999px;
    background: #eff6ff;
    border: 1px solid rgba(59, 130, 246, 0.22);
}

.stages-overview-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
    padding: 16px;
    min-height: 75px;
}

.stages-overview-media {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 0 0 14px 14px;
    overflow: hidden;
    background: #dbeafe;
}

.stages-overview-media img,
.stages-overview-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.stages-overview-card-desc {
    margin: 0;
    color: #334155;
    font-size: 14px;
    line-height: 1.45;
    display: -webkit-box;
    line-clamp: 4;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.services-stage-block {
    align-items: flex-end;
}

.services-stage-bottom {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 80px 0 44px;
    background: linear-gradient(to top, rgba(2, 6, 23, 0.92) 0%, rgba(2, 6, 23, 0.72) 38%, rgba(2, 6, 23, 0) 100%);
}

.services-stage-bottom-inner {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}

.services-stage-bottom .stage-title {
    margin-bottom: 16px;
}

.services-stage-bottom .stage-desc {
    max-width: 70ch;
}

.stage-details-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
    padding: 12px 22px;
    border-radius: 999px;
    border: 1px solid rgba(191, 219, 254, 0.7);
    background: rgba(37, 99, 235, 0.18);
    color: #eff6ff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
}

.stage-details-btn:hover,
.stage-details-btn:focus-visible {
    background: rgba(37, 99, 235, 0.32);
    border-color: rgba(191, 219, 254, 1);
    transform: translateX(4px);
}

.stage-details-btn.is-disabled {
    opacity: 0.65;
    pointer-events: none;
}

.services-showcase-section {
    width: 100%;
    padding: 96px 56px;
    background: #0b1120;
}

.services-showcase-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.services-showcase-title {
    color: #f8fafc;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 40px;
}

.services-showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
}

.services-showcase-card {
    position: relative;
    min-height: 330px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    border: 1px solid rgba(148, 163, 184, 0.2);
    isolation: isolate;
    background: #0f172a;
}

.services-showcase-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.services-showcase-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.8) brightness(0.8);
    transform: scale(1.01);
}

.services-showcase-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.35s ease;
    filter: saturate(1.05) brightness(0.82);
}

.services-showcase-card.has-video-frame .services-showcase-video {
    opacity: 1;
}

.services-showcase-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.12) 0%, rgba(15, 23, 42, 0.85) 100%);
}

.services-showcase-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 28px 26px;
}

.services-showcase-content h3 {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 10px;
    color: #fff;
}

.services-showcase-content p {
    color: rgba(226, 232, 240, 0.95);
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 18px;
    max-width: 62ch;
}

.services-showcase-link {
    display: inline-flex;
    align-items: center;
    font-size: 15px;
    font-weight: 700;
    color: #93c5fd;
    transition: transform 0.2s ease, color 0.2s ease;
}

.services-showcase-card:hover .services-showcase-link,
.services-showcase-card:focus-visible .services-showcase-link {
    color: #bfdbfe;
    transform: translateX(4px);
}

.admin-layout {
    background: #f1f5f9;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.admin-layout .sidebar-scroll {
    overflow-y: auto;
    scrollbar-width: thin;
}

.admin-layout .sidebar-scroll::-webkit-scrollbar {
    width: 4px;
}

.admin-layout .sidebar-scroll::-webkit-scrollbar-track {
    background: #e2e8f0;
    border-radius: 4px;
}

.admin-layout .sidebar-scroll::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

.admin-layout .stat-card {
    transition: transform 0.15s ease, box-shadow 0.2s;
}

.admin-layout .stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.02);
}

.progress-76 {
    width: 76%;
}

.tab-btn.active {
    background: #fff;
    color: #4f46e5;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .10), 0 1px 2px -1px rgba(0, 0, 0, .06);
    font-weight: 600;
}

.tab-btn {
    transition: background .15s, color .15s;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.contacts-quill-editor .ql-toolbar,
.service-quill-editor .ql-toolbar,
.service-audience-quill-editor .ql-toolbar {
    border: 0;
    border-bottom: 1px solid #e2e8f0;
    background: #f8fafc;
}

.contacts-quill-editor .ql-container,
.service-quill-editor .ql-container,
.service-audience-quill-editor .ql-container {
    border: 0;
    font-size: 14px;
}

.contacts-quill-editor .ql-editor,
.service-quill-editor .ql-editor,
.service-audience-quill-editor .ql-editor {
    min-height: 220px;
}

.backend-admin-template .sidebar-transition {
    transition: transform 0.25s ease-in-out, opacity 0.2s;
}

.backend-admin-template .overlay-transition {
    transition: opacity 0.2s ease;
}

.backend-admin-template .menu-item-active {
    background-color: #eef2ff;
    border-left: 3px solid #4f46e5;
    color: #1e40af;
}

.backend-orders-chart {
    max-height: 220px;
    width: 100%;
}

.backend-quill-container {
    border: none;
    border-bottom: 1px solid #e2e8f0;
}

.backend-quill-editor {
    min-height: 180px;
    font-size: 14px;
}

.backend-red-text {
    color: rgb(230, 0, 0);
}

@media (max-width: 1200px) {
    .services-showcase-section {
        padding: 80px 24px;
    }

    .services-showcase-title {
        font-size: 40px;
        margin-bottom: 28px;
    }
}

@media (max-width: 1000px) {
    .works-gallery-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
    }

    .stages-overview-section {
        min-height: auto;
        padding: 56px 24px;
    }

    .stages-overview-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .services-showcase-grid {
        grid-template-columns: 1fr;
    }

    .services-showcase-card {
        min-height: 280px;
    }

    .services-showcase-content h3 {
        font-size: 24px;
    }
}

@media (max-width: 600px) {
    .works-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .works-gallery-lightbox {
        padding: 24px 12px;
    }

    .works-gallery-lightbox-nav {
        width: 42px;
        height: 42px;
        font-size: 28px;
    }

    .works-gallery-lightbox-nav.prev {
        left: 8px;
    }

    .works-gallery-lightbox-nav.next {
        right: 8px;
    }

    .works-gallery-lightbox-content img {
        max-height: calc(100vh - 140px);
    }

    .stages-overview-grid {
        grid-template-columns: 1fr;
    }

    .stages-overview-card {
        min-height: 0;
    }
}
