﻿*,
*::before,
*::after {
    box-sizing: border-box
}

:root {
    --primary: #2563EB;
    --primary-hover: #1D4ED8;
    --dark: #1A1A1A;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --hero-bg: #F5F7F9;
    --sky-teal: #1B4B5A;
    --sky-blue: #2563EB;
    --sky-blue-light: #E0F2FE;
    --sky-purple: #B266FF;
    --sky-purple-hover: #93F;
    --slate-dark: #415A63;
    --brass: #A68A56;
    --charcoal: #2D2D2A;
    --linen: #F5F5F0;
    --steel-blue: #4A6D88
}

h1,
h2,
h3,
h4,
h5,
h6,
.sky-logo-text {
    font-family: "Unbounded", sans-serif;
}

body {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 50%, #f0fdf4 100%);
    background-attachment: fixed;
    color: var(--dark);
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
    position: relative;
}


body::before,
body::after {
    content: "";
    position: fixed;
    width: 60vw;
    height: 60vh;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.35;
}

body::before {
    top: -10vh;
    right: -10vw;
    background: radial-gradient(circle, #A7F3D0 0%, rgba(255, 255, 255, 0) 70%);
}

body::after {
    bottom: -10vh;
    left: -10vw;
    background: radial-gradient(circle, #BAE6FD 0%, rgba(255, 255, 255, 0) 70%);
}

html {
    scroll-padding-top: 90px;
    scroll-behavior: smooth
}

.accordion-content {
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
    max-height: 0;
    opacity: 1;
    overflow: hidden
}

.accordion-content.active {
    max-height: 500px;
    opacity: 1
}

.accordion-icon {
    transition: transform 0.3s ease
}

.accordion-icon.active {
    transform: rotate(45deg)
}



@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}


.header-logo-accent {
    color: #2c9288;
}


.estimate-conversion-section {
    padding: 4rem 1rem;
    background: linear-gradient(180deg, #ede9e1 0%, transparent 100%);
}

.estimate-conversion-container {
    max-width: 52rem;
    margin: 0 auto;
    background: linear-gradient(145deg, #1b4b5a, #283b4c, #3a2c4a);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 1.5rem;
    padding: 3.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}


.estimate-badge {
    position: absolute;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #ffffff;
    box-shadow: 0 0 20px rgba(0, 240, 192, 0.3);
    animation: badgeFloat 6s ease-in-out infinite;
    z-index: 5;
    pointer-events: none;
}

.badge-top-left {
    top: 2rem;
    left: 2rem;
    background: linear-gradient(135deg, #0ea5e9 0%, #2563eb 100%);
    box-shadow: 0 0 25px rgba(37, 99, 235, 0.4);
}

.badge-bottom-right {
    bottom: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, #00f0c0 0%, #10b981 100%);
    box-shadow: 0 0 25px rgba(0, 240, 192, 0.4);
    animation-delay: -3s;
}

@keyframes badgeFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

@media (max-width: 768px) {
    .estimate-badge {
        display: none;
    }
}


.estimate-conversion-container::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(96, 165, 250, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.estimate-conversion-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}


.estimate-arrow {
    position: absolute;
    width: 140px;
    height: auto;
    pointer-events: none;
    opacity: 0.95;
    display: none;
    z-index: 10;
}

@media (min-width: 768px) {
    .estimate-arrow {
        display: block;
        width: 180px;
    }
}

@media (min-width: 1200px) {
    .estimate-arrow {
        width: 220px;
    }
}

.arrow-left {
    left: -120px;
    bottom: -20px;
    transform: rotate(-10deg);
    animation: floatLeft 5s ease-in-out infinite;
    transition: left 0.4s ease, bottom 0.4s ease;
}

.arrow-right {
    right: -120px;
    top: 15px;
    transform: rotate(10deg);
    animation: floatRight 5s ease-in-out infinite;
    transition: right 0.4s ease, top 0.4s ease;
}

.estimate-conversion-container:hover .arrow-left {
    left: -130px;
}

.estimate-conversion-container:hover .arrow-right {
    right: -130px;
}

@keyframes floatLeft {

    0%,
    100% {
        transform: rotate(-10deg) translate(0, 0);
    }

    50% {
        transform: rotate(-7deg) translate(-8px, -5px);
    }
}

@keyframes floatRight {

    0%,
    100% {
        transform: rotate(10deg) translate(0, 0);
    }

    50% {
        transform: rotate(7deg) translate(8px, 5px);
    }
}


.estimate-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.6;
    animation: dotPulse 4s ease-in-out infinite;
}

.dot-1 {
    top: 15%;
    left: 10%;
    background-color: #0ea5e9;
    box-shadow: 0 0 10px #0ea5e9;
    animation: dotMove1 12s linear infinite;
}

.dot-2 {
    top: 35%;
    right: 15%;
    background-color: #00f0c0;
    box-shadow: 0 0 10px #00f0c0;
    animation: dotMove2 15s linear infinite;
}

.dot-3 {
    bottom: 20%;
    left: 20%;
    background-color: #00f0c0;
    box-shadow: 0 0 10px #00f0c0;
    width: 4px;
    height: 4px;
    animation: dotMove3 10s linear infinite;
}

.dot-4 {
    bottom: 10%;
    right: 25%;
    background-color: #0ea5e9;
    box-shadow: 0 0 10px #0ea5e9;
    animation: dotMove2 18s linear reverse infinite;
}

.dot-5 {
    top: 50%;
    left: 50%;
    background-color: #ffffff;
    opacity: 0.3;
    box-shadow: 0 0 8px #ffffff;
    width: 3px;
    height: 3px;
    animation: dotMove1 14s linear reverse infinite;
}

.dot-6 {
    top: 70%;
    left: 15%;
    background-color: #0ea5e9;
    box-shadow: 0 0 12px #0ea5e9;
    animation: dotMove3 20s linear reverse infinite;
}

.dot-7 {
    top: 25%;
    right: 25%;
    background-color: #00f0c0;
    box-shadow: 0 0 10px #00f0c0;
    animation: dotMove2 25s linear infinite;
}

@keyframes dotMove1 {
    0% {
        transform: translate(0, 0);
    }

    33% {
        transform: translate(30px, 20px);
    }

    66% {
        transform: translate(-20px, 40px);
    }

    100% {
        transform: translate(0, 0);
    }
}

@keyframes dotMove2 {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-40px, -30px);
    }

    100% {
        transform: translate(0, 0);
    }
}

@keyframes dotMove3 {
    0% {
        transform: translate(0, 0);
    }

    40% {
        transform: translate(25px, -50px);
    }

    80% {
        transform: translate(-30px, 10px);
    }

    100% {
        transform: translate(0, 0);
    }
}

@keyframes dotPulse {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.8;
    }
}

@media (min-width: 768px) {
    .estimate-conversion-container {
        padding: 3rem 4rem;
    }
}

.estimate-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.estimate-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 auto;
    line-height: 1.2;
    letter-spacing: -0.02em;
    max-width: 600px;
}

.text-highlight {
    color: #00f0c0;
    background: linear-gradient(to right, #00f0c0, #10b981);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

@media (min-width: 768px) {
    .estimate-title {
        font-size: 2.5rem;
    }
}

.estimate-subtitle {
    color: #f1f5f9;
    font-size: 1.125rem;
    line-height: 1.6;
    max-width: 38rem;
    margin: 0 auto;
    opacity: 0.9;
}

.estimate-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.estimate-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #00f0c0 0%, #2c9288 50%, #1e6b63 100%);
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 700;
    padding: 1.25rem 3.5rem;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 20px rgba(0, 240, 192, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-arrow {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.estimate-btn:hover .btn-arrow {
    transform: translateX(5px);
}


.estimate-btn::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.3) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: rotate(30deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -60%;
    }

    30% {
        left: 140%;
    }

    100% {
        left: 140%;
    }
}

.estimate-btn:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 15px 35px rgba(0, 240, 192, 0.4);
    filter: brightness(1.1);
}

.estimate-btn:active {
    transform: translateY(-2px) scale(0.98);
}


.estimate-trust-triggers {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.trust-trigger {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #cbd5e1;
    /* slate-300 */
    font-size: 0.875rem;
    font-weight: 500;
}

.trust-trigger i {
    color: #00f0c0;
    font-size: 1rem;
    filter: drop-shadow(0 0 5px rgba(0, 240, 192, 0.4));
}

@media (max-width: 480px) {
    .estimate-trust-triggers {
        flex-direction: column;
        gap: 0.75rem;
        align-items: flex-start;
    }
}


.ecosystem-section {
    padding: 5rem 0;
    background: transparent
}

.ecosystem-container {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem
}

@media (min-width: 640px) {
    .ecosystem-container {
        padding-left: 1.5rem;
        padding-right: 1.5rem
    }
}

@media (min-width: 1024px) {
    .ecosystem-container {
        padding-left: 2rem;
        padding-right: 2rem
    }
}

.ecosystem-header {
    text-align: center;
    margin-bottom: 4rem;
}

.ecosystem-title {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    color: #1A1A1A;
}

.title-red-grad {
    background: linear-gradient(90deg, #EC6D51, #F97316, #EC6D51);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: flowGradient 4s linear infinite;
}

.title-multi-grad {
    background: linear-gradient(90deg, #F97316 0%, #FACC15 40%, #4DB8B0 100%, #F97316 120%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block !important;
    font-size: 1.25em;
    margin-top: -0.1em;
    animation: flowGradient 6s linear infinite;
}

@keyframes flowGradient {
    to {
        background-position: 200% center;
    }
}

.ecosystem-subtitle {
    font-size: 1.125rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .ecosystem-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .ecosystem-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.ecosystem-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    text-align: left;
    z-index: 1;
    animation: floatBob 6s ease-in-out infinite;
    animation-delay: var(--float-delay, 0s);
}

@keyframes floatBob {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}


.ecosystem-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.6),
            transparent);
    transition: all 0.6s;
    z-index: 2;
}

.ecosystem-card:hover::before {
    left: 150%;
}

.ecosystem-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #F97316, #FACC15, #4DB8B0);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transform: translateX(-50%);
}

.ecosystem-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.ecosystem-card:hover::after {
    width: 100%;
}

.ecosystem-card:hover .ecosystem-icon-box {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.ecosystem-icon-box {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}


.bg-grad-1 {
    background: linear-gradient(135deg, #EC6D51 0%, #F97316 100%);
}

.bg-grad-2 {
    background: linear-gradient(135deg, #F97316 0%, #FACC15 100%);
}

.bg-grad-3 {
    background: linear-gradient(135deg, #FACD36 0%, #4DB8B0 100%);
}

.bg-grad-4 {
    background: linear-gradient(135deg, #D66D49 0%, #F85A40 100%);
}

.bg-grad-5 {
    background: linear-gradient(135deg, #B5B65A 0%, #879C56 100%);
}

.bg-grad-6 {
    background: linear-gradient(135deg, #4CB8B0 0%, #29A59A 100%);
}

.ecosystem-card-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #111827;
    margin: 0;
    line-height: 1.3;
}

.ecosystem-card-text {
    color: #4B5563;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
}



.work-process-section {
    padding: 100px 0;
    background: transparent;
    position: relative;
    overflow: hidden
}


.work-process-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 10% 20%, rgba(61, 187, 176, 0.08) 0%, transparent 50%), radial-gradient(circle at 90% 80%, rgba(37, 99, 235, 0.08) 0%, transparent 50%);
    pointer-events: none
}

.work-process-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1
}


.work-process-header {
    text-align: center;
    margin-bottom: 60px
}

.work-process-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    border: none;
    font-family: "Unbounded", sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0;
    margin-bottom: 24px;
    position: relative;

    background: linear-gradient(90deg, #334155 0%, #64748B 40%, #CBD5E1 50%, #64748B 60%, #334155 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: flowGradient 6s linear infinite;
}

.work-process-eyebrow::before {
    content: "";
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #334155, #64748B);
}

.work-process-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.1
}

.work-process-subtitle {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.6
}

.work-process-proof {
    margin-top: 24px;
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap
}

.work-process-proof-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--dark);
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px)
}

.work-process-proof-item i {
    color: #6fe8dd
}


.work-process-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    grid-auto-rows: auto;
    align-items: stretch;
    gap: 20px;
    margin-bottom: 56px
}


.wp-tile {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4/3;
    height: auto;
    min-height: 0;
    cursor: pointer;
    background: #000;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
    transition: box-shadow 0.4s ease, transform 0.4s ease, border-color 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.14);
    z-index: 1
}

.wp-tile:hover {
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.3);
    transform: translatey(-6px);
    border-color: rgba(134, 244, 235, 0.55);
    z-index: 5
}


.wp-tile__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), filter 0.5s ease;
    filter: brightness(1.08) saturate(1.08)
}

.wp-tile:hover .wp-tile__img {
    transform: scale(1.05);
    filter: brightness(1.14) saturate(1.12);
}


.wp-tile__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 35%, transparent 75%);
    transition: opacity 0.5s ease;
    display: none
}


.wp-tile__caption {
    display: inline-block;
    max-width: 90%;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(8, 20, 30, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transform: translatey(20px);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.4s ease
}

.wp-tile:hover .wp-tile__caption {
    transform: translatey(0);
    opacity: 1
}

.wp-tile__caption h4 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 6px;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.62)
}

.wp-tile__caption p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.5;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5)
}


.wp-tile__badge {
    position: absolute;
    top: 20px;
    left: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.84);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.95);
    color: #0f1923;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 99px;
    letter-spacing: 0.04em;
    transition: all 0.3s ease;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18)
}

.wp-tile:hover .wp-tile__badge {
    background: rgba(255, 255, 255, 0.95);
    color: #0f1923;
    border-color: rgba(255, 255, 255, 1);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2)
}


.wp-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    transition: border-color 0.4s ease;
    pointer-events: none;
    z-index: 10
}

.wp-tile:hover::after {
    border-color: rgba(134, 244, 235, 0.68)
}


.work-process-cta {
    margin-top: 16px
}

.work-process-cta-inner {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 32px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap
}

.work-process-cta-stats {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap
}

.wpc-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 28px
}

.wpc-stat__value {
    font-size: 2rem;
    font-weight: 900;
    color: #1A1A1A;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 4px
}

.wpc-stat__label {
    font-size: 0.8rem;
    color: rgba(26, 26, 26, 0.6);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center
}

.wpc-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(26, 26, 26, 0.1);
    flex-shrink: 0
}

.work-process-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #3dbbb0 0%, #2c9288 50%, #1e6b63 100%);
    color: #fff;
    border: none;
    border-radius: 14px;
    font-size: 1.05rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 8px 28px rgba(44, 146, 136, 0.45);
    white-space: nowrap;
    flex-shrink: 0
}

.work-process-cta-btn:hover {
    transform: translatey(-3px) scale(1.03);
    box-shadow: 0 16px 40px rgba(44, 146, 136, 0.6)
}

.work-process-cta-btn:active {
    transform: translatey(0) scale(0.99)
}

.work-process-cta-btn i {
    animation: boltPulse 1.8s ease-in-out infinite
}



@media (max-width: 1024px) {
    .work-process-bento {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width: 768px) {
    .work-process-section {
        padding: 64px 0
    }

    .work-process-bento {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: auto;
        align-items: start;
        gap: 10px
    }

    .work-process-cta-inner {
        flex-direction: column;
        padding: 24px 20px;
        text-align: center
    }

    .wpc-stat {
        padding: 0 16px
    }

    .work-process-cta-btn {
        width: 100%;
        justify-content: center;
        white-space: normal;
        text-align: center
    }

    .work-process-proof-item {
        font-size: 0.78rem;
        padding: 9px 14px
    }

    .wp-tile__caption {
        transform: translatey(0);
        opacity: 1
    }

    .work-process-bento .wp-tile:last-child {
        grid-column: 1 / -1;
        aspect-ratio: 4 / 3;
    }
}

@media (max-width: 480px) {
    .work-process-section {
        padding: 48px 0
    }

    .work-process-bento {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .wp-tile {
        aspect-ratio: 1 / 1;
        border-radius: 16px;
    }

    .work-process-bento .wp-tile:last-child {
        grid-column: 1 / -1;
        aspect-ratio: 16 / 9;
    }

    .wp-tile__overlay {
        padding: 12px;
    }

    .wp-tile__caption {
        padding: 8px 10px;
        border-radius: 10px;
    }

    .wp-tile__caption h4 {
        font-size: 0.85rem;
        margin-bottom: 2px;
    }

    .wp-tile__caption p {
        font-size: 0.65rem;
        line-height: 1.2;
    }

    .wp-tile__badge {
        top: 10px;
        left: 10px;
        font-size: 0.6rem;
        padding: 4px 10px;
    }

    .work-process-header {
        margin-bottom: 36px
    }

    .work-process-cta-stats {
        gap: 16px;
        justify-content: center
    }

    .wpc-stat-divider {
        display: none
    }
}


.why-us-section {
    padding: 5rem 0;
    background-color: transparent;
    color: var(--dark);
}

.why-us-container {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem
}

.why-us-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 4rem;
    text-align: center
}

@media (min-width: 768px) {
    .why-us-title {
        font-size: 3rem;
    }
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 3rem;
}

@media (min-width: 768px) {
    .why-us-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr))
    }
}

.why-us-item-number {
    color: #2c9288;
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    font-weight: 900;
    opacity: 0.8
}

.why-us-item-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.why-us-item-text {
    color: var(--gray-500);
}

.contact-section {
    background-color: transparent;
}

.contact-flex-wrapper {
    display: flex;
    flex-direction: column
}

@media (min-width: 1024px) {
    .contact-flex-wrapper {
        flex-direction: row;
        min-height: 600px
    }
}

.contact-form-side {
    width: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(4px);
    position: relative;
    z-index: 10;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03)
}

@media (min-width: 768px) {
    .contact-form-side {
        padding: 4rem;
    }
}

@media (min-width: 1024px) {
    .contact-form-side {
        width: 50%
    }
}

.contact-form-container {
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
    width: 100%
}

.contact-title {
    font-size: 1.875rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .contact-title {
        font-size: 2.25rem;
    }
}

.contact-subtitle {
    color: var(--gray-500);
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column
}

.form-label {
    display: block;
    font-size: 0.875rem;

    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 0.25rem;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    border: 1px solid var(--gray-300);
    background-color: #fff;
    outline: none;
    transition: all 0.2s
}

.form-input:focus {
    box-shadow: 0 0 0 2px var(--primary);
    border-color: var(--primary)
}

.form-submit {
    width: 100%;
    background: linear-gradient(135deg, #3dbbb0 0%, #2c9288 50%, #1e6b63 100%);
    color: #fff;
    padding: 1rem 0;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 15px -3px rgba(44, 146, 136, 0.4)
}

.form-submit:hover {
    background: linear-gradient(135deg, #4dcbc0 0%, #36a69b 50%, #257d74 100%);
}

.contact-info-list {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--gray-700)
}

.contact-info-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2c9288;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.contact-info-text.bold {
    font-weight: 700;
    font-size: 1.125rem;
}


.footer-main {
    background-color: var(--dark);
    color: var(--gray-400);
    padding: 3rem 0;
    border-top: 1px solid var(--gray-800)
}

.footer-container {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem
}

.footer-top {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .footer-top {
        flex-direction: row
    }
}

.footer-logo {
    color: #fff;
    font-weight: 700;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo-text,
.footer-logo-text .header-logo-accent {
    font-family: "Montserrat", sans-serif;
}

.footer-logo-img {
    height: 2rem;
    object-fit: contain
}

.footer-nav {
    display: flex;
    gap: 1.5rem;

}

.footer-nav-link {
    transition: color 0.2s;
    text-decoration: none;
    color: inherit
}

.footer-nav-link:hover {
    color: #fff
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-800);
    font-size: 0.875rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.75rem;
    align-items: flex-start;
}

@media (min-width: 768px) {
    .footer-bottom {
        text-align: left;
        flex-direction: row;
        align-items: center;
        gap: 0;
    }
}

.footer-copyright-block {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.footer-inn {
    font-size: 0.75rem;
    color: var(--gray-500);
    opacity: 0.75;
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
    align-items: center;
}

.footer-disclaimer {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.68rem;
    color: var(--gray-500);
    opacity: 0.6;
    line-height: 1.5;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-disclaimer {
        text-align: left;
    }
}

.footer-legal-link {
    text-decoration: underline;
    transition: color 0.2s;
    color: inherit
}

.footer-legal-link:hover {
    color: #fff
}


.modal-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(10, 18, 26, 0.82);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.modal-overlay.active {
    display: flex;
    opacity: 1
}

.modal-window {
    background: #ffffff;
    width: 100%;
    max-width: 32rem;
    border-radius: 2rem;
    padding: 2.5rem;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.15);
    color: var(--dark);
}

.modal-overlay.active .modal-window {
    transform: scale(1);
    opacity: 1
}

.modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    border-radius: 9999px;
    border: 1px solid var(--gray-100);
    background: var(--gray-50);
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    color: var(--dark);
    background-color: var(--gray-100);
}

.modal-title {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    color: var(--dark);
}

.modal-subtitle {
    color: var(--gray-500);
    font-size: 0.9375rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.modal-form-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #1B4B5A;
    margin-bottom: 0.50rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.modal-form-input {
    width: 100%;
    padding: 1rem 1.25rem;
    border-radius: 1rem;
    background: #ffffff;
    border: 1px solid var(--gray-200);
    color: var(--dark);
    outline: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
}

.modal-form-input:focus {
    background: #ffffff;
    border-color: #2c9288;
    box-shadow: 0 0 12px rgba(44, 146, 136, 0.15);
}

.modal-form-submit {
    width: 100%;
    background: linear-gradient(90deg, #2a809a 0%, #2c9288 100%);
    color: #ffffff;
    padding: 1.25rem 0;
    border-radius: 999px;
    font-weight: 800;
    font-size: 1.125rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(62, 188, 227, 0.623);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.modal-form-submit span {
    font-size: 1.4rem;
    transition: transform 0.3s ease;
}

.modal-form-submit:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 240, 192, 0.5);
    filter: brightness(1.1);
}

.modal-form-submit:hover span {
    transform: translateX(5px);
}

.work-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(10, 12, 16, 0.78);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 300;
}

.work-lightbox.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.work-lightbox__frame {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.work-lightbox__stage {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.work-lightbox__img {
    max-width: min(92vw, 980px);
    max-height: 82vh;
    border-radius: 16px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
    object-fit: contain;
    background: #0f1115;
}

.work-lightbox__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(10, 12, 16, 0.45);
    color: rgba(255, 255, 255, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    opacity: 0.6;
    transition: transform 0.2s ease, background 0.2s ease, opacity 0.2s ease;
    z-index: 2;
}

.work-lightbox__close:hover {
    transform: scale(1.05);
    background: rgba(10, 12, 16, 0.7);
    color: #fff;
    opacity: 1;
}

.work-lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(10, 12, 16, 0.45);
    color: rgba(255, 255, 255, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    opacity: 0.55;
    transition: transform 0.2s ease, background 0.2s ease, opacity 0.2s ease, color 0.2s ease;
    z-index: 2;
}

.work-lightbox__nav:hover {
    transform: translateY(-50%) scale(1.05);
    background: rgba(10, 12, 16, 0.7);
    color: #fff;
    opacity: 1;
}

.work-lightbox__nav--prev {
    left: 12px;
}

.work-lightbox__nav--next {
    right: 12px;
}

@media (max-width: 640px) {
    .work-lightbox {
        padding: 0.9rem;
    }

    .work-lightbox__frame {
        align-items: flex-start;
        padding-top: 10vh;
    }

    .work-lightbox__img {
        max-width: 96vw;
        max-height: 70vh;
        border-radius: 12px;
    }

    .work-lightbox__close {
        top: 8px;
        right: 8px;
        width: 40px;
        height: 40px;
        opacity: 0.5;
    }

    .work-lightbox__nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        opacity: 0.45;
    }

    .work-lightbox__nav--prev {
        left: 8px;
    }

    .work-lightbox__nav--next {
        right: 8px;
    }
}

#mobile-menu.active {
    display: flex !important
}


.sky-header {
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translatex(-50%);
    width: 90%;
    max-width: 1280px;
    z-index: 50;
    transition: all 0.3s
}

.sky-header-container {
    background-color: #fff;
    border-radius: 9999px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08)
}

.sky-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
    padding: 0 2rem
}

.header-logo-img {
    height: 3.5rem;
    object-fit: contain
}

.sky-nav {
    display: flex;
    align-items: center;
    gap: 2rem
}

.sky-nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-800);
    text-decoration: none;
    transition: color 0.2s;
    display: flex;
    align-items: center
}

.sky-nav-link:hover {
    color: var(--sky-blue)
}

.sky-nav-dropdown-container {
    position: relative;
    cursor: pointer
}

.sky-nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translatex(-50%) translatey(10px);
    background: #fff;
    border-radius: 12px;
    padding: 0.5rem;
    min-width: 200px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s
}

.sky-nav-dropdown-container:hover .sky-nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translatex(-50%) translatey(0)
}

.sky-nav-dropdown a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--dark);
    text-decoration: none;
    font-size: 14px;
    border-radius: 8px;
    transition: background 0.2s
}

.sky-nav-dropdown a:hover {
    background: var(--sky-blue-light);
    color: var(--sky-blue)
}

.sky-header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem
}

.sky-phone {
    font-weight: 700;
    color: var(--dark);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s
}

.sky-phone:hover {
    color: var(--sky-blue)
}

.sky-hero {
    position: relative;
    padding-top: 7rem;
    padding-bottom: 3rem;
    background: linear-gradient(to bottom, transparent 0%, transparent 100px, #ede9e1 280px, #ede9e1 100%);
    overflow: hidden;
    min-height: 900px;
    display: flex;
    flex-direction: column;
    align-items: center
}

.sky-hero-bg-blobs {
    position: absolute;
    top: -100px;
    left: 20%;
    width: 60vw;
    height: 70vh;
    background: radial-gradient(circle, rgba(167, 243, 208, 1) 0%, rgba(186, 230, 253, 1) 50%, rgba(255, 255, 255, 0) 70%);
    opacity: 0.5;
}

.sky-hero-master-img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    transform: none !important;
    object-fit: cover !important;
    object-position: center 230% !important;
    z-index: 0 !important;
    mix-blend-mode: normal !important;
    -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 100%) !important;
    mask-image: linear-gradient(to bottom, black 40%, transparent 100%) !important;
}

.sky-hero-bg-arrow-decor {
    position: absolute;
    top: 5%;
    right: 15%;
    font-size: 600px;
    color: rgba(37, 99, 235, 0.22);
    transform: rotate(-15deg);
    z-index: 0
}

.sky-hero-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center
}

.sky-floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 1.5rem 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    z-index: 5;
    animation: fadeInUp 0.8s ease-out forwards
}

.card-1 {
    top: 10%;
    left: 0;
    animation: fadeInUp 0.8s ease-out forwards, float 3s ease-in-out infinite 0.8s
}

.card-2 {
    top: 40%;
    left: -5%;
    animation: fadeInUp 0.8s ease-out forwards, float 3.5s ease-in-out infinite 1s
}

.card-3 {
    top: 25%;
    right: 0;
    animation: fadeInUp 0.8s ease-out forwards, float 4.5s ease-in-out infinite 1.2s
}

.sky-floating-card .value {
    font-size: 2rem;
    font-weight: 800;
    color: #0b3142;
    line-height: 1.1
}

.sky-floating-card .label {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-top: 0.5rem
}

.sky-hero-content-wrapper {
    margin-top: 380px;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1140px;
    padding-right: 20px;
}

.sky-offer-bubble {
    background: linear-gradient(145deg, #1b4b5a, #283b4c, #3a2c4a);
    border-radius: 40px 40px 0 0;
    padding: 1.2rem 3rem 0.6rem 3rem;
    display: inline-block;
    position: relative;
    z-index: 2;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: -2px;
    top: 5px;
}

.sky-offer-bubble::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: -40px;
    width: 40px;
    height: 40px;
    background: transparent;
    border-bottom-right-radius: 40px;
    box-shadow: 20px 0 0 0 #1c6180;
    display: none;
}

.sky-offer-bubble h1 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
    line-height: 1.1;
    text-align: center;
}

.sky-form-panel {
    border-radius: 40px 40px 40px 40px;
    padding: 4.5rem 1rem 0.5rem;
    width: 100%;
    max-width: 1140px;
    position: relative;
    z-index: 1;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    background: linear-gradient(145deg, #1b4b5a, #283b4c, #3a2c4a)
}

.sky-form-subheading {
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    font-weight: 400
}

.sky-hero-form {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 0.5rem
}

.sky-hero-form .form-result {
    flex: 1 1 100%;
    width: 100%
}

@media (max-width: 1024px) {
    .sky-hero-form {
        gap: 10px;
    }

    .sky-input {
        padding: 1.25rem 1rem;
    }

    .sky-btn-primary {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }
}

.sky-input {
    flex: 1 1 200px;
    min-width: 150px;
    background: #fff;
    border: none;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
    outline: none;
    transition: all 0.2s
}

.sky-input:focus {
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.3)
}

.sky-btn-primary {
    flex: 0 1 auto;
    background: linear-gradient(135deg, #3dbbb0 0%, #2c9288 50%, #1e6b63 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.sky-btn-primary:hover {
    background: linear-gradient(135deg, #4dcbc0 0%, #36a69b 50%, #257d74 100%);
    transform: translatey(-2px);
    box-shadow: 0 10px 20px rgba(44, 146, 136, 0.4)
}

.sky-btn-primary:active {
    transform: translatey(1px);
    box-shadow: 0 5px 10px rgba(44, 146, 136, 0.3)
}

@media (max-width: 1024px) {
    .sky-hero-master-img {
        height: 900px;
        top: -100px;
        left: 50%;
        transform: translateX(-50%) scale(1.02)
    }

    .sky-offer-bubble h1 {
        font-size: 2.5rem
    }

    .sky-hero-content-wrapper {
        margin-top: 400px
    }

    .sky-floating-card {
        display: none
    }

    .sky-nav {
        display: none
    }
}

@media (max-width: 768px) {
    .sky-hero-form {
        flex-direction: column
    }

    .sky-offer-bubble {
        border-radius: 40px;
        padding: 2rem;
        margin-bottom: -20px
    }

    .sky-form-panel {
        padding: 3rem 1.5rem 1.5rem;
        border-radius: 30px
    }

    .sky-offer-bubble h1 {
        font-size: 2rem
    }
}

.sky-form-footer {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem 1.5rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7)
}

.sky-checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    cursor: pointer;
    user-select: none
}

.sky-checkbox-label input[type="checkbox"] {
    flex-shrink: 0;
    width: 14px;
    height: 14px;
    accent-color: #2c9288;
    cursor: pointer
}

.sky-checkbox-link {
    color: #4CB8B0;
    text-decoration: underline;
    transition: color 0.2s
}

.sky-checkbox-link:hover {
    color: #7dd9d3
}

.programs-section {
    padding: 100px 0;
    background: #f8f9fc;
    overflow: hidden
}

.programs-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px
}


.programs-section-header {
    text-align: center;
    margin-bottom: 56px
}

.programs-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    border: none;
    font-family: "Unbounded", sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0;
    margin-bottom: 24px;
    position: relative;

    background: linear-gradient(90deg, #334155 0%, #64748B 40%, #CBD5E1 50%, #64748B 60%, #334155 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: flowGradient 6s linear infinite;
}

.programs-eyebrow::before {
    content: "";
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #334155, #64748B);
}

.programs-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    color: #0f1923;
    line-height: 1.1
}

.programs-subtitle {
    font-size: 1.125rem;
    color: #6B7280;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.6
}


.programs-switcher {
    display: flex;
    gap: 28px;
    align-items: stretch
}

@media (max-width: 991px) {
    .programs-switcher {
        flex-direction: column
    }
}

.programs-sidebar {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
    gap: 12px
}

@media (max-width: 991px) {
    .programs-sidebar {
        flex: 1;
        width: 100%;
        flex-direction: row;
        overflow-x: auto;
        padding: 8px 0 16px;
        -ms-overflow-style: none;
        scrollbar-width: none;
        gap: 10px
    }

    .programs-sidebar::-webkit-scrollbar {
        display: none
    }
}


.program-tab {
    position: relative;
    background: #fff;
    border: 1.5px solid #E5E7EB;
    border-radius: 20px;
    padding: 20px 20px 20px 16px;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex;
    align-items: flex-start;
    gap: 14px
}

@media (max-width: 991px) {
    .program-tab {
        flex: 0 0 210px;
        flex-direction: column;
        gap: 6px;
        padding: 16px
    }
}

.program-tab:hover {
    border-color: #1B4B5A;
    box-shadow: 0 8px 24px rgba(27, 75, 90, 0.12);
    transform: translatex(6px)
}

@media (max-width: 991px) {
    .program-tab:hover {
        transform: translatey(-6px)
    }
}

.program-tab.active {
    background: linear-gradient(135deg, #1B4B5A 0%, #0f2b36 100%);
    border-color: transparent;
    color: white;
    box-shadow: 0 16px 40px rgba(27, 75, 90, 0.35);
    transform: translatex(10px)
}

@media (max-width: 991px) {
    .program-tab.active {
        transform: translatey(-10px)
    }
}

.program-tab-title {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 4px;
    line-height: 1.2
}

.program-tab-subtitle {
    font-size: 0.85rem;
    color: #9CA3AF;
    font-weight: 500
}

.program-tab.active .program-tab-subtitle {
    color: rgba(255, 255, 255, 0.65)
}


.program-tab-arrow {
    margin-left: auto;
    color: #D1D5DB;
    font-size: 0.75rem;
    align-self: center;
    transition: transform 0.3s;
    flex-shrink: 0
}

.program-tab.active .program-tab-arrow {
    color: rgba(255, 255, 255, 0.5);
    transform: translatex(3px)
}

@media (max-width: 991px) {
    .program-tab-arrow {
        display: none
    }
}


.program-tab-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #FF6B6B, #FF4757);
    color: white;
    font-size: 9px;
    font-weight: 900;
    padding: 4px 9px;
    border-radius: 99px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    box-shadow: 0 4px 12px rgba(255, 71, 87, 0.35);
    z-index: 5;
    animation: pulseBadge 2.5s ease-in-out infinite
}

@keyframes pulseBadge {

    0%,
    100% {
        box-shadow: 0 4px 12px rgba(255, 71, 87, 0.35);
    }

    50% {
        box-shadow: 0 4px 20px rgba(255, 71, 87, 0.7);
    }
}


.programs-content {
    flex: 1;
    border-radius: 32px;
    position: relative;
    min-height: 620px;
    overflow: hidden;
    transition: background-color 0.5s ease;
    background: #1B4B5A
}


.program-image-wrapper {
    position: absolute;
    inset: 0;
    z-index: 1
}

.program-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
    transform-origin: center;
    filter: brightness(1.15);
}


.program-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(10, 20, 28, 0.65) 0%,
            rgba(10, 20, 28, 0.25) 50%,
            rgba(10, 20, 28, 0) 100%);
    z-index: 2;
    transition: background 0.5s ease
}


.programs-content-inner {
    position: relative;
    z-index: 10;
    padding: 60px 56px;
    height: 100%;
    min-height: 620px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: opacity 0.4s ease, transform 0.4s ease;
    background: linear-gradient(to top, rgba(10, 20, 28, 0.75) 0%, rgba(10, 20, 28, 0.55) 40%, rgba(10, 20, 28, 0.15) 70%, transparent 100%);
    border-radius: 32px
}

@media (max-width: 991px) {
    .programs-content-inner {
        padding: 40px 28px;
        min-height: unset;
        justify-content: flex-end
    }
}



.program-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap
}

.program-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 5px 14px;
    border-radius: 99px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.03em;
    transition: background 0.2s
}

.program-tag:hover {
    background: rgba(255, 255, 255, 0.25)
}

.program-main-title {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), 0 4px 24px rgba(0, 0, 0, 0.3)
}

.program-description {
    font-size: 1.05rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 32px;
    max-width: 520px;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4)
}


.program-stats {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 16px 24px;
    margin-bottom: 32px;
    width: fit-content
}

@media (max-width: 640px) {
    .program-stats {
        width: 100%;
        justify-content: space-around;
        padding: 14px 16px
    }
}

.program-stat-item {
    text-align: center;
    padding: 0 20px
}

@media (max-width: 640px) {
    .program-stat-item {
        padding: 0 10px
    }
}

.program-stat-value {
    font-size: 1.4rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 4px;
    letter-spacing: -0.02em
}

.program-stat-label {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em
}

.program-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.15);
    flex-shrink: 0
}


.program-cta-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap
}

.program-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #3dbbb0 0%, #2c9288 50%, #1e6b63 100%);
    color: #fff;
    border: none;
    border-radius: 14px;
    font-size: 1.05rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 8px 28px rgba(44, 146, 136, 0.45);
    white-space: nowrap;
    position: relative;
    overflow: hidden
}

.program-cta-primary::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
    opacity: 0;
    transition: opacity 0.3s
}

.program-cta-primary:hover::before {
    opacity: 1
}

.program-cta-primary:hover {
    transform: translatey(-3px) scale(1.02);
    box-shadow: 0 16px 40px rgba(44, 146, 136, 0.6)
}

.program-cta-primary:active {
    transform: translatey(0) scale(0.99)
}

.program-cta-primary i {
    font-size: 0.9rem;
    animation: boltPulse 1.8s ease-in-out infinite
}

@keyframes boltPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.25) rotate(-5deg);
    }
}

.programs-content-inner.fade-out {
    opacity: 0;
    transform: translatey(16px)
}

.programs-content-inner.fade-in {
    opacity: 1;
    transform: translatey(0)
}

.program-image.fade-out {
    opacity: 0;
    transform: scale(1.04)
}

.program-image.fade-in {
    opacity: 1;
    transform: scale(1)
}


.programs-content:hover .program-image {
    transform: scale(1.04)
}



@media (max-width: 991px) {
    .programs-section {
        padding: 70px 0
    }

    .programs-content {
        min-height: 520px
    }
}

@media (max-width: 640px) {
    .programs-content {
        min-height: 480px
    }

    .programs-content-inner {
        padding: 28px 22px
    }

    .program-cta-row {
        flex-direction: column
    }

    .program-cta-primary {
        width: 100%;
        justify-content: center;
        white-space: normal;
        text-align: center
    }

    .program-description {
        max-width: 100%
    }
}

.contact-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px
}


.contact-widget-trigger {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3dbbb0 0%, #2c9288 50%, #1e6b63 100%);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(44, 146, 136, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 2
}

.contact-widget-trigger:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(44, 146, 136, 0.5)
}


.contact-widget-trigger::before {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: rgba(44, 146, 136, 0.25);
    animation: widgetPulse 2s ease-in-out infinite;
    z-index: -1
}

@keyframes widgetPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.3);
        opacity: 0;
    }
}


.contact-widget-icon-close {
    display: none
}

.contact-widget-menu.active~.contact-widget-trigger .contact-widget-icon-open {
    display: none
}

.contact-widget-menu.active~.contact-widget-trigger .contact-widget-icon-close {
    display: inline-block
}


.contact-widget-menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translatey(20px) scale(0.9);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none
}

.contact-widget-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translatey(0) scale(1);
    pointer-events: auto
}



.contact-widget-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 20px 12px 16px;
    border-radius: 50px;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap
}

.contact-widget-item:hover {
    transform: translatex(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2)
}

.contact-widget-item i {
    font-size: 1.4rem
}



.contact-widget-item.telegram {
    background: linear-gradient(135deg, #2AABEE 0%, #229ED9 100%)
}

.contact-widget-item.max {
    background: linear-gradient(135deg, #2563EB 0%, #7C3AED 100%)
}


@media (max-width: 640px) {
    .contact-widget {
        bottom: 2rem;
        right: 1rem;
        align-items: flex-end
    }

    .contact-widget-trigger {
        width: 52px;
        height: 52px;
        font-size: 1.3rem
    }

    .contact-widget-item span {
        display: none
    }

    .contact-widget-item {
        padding: 0;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center
    }
}


.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: linear-gradient(160deg, #0f2b36 0%, #1b4b5a 40%, #283b4c 100%);
    z-index: 200;
    display: none;
    flex-direction: column;
    padding: 1.5rem;
    transform: translatex(100%);
    transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1);
    overflow-y: auto
}

.mobile-menu-overlay.active {
    display: flex;
    transform: translatex(0)
}

.mobile-menu-header {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-right: 60px;
    /* space for absolute close button if needed */
}

.mobile-menu-header .sky-logo {
    color: #fff
}

.mobile-menu-close {
    position: absolute;
    right: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.2)
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
    align-items: flex-start;
    width: 100%;
}

.mobile-menu-link {
    color: #fff;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 700;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    transition: all 0.2s;
    letter-spacing: -0.01em;
    text-align: left;
    width: 100%;
    display: flex;
    align-items: center;
}

.mobile-menu-link:hover,
.mobile-menu-link:active {
    background: rgba(255, 255, 255, 0.1);
    padding-left: 1.25rem;
}

.mobile-menu-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: flex-start;
}

.mobile-menu-phone {
    color: #fff;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.mobile-menu-socials {
    display: flex;
    gap: 1rem
}

.mobile-menu-social-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
    overflow: hidden
}

.mobile-menu-social-btn:hover {
    transform: scale(1.1)
}

.mobile-menu-social-btn.telegram {
    background: linear-gradient(135deg, #2AABEE 0%, #229ED9 100%)
}

.mobile-menu-social-btn.max {
    background: linear-gradient(135deg, #2563EB 0%, #7C3AED 100%)
}

.mobile-menu-cta {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #3dbbb0 0%, #2c9288 100%);
    color: #fff;
    border: none;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 8px 20px rgba(44, 146, 136, 0.3)
}

.mobile-menu-cta:hover {
    background: #1e6b63
}


@media (max-width: 768px) {
    .sky-hero {
        min-height: auto;
        padding-top: 6rem;
        padding-bottom: 2rem
    }

    .sky-hero-bg-arrow-decor {
        font-size: 250px;
        top: 2%;
        right: 5%
    }

    .sky-hero-master-img {
        position: relative !important;
        top: 0 !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        height: 500px !important;
        width: 100vw !important;
        max-width: none !important;
        object-fit: cover !important;
        object-position: center 30% !important;
        margin: -6rem auto -120px auto !important;
        display: block !important;
        z-index: 1 !important;
    }

    .sky-hero-content-wrapper {
        margin-top: 0;
        padding-right: 0;
        padding-left: 1rem;
        padding-right: 1rem;
        position: relative;
        z-index: 2
    }

    .sky-offer-bubble h1 {
        font-size: 1.5rem
    }

    .sky-form-panel {
        padding: 2.5rem 1.2rem 1.2rem
    }

    .sky-form-subheading {
        font-size: 0.95rem;
        margin-bottom: 1rem
    }

    .sky-btn-primary {
        width: 100%;
        white-space: normal;
        text-align: center
    }

    .sky-checkbox-label {
        font-size: 0.7rem
    }
}


@media (max-width: 480px) {
    .sky-hero {
        padding-top: 5.5rem;
        padding-bottom: 1.5rem
    }

    .sky-hero-bg-arrow-decor {
        font-size: 180px;
        opacity: 0.15
    }

    .sky-hero-bg-blobs {
        width: 100vw;
        left: 0
    }

    .sky-hero-master-img {
        position: relative !important;
        height: 400px !important;
        width: 100vw !important;
        max-width: none !important;
        object-fit: cover !important;
        object-position: center 30% !important;
        margin-top: -5.5rem !important;
        margin-bottom: -90px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        z-index: 1 !important;
    }

    .sky-hero-content-wrapper {
        margin-top: 0;
        padding-left: 0.75rem;
        padding-right: 0.75rem;
        position: relative;
        z-index: 2
    }

    .sky-offer-bubble {
        padding: 1rem 1.5rem;
        border-radius: 24px;
        margin-bottom: -14px
    }

    .sky-offer-bubble h1 {
        font-size: 1.25rem
    }

    .sky-form-panel {
        padding: 2rem 1rem 1rem;
        border-radius: 24px
    }

    .sky-form-subheading {
        font-size: 0.85rem
    }

    .sky-input {
        padding: 1rem 0.85rem;
        font-size: 0.9rem;
        flex: 1 1 100%;
        min-width: 100%
    }

    .sky-btn-primary {
        padding: 1rem 1rem;
        font-size: 0.95rem;
        width: 100%
    }

    .sky-form-footer {
        font-size: 0.65rem;
        gap: 0.5rem 0.75rem
    }
}


@media (max-width: 768px) {
    .programs-section {
        padding: 56px 0
    }

    .programs-title {
        font-size: 1.85rem
    }

    .programs-content {
        min-height: 500px;
        border-radius: 24px
    }

    .programs-content-inner {
        padding: 32px 24px
    }

    .program-main-title {
        font-size: 1.65rem
    }

    .program-description {
        font-size: 0.95rem;
        margin-bottom: 20px
    }

    .program-stats {
        gap: 0
    }
}

@media (max-width: 480px) {
    .programs-section {
        padding: 40px 0
    }

    .programs-container {
        padding: 0 14px
    }

    .programs-eyebrow {
        font-size: 0.75rem;
        padding: 6px 14px
    }

    .programs-title {
        font-size: 1.5rem
    }

    .programs-subtitle {
        font-size: 0.95rem
    }

    .programs-section-header {
        margin-bottom: 36px
    }

    .program-tab {
        flex: 0 0 190px;
        border-radius: 16px
    }

    .program-tab-title {
        font-size: 0.9rem
    }

    .program-tab-subtitle {
        font-size: 0.78rem
    }

    .program-tab-badge {
        top: 8px;
        right: 8px;
        font-size: 8px;
        padding: 3px 7px
    }

    .programs-content {
        min-height: 460px;
        border-radius: 20px
    }

    .programs-content-inner {
        padding: 24px 18px
    }

    .program-main-title {
        font-size: 1.4rem;
        margin-bottom: 12px
    }

    .program-description {
        font-size: 0.875rem;
        line-height: 1.55;
        margin-bottom: 18px
    }

    .program-tag {
        font-size: 0.75rem;
        padding: 4px 10px
    }

    .program-stat-value {
        font-size: 1.1rem
    }

    .program-stat-label {
        font-size: 0.65rem
    }
}


@media (max-width: 480px) {
    .ecosystem-section {
        padding: 2.5rem 0
    }

    .ecosystem-header {
        margin-bottom: 2rem
    }

    .ecosystem-title {
        font-size: 1.4rem
    }

    .ecosystem-subtitle {
        font-size: 1rem
    }

    .ecosystem-grid {
        row-gap: 1.75rem
    }
}

@media (max-width: 480px) {
    .why-us-section {
        padding: 2.5rem 0
    }

    .why-us-title {
        font-size: 1.5rem;
        margin-bottom: 2rem
    }

    .why-us-grid {
        gap: 2rem
    }

    .why-us-item-number {
        font-size: 1.75rem;
        margin-bottom: 0.75rem
    }

    .why-us-item-title {
        font-size: 1.15rem;
        margin-bottom: 0.5rem
    }

    .why-us-item-text {
        font-size: 0.875rem
    }
}


@media (max-width: 480px) {
    .contact-form-side {
        padding: 1.5rem
    }

    .contact-title {
        font-size: 1.4rem
    }

    .contact-subtitle {
        font-size: 0.9rem
    }

    .form-input {
        padding: 0.65rem 0.85rem;
        font-size: 0.9rem
    }

    .form-submit {
        padding: 0.85rem 0;
        font-size: 1rem
    }

    .contact-info-list {
        margin-top: 2rem
    }

    .footer-main {
        padding: 2rem 0 6rem 0;
    }

    .footer-container {
        padding-left: 1rem;
        padding-right: 1rem
    }

    .footer-top {
        gap: 1.25rem
    }

    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem
    }

    .footer-nav-link {
        font-size: 0.875rem
    }

    .footer-bottom {
        gap: 0.75rem;
        margin-top: 1.5rem;
        padding-top: 1.5rem
    }

    .footer-copyright,
    .footer-legal-link {
        font-size: 0.8rem
    }
}

@media (max-width: 480px) {
    .modal-window {
        padding: 1.5rem;
        border-radius: 1.25rem;
        margin: 0.75rem
    }

    .modal-title {
        font-size: 1.25rem
    }

    .modal-subtitle {
        font-size: 0.8rem
    }

    .modal-form-input {
        padding: 0.65rem 0.85rem;
        font-size: 0.9rem
    }

    .modal-form-submit {
        padding: 0.85rem 0;
        font-size: 0.95rem
    }
}

@media (hover: none) {
    .program-tab:hover {
        transform: none;
        box-shadow: none
    }
}


.sky-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    min-width: 0;
    max-width: 100%;
    text-decoration: none;
    color: var(--dark)
}

.sky-logo-text {
    font-weight: 900;
    font-size: 1.8rem;
    letter-spacing: 0.03em;
    margin-left: -3.5rem;
    line-height: 1;
    white-space: nowrap;
    background: linear-gradient(to right, #2563EB 0%, #10b981 25%, #3b82f6 50%, #10b981 75%, #2563EB 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: inline-block;
    -webkit-text-stroke: 0.5px rgba(37, 99, 235, 0.4);
    animation: logoShimmer 8s linear infinite
}

@keyframes logoShimmer {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

.sky-header-inner {
    gap: 1rem;
    position: relative
}

.sky-header-right {
    margin-left: auto;
    gap: 0.9rem
}

.sky-nav-socials {
    display: flex;
    align-items: center;
    gap: 0;
    margin-left: 0;
    margin-right: -0.8rem
}

.sky-social-link {
    width: auto;
    height: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, opacity 0.2s ease
}

.sky-social-link:hover {
    transform: translatey(-1px)
}

.sky-social-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    display: block
}

.sky-nav-socials .sky-social-link:last-child .sky-social-icon {
    width: 72px;
    height: 72px
}

.sky-nav-socials .sky-social-link+.sky-social-link {
    margin-left: -6px
}

.mobile-social-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    display: block
}

.sky-mobile-socials {
    display: none;
    align-items: center;
    gap: 0.5rem;
    margin-right: 0.25rem;
    flex-shrink: 0;
}

.sky-mobile-socials--right {
    margin-right: 0.35rem;
}

.sky-mobile-social-link {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: rgba(248, 250, 252, 0.92);
    border: 1px solid rgba(148, 163, 184, 0.16);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

.sky-mobile-social-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
    display: block;
}

.sky-mobile-toggle {
    padding: 0;
    width: 40px;
    height: 40px;
    line-height: 0;
}

.burger-icon {
    position: relative;
    width: 20px;
    height: 14px;
    display: block;
    color: currentColor;
}

.burger-icon::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
    box-shadow: 0 6px 0 currentColor, 0 12px 0 currentColor;
}

@media (min-width: 1024px) {
    .sky-nav {
        position: absolute;
        left: 50%;
        transform: translatex(-50%)
    }

    .sky-logo,
    .sky-header-right {
        position: relative;
        z-index: 1
    }
}

/* --- Consolidated Mobile Media Queries --- */

@media (max-width: 768px) {

    html,
    body {
        overflow-x: hidden;
    }

    .sky-header {
        top: 0.75rem;
        left: 0.5rem;
        right: 0.5rem;
        width: auto;
        max-width: none;
        transform: none;
        transition: box-shadow 0.2s ease, background-color 0.2s ease;
        will-change: auto;
    }

    .sky-header-inner {
        min-height: 3.75rem;
        padding: 0.5rem 0.85rem;
        gap: 0.75rem;
    }

    .header-logo-img {
        height: 2rem;
    }

    .sky-logo-text {
        font-size: 1rem;
        letter-spacing: 0.01em;
        white-space: nowrap;
    }

    .sky-header-right {
        gap: 0.45rem;
        margin-left: auto;
    }

    .sky-mobile-socials {
        display: flex;
    }

    .sky-mobile-social-icon {
        width: 100%;
        height: 100%;
        transform: scale(2);
        transform-origin: center;
    }

    .sky-mobile-social-link.max .sky-mobile-social-icon {
        transform: scale(2.35);
    }

    .sky-nav-socials {
        display: none !important;
        align-items: center !important;
        gap: 4px;
        margin-right: 0;
    }

    .sky-social-icon {
        width: 48px;
        height: 48px;
        object-fit: contain;
    }

    .sky-nav-socials .sky-social-link:last-child .sky-social-icon,
    .sky-nav-socials .sky-social-link.is-max .sky-social-icon {
        width: 48px;
        height: 48px;
    }

    .sky-mobile-toggle {
        width: 40px;
        height: 40px;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex-shrink: 0;
        border-radius: 50%;
        background: #f8fafc;
        border: 1px solid #e2e8f0;
        font-size: 1.1rem;
        color: #1e293b;
    }

    .sky-hero {
        min-height: auto;
        padding-top: 5.25rem;
        padding-bottom: 2rem;
        overflow: visible;
    }

    .sky-hero-container {
        width: min(100%, 560px);
        padding-inline: 0.75rem;
    }

    .sky-hero-bg-blobs {
        width: 140vw;
        height: 240px;
        left: 50%;
        top: -50px;
        transform: translateX(-50%);
        opacity: 0.25;
    }

    .sky-hero-master-img {
        position: relative !important;
        width: 100vw !important;
        max-width: none !important;
        height: 380px !important;
        object-fit: cover !important;
        object-position: center 30% !important;
        margin: -5.25rem auto -90px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        display: block !important;
        z-index: 1 !important;
        mix-blend-mode: normal !important;
    }

    .sky-floating-card {
        display: none;
    }

    .sky-hero-content-wrapper {
        margin-top: 0;
        max-width: 100%;
        padding-right: 0;
        width: 100%;
    }

    .sky-offer-bubble {
        width: 100%;
        padding: 1rem 1.1rem 0.85rem;
        border-radius: 24px 24px 0 0;
    }

    .sky-offer-bubble h1 {
        font-size: clamp(1.25rem, 5.6vw, 1.8rem);
        line-height: 1.15;
    }

    .sky-form-panel {
        width: 100%;
        border-radius: 24px;
        padding: 1.35rem 1rem 1rem;
    }

    .sky-form-subheading {
        font-size: 0.92rem;
        line-height: 1.45;
        margin-bottom: 1rem;
    }

    .sky-hero-form {
        flex-direction: column;
        gap: 0.75rem;
    }

    .sky-input,
    .sky-btn-primary {
        width: 100%;
        min-width: 0;
        flex: 1 1 100%;
    }

    .sky-input {
        padding: 1rem 0.95rem;
        font-size: 1rem;
    }

    .sky-btn-primary {
        padding: 1rem 1.1rem;
        font-size: 0.98rem;
        white-space: normal;
    }

    .sky-form-footer {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.6rem 0.8rem;
        font-size: 0.7rem;
        line-height: 1.35;
    }

    .sky-checkbox-label {
        align-items: flex-start;
        gap: 0.45rem;
        line-height: 1.35;
    }

    .programs-section,
    .why-us-section {
        padding: 3rem 0;
    }

    .programs-container,
    .why-us-container,
    .footer-container {
        padding-left: 0.85rem;
        padding-right: 0.85rem;
    }

    .programs-section-header,
    .why-us-title {
        margin-bottom: 1.75rem;
    }

    .programs-title,
    .why-us-title,
    .contact-title {
        font-size: clamp(1.5rem, 6vw, 1.9rem);
        line-height: 1.15;
    }

    .programs-subtitle,
    .contact-subtitle {
        font-size: 0.95rem;
        line-height: 1.55;
    }

    .programs-switcher,
    .contact-flex-wrapper,
    .footer-top,
    .footer-bottom {
        display: grid;
        grid-template-columns: 1fr;
    }

    .programs-switcher {
        gap: 1rem;
    }

    .programs-sidebar {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.75rem;
        overflow: visible;
        padding: 0;
    }

    .program-tab {
        flex: initial;
        width: 100%;
        padding: 1rem;
        border-radius: 16px;
    }

    .programs-content {
        min-height: auto;
        border-radius: 20px;
    }

    .programs-content-inner {
        min-height: auto;
        padding: 1.5rem 1rem;
        border-radius: 20px;
    }

    .program-main-title {
        font-size: 1.45rem;
        margin-bottom: 0.75rem;
    }

    .program-description {
        max-width: 100%;
        font-size: 0.92rem;
        line-height: 1.55;
        margin-bottom: 1rem;
    }

    .program-stats {
        width: 100%;
        padding: 0.85rem;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.5rem;
    }

    .program-stat-item {
        padding: 0;
    }

    .program-stat-divider {
        display: none;
    }

    .program-cta-row {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .program-cta-primary {
        width: 100%;
        justify-content: center;
        text-align: center;
        white-space: normal;
    }

    .work-process-section {
        padding: 3rem 0 2.5rem;
    }

    .work-process-container {
        width: min(100%, 560px);
        padding: 0 0.85rem;
    }

    .work-process-header {
        margin-bottom: 1.75rem;
    }

    .work-process-eyebrow {
        font-size: 0.72rem;
        padding: 7px 14px;
    }

    .work-process-title {
        font-size: clamp(1.65rem, 7vw, 2.2rem);
        line-height: 1.08;
        margin-bottom: 0.75rem;
    }

    .work-process-subtitle {
        font-size: 0.95rem;
    }

    .work-process-proof {
        flex-direction: column;
        gap: 0.65rem;
        align-items: stretch;
    }

    .work-process-proof-item {
        width: 100%;
        justify-content: center;
        text-align: center;
        padding: 0.8rem 1rem;
        font-size: 0.78rem;
    }

    .work-process-bento {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: auto;
        align-items: start;
        gap: 10px;
        margin-bottom: 2rem;
    }

    .wp-tile {
        aspect-ratio: 1 / 1;
        border-radius: 16px;
    }

    .work-process-bento .wp-tile:last-child {
        grid-column: 1 / -1;
        aspect-ratio: 4 / 3;
    }

    .wp-tile__overlay {
        display: flex;
        padding: 14px;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.18) 45%, transparent 100%);
    }

    .wp-tile__caption,
    .wp-tile__badge {
        display: none;
    }

    .work-process-cta-inner {
        padding: 20px 16px;
        gap: 18px;
    }

    .wpc-stat {
        padding: 0 12px;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .why-us-item {
        padding: 0.25rem 0;
    }

    .contact-form-side {
        padding: 1.5rem 1rem;
    }

    .contact-form-container {
        max-width: 100%;
    }

    .contact-form {
        gap: 1rem;
    }

    .form-input {
        padding: 0.8rem 0.9rem;
        font-size: 0.95rem;
    }

    .form-submit {
        font-size: 1rem;
        padding: 0.95rem 0;
    }

    .contact-info-list {
        margin-top: 1.5rem;
    }

    .contact-info-item {
        align-items: flex-start;
    }

    .footer-main {
        padding: 2rem 0 6rem 0;
    }

    .footer-top,
    .footer-bottom {
        gap: 1rem;
        text-align: center;
    }

    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.85rem 1rem;
    }
}

@media (max-width: 520px) {
    .sky-header {
        left: 0.5rem;
        right: 0.5rem;
        width: auto;
        max-width: none;
        top: 0.5rem;
    }

    .sky-header-inner {
        height: 68px !important;
        padding: 0 12px;
    }

    .header-logo-img {
        height: 28px !important;
    }

    .sky-logo-text {
        font-size: 0.95rem;
        top: 1px;
    }

    .sky-header-right {
        gap: 8px;
    }

    .sky-social-link {
        width: 44px !important;
        height: 44px !important;
    }

    .sky-social-icon {
        width: 44px !important;
        height: 44px !important;
    }

    .sky-social-link.is-max,
    .sky-nav-socials img[src*="max.png"] {
        width: 54px !important;
        height: 54px !important;
    }
}

@media (max-width: 480px) {
    .work-process-section {
        padding: 2.5rem 0 2rem;
    }

    .work-process-container {
        padding: 0 0.75rem;
    }

    .work-process-title {
        font-size: 1.55rem;
    }

    .work-process-subtitle {
        font-size: 0.9rem;
    }

    .work-process-proof-item {
        font-size: 0.72rem;
        padding: 0.72rem 0.9rem;
    }

    .work-process-bento {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: auto;
        align-items: start;
        gap: 10px;
    }

    .wp-tile {
        aspect-ratio: 1 / 1;
    }

    .work-process-bento .wp-tile:last-child {
        grid-column: 1 / -1;
        aspect-ratio: 4 / 3;
    }

    .wp-tile__caption h4 {
        font-size: 0.9rem;
    }

    .wp-tile__caption p {
        font-size: 0.68rem;
    }

    .ecosystem-section {
        padding: 2rem 0;
    }

    .ecosystem-container {
        padding-left: 0.85rem;
        padding-right: 0.85rem;
    }

    .ecosystem-header {
        margin-bottom: 1.5rem;
    }

    .ecosystem-title {
        font-size: 1.3rem;
        line-height: 1.15;
    }

    .ecosystem-subtitle {
        font-size: 0.92rem;
        line-height: 1.45;
    }

    .ecosystem-grid {
        gap: 1.1rem;
    }
}

@media (max-width: 420px) {
    .sky-hero {
        padding-top: 5rem;
    }

    .sky-hero-master-img {
        position: relative !important;
        width: 100vw !important;
        max-width: none !important;
        height: 350px !important;
        object-fit: cover !important;
        object-position: center 30% !important;
        margin-top: -5rem !important;
        margin-bottom: -80px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        z-index: 1 !important;
    }

    .sky-offer-bubble {
        padding-inline: 0.9rem;
    }

    .sky-form-panel {
        padding: 1.15rem 0.85rem 0.95rem;
    }

    .sky-form-subheading {
        font-size: 0.88rem;
    }
}

@media (max-width: 400px) {
    .sky-logo-text {
        font-size: 0.85rem;
    }

    .sky-nav-socials {
        display: flex !important;
    }
}

















img {
    max-width: 100%;
    height: auto;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.sky-header,
.sky-hero-container,
.programs-container,
.why-us-container,
.footer-container {
    width: min(100%, 1280px);
}



@media (min-width: 768px) {
    .programs-sidebar {
        display: flex;
        flex-direction: column;
    }

    .programs-switcher {
        display: flex;
        align-items: stretch;
    }

    .why-us-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .contact-flex-wrapper {
        display: flex;
    }

    .footer-top,
    .footer-bottom {
        display: flex;
    }
}

.honeypot-field {
    display: none;
}

.contact-widget-social-icon {
    object-fit: contain;
    transform: scale(2.8);
}

#back-to-top {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    background: linear-gradient(135deg, #3dbbb0 0%, #2c9288 50%, #1e6b63 100%);
    color: #ffffff;
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    border: none;
    cursor: pointer;
}

#back-to-top:hover {
    background: linear-gradient(135deg, #4dcbc0 0%, #36a69b 50%, #257d74 100%);
}

#back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

/* ================================================================
   PRIVACY CONSENT CHECKBOX Р Р†Р вЂљРІР‚Сњ universal styles
   ================================================================ */

.privacy-consent-label {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    cursor: pointer;
    margin: 0.55rem 0 0.75rem;
    user-select: none;
}

.privacy-consent-cb {
    appearance: none;
    -webkit-appearance: none;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border-radius: 5px;
    border: 2px solid #cbd5e1;
    background: #ffffff;
    position: relative;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
    margin-top: 1px;
}

.privacy-consent-cb:checked {
    background: linear-gradient(135deg, #2c9288 0%, #2563EB 100%);
    border-color: transparent;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.35);
}

.privacy-consent-cb:checked::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 5px;
    width: 5px;
    height: 9px;
    border: 2px solid #ffffff;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

.privacy-consent-cb:focus-visible {
    outline: 2px solid #2563EB;
    outline-offset: 2px;
}

/* Shake animation for missing consent */
@keyframes cbShake {

    0%,
    100% {
        transform: translateX(0);
    }

    20% {
        transform: translateX(-5px);
    }

    40% {
        transform: translateX(5px);
    }

    60% {
        transform: translateX(-4px);
    }

    80% {
        transform: translateX(4px);
    }
}

.privacy-consent-cb.shake {
    animation: cbShake 0.45s ease;
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.28);
}

.privacy-consent-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    color: var(--gray-500);
    line-height: 1.5;
}

.privacy-consent-link {
    color: #2c9288;
    text-decoration: underline;
    transition: color 0.2s;
}

.privacy-consent-link:hover {
    color: #2563EB;
}

/* Dark-background form variant (hero section) */
.sky-hero-form .privacy-consent-text {
    color: rgba(255, 255, 255, 0.60);
}

.sky-hero-form .privacy-consent-cb {
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.08);
}

.sky-hero-form .privacy-consent-link {
    color: #7dd9d3;
}

.sky-hero-form .privacy-consent-link:hover {
    color: #ffffff;
}

/* ---- COOKIE BANNER ---- */
#cookie-banner {
    position: fixed;
    bottom: -220px;
    left: 50%;
    transform: translateX(-50%);
    width: min(720px, calc(100vw - 32px));
    background: #0a1b2e;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(44, 146, 136, 0.25);
    z-index: 99999;
    transition: bottom 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    padding: 1rem 1.25rem;
}

#cookie-banner.is-visible {
    bottom: 24px;
}

.cb-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cb-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, #0ea5e9 0%, #2563eb 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #ffffff;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.cb-body {
    flex: 1;
    min-width: 180px;
}

.cb-title {
    font-family: 'Unbounded', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.2rem;
}

.cb-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.45;
    margin: 0;
}

.cb-link {
    color: #4CB8B0;
    text-decoration: underline;
    transition: color 0.2s;
}

.cb-link:hover {
    color: #7dd9d3;
}

.cb-actions {
    display: flex;
    gap: 0.6rem;
    align-items: center;
    flex-shrink: 0;
}

.cb-btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.5rem 1.1rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.cb-btn--accept {
    background: linear-gradient(135deg, #2c9288 0%, #2563EB 100%);
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.35);
}

.cb-btn--accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.50);
    filter: brightness(1.1);
}

.cb-btn--decline {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.13);
}

.cb-btn--decline:hover {
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    transform: translateY(-2px);
}

@media (max-width: 520px) {
    #cookie-banner {
        padding: 0.8rem 0.85rem;
        text-align: center;
        width: calc(100% - 24px);
        bottom: -260px;
        background: rgba(10, 27, 46, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-radius: 16px;
    }

    #cookie-banner.is-visible {
        bottom: 10px;
    }

    .cb-inner {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }

    .cb-icon {
        width: 26px;
        height: 26px;
        border-radius: 8px;
        font-size: 0.8rem;
    }

    .cb-body {
        min-width: 0;
    }

    .cb-title {
        font-size: 0.76rem;
        margin-bottom: 0.12rem;
    }

    .cb-text {
        font-size: 0.64rem;
        line-height: 1.32;
    }

    .cb-actions {
        width: 100%;
        flex-direction: row;
        justify-content: center;
        gap: 0.45rem;
    }

    .cb-btn {
        flex: 1;
        justify-content: center;
        min-height: 34px;
        padding: 0.45rem 0.45rem;
        font-size: 0.68rem;
        border-radius: 7px;
    }
}

.sky-form-footer {
    padding-bottom: 0.75rem;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem 1.5rem;
    justify-content: stretch;
    align-items: start;
}

.sky-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin: 0;
    line-height: 1.35;
}

.sky-checkbox-label:last-child {
    grid-column: 1 / -1;
}

@media (max-width: 900px) {
    .sky-form-footer {
        grid-template-columns: 1fr;
        gap: 0.55rem;
    }

    .sky-checkbox-label:last-child {
        grid-column: auto;
    }
}

/* Mobile layout fixes for buttons and compact header controls */
@media (max-width: 768px) {

    button,
    .estimate-btn,
    .sky-btn-primary,
    .program-cta-primary,
    .work-process-cta-btn,
    .form-submit,
    .modal-form-submit,
    .mobile-menu-cta,
    .cb-btn {
        max-width: 100%;
        min-width: 0;
        line-height: 1.25;
        overflow-wrap: anywhere;
    }

    .sky-header-inner,
    .sky-logo,
    .sky-header-right {
        min-width: 0;
    }

    .sky-logo {
        flex: 1 1 auto;
    }

    .sky-logo-text {
        max-width: clamp(8rem, 34vw, 11rem);
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .sky-header-right {
        flex: 0 0 auto;
    }

    .estimate-btn {
        width: min(100%, 28rem);
        padding: 1rem 1.25rem;
        white-space: normal;
        text-align: center;
        flex-wrap: wrap;
    }

    .program-cta-primary,
    .work-process-cta-btn {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .modal-overlay {
        padding: 1rem;
    }

    .modal-window {
        max-height: calc(100dvh - 2rem);
        overflow-y: auto;
    }

    .modal-form-submit {
        white-space: normal;
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media (max-width: 520px) {
    .sky-header {
        left: 0.5rem;
        right: 0.5rem;
        width: auto;
        max-width: none;
    }

    .sky-header-inner {
        gap: 6px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .sky-nav-socials {
        gap: 0;
    }

    .sky-social-link {
        flex: 0 0 40px;
    }

    .sky-social-icon,
    .sky-nav-socials .sky-social-link:last-child .sky-social-icon,
    .sky-nav-socials .sky-social-link.is-max .sky-social-icon {
        width: 40px !important;
        height: 40px !important;
    }

    .sky-social-link.is-max,
    .sky-nav-socials img[src*="max.png"] {
        width: 46px !important;
        height: 46px !important;
    }

    .sky-mobile-toggle {
        width: 38px;
        height: 38px;
    }

    .estimate-btn {
        font-size: 1rem;
    }
}

@media (max-width: 390px) {
    .sky-nav-socials {
        display: none !important;
    }

    .sky-logo-text {
        max-width: 12rem;
        font-size: 0.9rem;
    }

    .cb-actions {
        flex-direction: column;
    }

    .cb-btn {
        width: 100%;
    }
}

@media (max-width: 768px) {

    .sky-header,
    .sky-header.header-scrolled {
        position: fixed;
        top: max(0.5rem, env(safe-area-inset-top));
        left: 0.5rem;
        right: 0.5rem;
        width: auto;
        max-width: none;
        transform: translate3d(0, 0, 0);
        transition: box-shadow 0.2s ease;
    }
}

/* Mobile icon fallback
   The site relies on Font Awesome for a lot of controls, but on some mobile
   browsers the webfont can fail to render. These overrides keep the critical
   UI readable even when the icon font is missing. */
@media (max-width: 768px) {

    .fa-solid,
    .fa-regular {
        font-family: inherit !important;
        font-style: normal !important;
        font-weight: 700 !important;
        line-height: 1 !important;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        text-rendering: auto;
        -webkit-font-smoothing: antialiased;
    }

    .fa-bars {
        position: relative;
        width: 1.1em;
        height: 0.95em;
        color: currentColor;
    }

    .fa-bars::before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        width: 100%;
        height: 2px;
        margin-top: -1px;
        background: currentColor;
        border-radius: 999px;
        box-shadow: 0 -0.32em 0 currentColor, 0 0.32em 0 currentColor;
    }

    .fa-xmark {
        position: relative;
        width: 1em;
        height: 1em;
        color: currentColor;
    }

    .fa-xmark::before,
    .fa-xmark::after {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        width: 1.05em;
        height: 2px;
        margin-left: -0.525em;
        margin-top: -1px;
        background: currentColor;
        border-radius: 999px;
        transform-origin: center;
    }

    .fa-xmark::before {
        transform: rotate(45deg);
    }

    .fa-xmark::after {
        transform: rotate(-45deg);
    }

    .fa-check::before {
        content: "Р Р†РЎС™РІР‚Сљ";
    }

    .fa-chevron-down::before {
        content: "Р Р†Р Р‰РІР‚С›";
    }

    .fa-chevron-left::before {
        content: "Р Р†Р вЂљРІвЂћвЂ“";
    }

    .fa-chevron-right::before {
        content: "Р Р†Р вЂљРЎвЂќ";
    }

    .fa-arrow-up::before {
        content: "Р Р†РІР‚В РІР‚В";
    }

    .fa-arrow-trend-up::before {
        content: "Р Р†РІР‚В РІР‚вЂќ";
    }

    .fa-download::before {
        content: "Р Р†РІР‚В РІР‚Сљ";
    }

    .fa-clock::before {
        content: "Р Р†Р РЏР’В°";
    }

    .fa-comments::before,
    .fa-comment-dots::before {
        content: "РЎР‚РЎСџРІР‚в„ўР’В¬";
    }

    .fa-cookie-bite::before {
        content: "РЎР‚РЎСџР РЉР вЂћ";
    }

    .fa-calculator::before {
        content: "Р Р†Р Р‰Р’В";
    }

    .fa-phone::before {
        content: "Р Р†Р’ВР вЂ№";
    }

    .fa-location-dot::before {
        content: "Р Р†Р Р‰РІР‚вЂњ";
    }

    .fa-shield-halved::before,
    .fa-shield-check::before {
        content: "РЎР‚РЎСџРІР‚С”Р Р‹";
    }

    .fa-star::before {
        content: "Р Р†Р’ВРІР‚В¦";
    }

    .fa-thumbs-up::before {
        content: "РЎР‚РЎСџРІР‚ВР РЉ";
    }

    .fa-truck::before {
        content: "РЎР‚РЎСџРЎв„ўРЎв„ў";
    }

    .fa-users::before {
        content: "РЎР‚РЎСџРІР‚ВРўС’";
    }

    .fa-wrench::before {
        content: "РЎР‚РЎСџРІР‚СњР’В§";
    }

    .fa-bolt::before {
        content: "Р Р†РЎв„ўР Р‹";
    }

    .fa-broom::before {
        content: "РЎР‚РЎСџР’В§РІвЂћвЂ“";
    }

    .fa-camera::before {
        content: "РЎР‚РЎСџРІР‚СљР’В·";
    }

    .fa-credit-card::before {
        content: "РЎР‚РЎСџРІР‚в„ўРЎвЂ“";
    }

    .fa-eye::before {
        content: "РЎР‚РЎСџРІР‚ВР С“";
    }

    .sky-mobile-toggle,
    .mobile-menu-close,
    .modal-close,
    .work-lightbox__close,
    .calc-modal-close-btn {
        -webkit-tap-highlight-color: transparent;
    }

    .sky-mobile-toggle {
        color: #1e293b;
    }
}

/* Custom icon system
   Replaces Font Awesome glyph rendering with a consistent inline SVG set.
   This keeps the UI crisp and visually unified on both desktop and mobile. */
.fa-solid,
.fa-regular {
    font-family: inherit !important;
    font-style: normal !important;
    font-weight: 400 !important;
    line-height: 1 !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    color: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}

.fa-solid::before,
.fa-regular::before {
    content: "";
    display: block;
    width: 1em;
    height: 1em;
    background-color: currentColor;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-image: var(--ui-icon);
    mask-image: var(--ui-icon);
}

.fa-bars {
    --ui-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 6h16M4 12h16M4 18h16' stroke='black' stroke-width='2.4' stroke-linecap='round'/%3E%3C/svg%3E");
}

.fa-xmark {
    --ui-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.5 6.5 17.5 17.5M17.5 6.5 6.5 17.5' fill='none' stroke='black' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E");
}

.fa-xmark {
    font-size: 1.05em !important;
    font-weight: 800 !important;
    line-height: 1 !important;
}

.fa-xmark::before {
    content: "\00d7" !important;
    width: auto !important;
    height: auto !important;
    background: none !important;
    -webkit-mask-image: none !important;
    mask-image: none !important;
    display: block !important;
}

.fa-xmark::after {
    content: none !important;
    display: none !important;
}

.mobile-menu-close .fa-xmark,
.modal-close .fa-xmark,
.work-lightbox__close .fa-xmark,
.calc-modal-close-btn .fa-xmark {
    font-size: 1.05rem !important;
    font-weight: 900 !important;
    line-height: 1 !important;
}

.ui-close-icon {
    position: relative;
    width: 1.05rem;
    height: 1.05rem;
    display: inline-block;
    color: currentColor;
    flex: 0 0 auto;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mobile-menu-close:hover .ui-close-icon,
.modal-close:hover .ui-close-icon,
.work-lightbox__close:hover .ui-close-icon,
.calc-modal-close-btn:hover .ui-close-icon {
    transform: rotate(90deg);
}

.ui-close-icon::before,
.ui-close-icon::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 1.08rem;
    height: 2.8px;
    margin-left: -0.54rem;
    margin-top: -1.4px;
    background: currentColor;
    border-radius: 999px;
    transform-origin: center;
}

.ui-close-icon::before {
    transform: rotate(45deg);
}

.ui-close-icon::after {
    transform: rotate(-45deg);
}

.mobile-menu-close,
.modal-close,
.work-lightbox__close,
.calc-modal-close-btn {
    line-height: 0;
}

.mobile-menu-close,
.modal-close,
.work-lightbox__close,
.calc-modal-close-btn,
.mobile-menu-close .fa-xmark,
.modal-close .fa-xmark,
.work-lightbox__close .fa-xmark,
.calc-modal-close-btn .fa-xmark {
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.mobile-menu-close:hover .fa-xmark,
.modal-close:hover .fa-xmark,
.work-lightbox__close:hover .fa-xmark,
.calc-modal-close-btn:hover .fa-xmark {
    transform: rotate(90deg);
}

.fa-chevron-down {
    --ui-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6' fill='none' stroke='black' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.fa-chevron-left {
    --ui-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M15 6 9 12l6 6' fill='none' stroke='black' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.fa-chevron-right {
    --ui-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 6l6 6-6 6' fill='none' stroke='black' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.fa-check {
    --ui-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5.5 12.5 10 17l8.5-10' fill='none' stroke='black' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.fa-clock {
    --ui-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='8.5' fill='none' stroke='black' stroke-width='2'/%3E%3Cpath d='M12 7v5l3 2' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.fa-arrow-up {
    --ui-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 19V6' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round'/%3E%3Cpath d='M7 11l5-5 5 5' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.fa-arrow-trend-up {
    --ui-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 16l6-6 4 4 6-8' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M18 6h2v2' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round'/%3E%3C/svg%3E");
}

.fa-download {
    --ui-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 4v10' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round'/%3E%3Cpath d='M8 11l4 4 4-4' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M5 19h14' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round'/%3E%3C/svg%3E");
}

.fa-comments,
.fa-comment-dots {
    --ui-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 6.5h12A3.5 3.5 0 0 1 21.5 10v4A3.5 3.5 0 0 1 18 17.5H12l-4.5 3v-3.5H6A3.5 3.5 0 0 1 2.5 13v-3A3.5 3.5 0 0 1 6 6.5z' fill='none' stroke='black' stroke-width='1.9' stroke-linejoin='round'/%3E%3Ccircle cx='9' cy='11' r='1' fill='black'/%3E%3Ccircle cx='12' cy='11' r='1' fill='black'/%3E%3Ccircle cx='15' cy='11' r='1' fill='black'/%3E%3C/svg%3E");
}

.fa-cookie-bite {
    --ui-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='8.5' fill='none' stroke='black' stroke-width='2'/%3E%3Ccircle cx='9' cy='9' r='1' fill='black'/%3E%3Ccircle cx='15' cy='10' r='1' fill='black'/%3E%3Ccircle cx='11' cy='15' r='1' fill='black'/%3E%3C/svg%3E");
}

.fa-calculator {
    --ui-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='5' y='3.5' width='14' height='17' rx='3' fill='none' stroke='black' stroke-width='2'/%3E%3Crect x='7' y='6' width='10' height='3' rx='1' fill='black'/%3E%3Crect x='7' y='11' width='3' height='3' rx='0.8' fill='black'/%3E%3Crect x='11' y='11' width='3' height='3' rx='0.8' fill='black'/%3E%3Crect x='15' y='11' width='2' height='7' rx='0.8' fill='black'/%3E%3Crect x='7' y='15' width='3' height='3' rx='0.8' fill='black'/%3E%3Crect x='11' y='15' width='3' height='3' rx='0.8' fill='black'/%3E%3C/svg%3E");
}

.fa-phone {
    --ui-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7.5 4.5 10 6.8c0.8 0.8 0.8 2 0 2.8l-1 1c1.2 2.3 3.1 4.2 5.4 5.4l1-1c0.8-0.8 2-0.8 2.8 0l2.3 2.5c0.8 0.8 0.8 2 0 2.8l-1.1 1.1c-0.8 0.8-2 1-3 0.8-6.5-1.3-11.7-6.5-13-13-0.2-1 0-2.2 0.8-3l1.1-1.1c0.8-0.8 2-0.8 2.8 0z' fill='none' stroke='black' stroke-width='1.8' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.fa-location-dot {
    --ui-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 21s6-6 6-10a6 6 0 1 0-12 0c0 4 6 10 6 10z' fill='none' stroke='black' stroke-width='2' stroke-linejoin='round'/%3E%3Ccircle cx='12' cy='11' r='2.2' fill='black'/%3E%3C/svg%3E");
}

.fa-shield-halved,
.fa-shield-check {
    --ui-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 3.5 18 5.6v5.1c0 4-2.5 7.5-6 9.8-3.5-2.3-6-5.8-6-9.8V5.6L12 3.5z' fill='none' stroke='black' stroke-width='2' stroke-linejoin='round'/%3E%3Cpath d='M9 12l2 2 4-4' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.fa-star {
    --ui-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='m12 3 2.8 5.7 6.2.9-4.5 4.4 1 6.2L12 17.3 6.5 20.2l1-6.2L3 9.6l6.2-.9L12 3z' fill='black'/%3E%3C/svg%3E");
}

.fa-thumbs-up {
    --ui-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M8 10V6.5a2.5 2.5 0 0 1 2.5-2.5h.3L11 9h7a2 2 0 0 1 2 2l-1.2 6.5A2.5 2.5 0 0 1 16.3 20H8V10z' fill='none' stroke='black' stroke-width='1.8' stroke-linejoin='round'/%3E%3Cpath d='M5 10h3v10H5z' fill='black'/%3E%3C/svg%3E");
}

.fa-truck {
    --ui-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3.5 8h11v7h-11z' fill='none' stroke='black' stroke-width='1.8' stroke-linejoin='round'/%3E%3Cpath d='M14.5 10H18l2.5 3v2h-6z' fill='none' stroke='black' stroke-width='1.8' stroke-linejoin='round'/%3E%3Ccircle cx='8' cy='17.5' r='1.8' fill='black'/%3E%3Ccircle cx='18' cy='17.5' r='1.8' fill='black'/%3E%3C/svg%3E");
}

.fa-users {
    --ui-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='9' cy='9' r='3' fill='none' stroke='black' stroke-width='2'/%3E%3Ccircle cx='16' cy='10' r='2.5' fill='none' stroke='black' stroke-width='2'/%3E%3Cpath d='M4.5 19c0-2.8 2.4-5 5.5-5s5.5 2.2 5.5 5' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M13.5 19c.2-1.6 1.4-2.9 3.2-3.5' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.fa-wrench {
    --ui-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M21 6.5a5 5 0 0 1-6.4 4.8L7 18.9a2 2 0 1 1-2.8-2.8l7.4-7.6A5 5 0 0 1 18 2.9l-2.2 2.2 2.6 2.6L21 6.5z' fill='none' stroke='black' stroke-width='1.8' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.fa-camera {
    --ui-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='3.5' y='7' width='17' height='12.5' rx='2.5' fill='none' stroke='black' stroke-width='2'/%3E%3Cpath d='M8 7l1.3-2h5.4L16 7' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Ccircle cx='12' cy='13.2' r='3.2' fill='none' stroke='black' stroke-width='2'/%3E%3C/svg%3E");
}

.fa-credit-card {
    --ui-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='3.5' y='6.5' width='17' height='11' rx='2.2' fill='none' stroke='black' stroke-width='2'/%3E%3Cpath d='M3.5 10h17' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3Crect x='6' y='13.5' width='4.2' height='2.1' rx='0.6' fill='black'/%3E%3C/svg%3E");
}

.fa-eye {
    --ui-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M2.5 12s3.8-6.5 9.5-6.5S21.5 12 21.5 12s-3.8 6.5-9.5 6.5S2.5 12 2.5 12z' fill='none' stroke='black' stroke-width='2' stroke-linejoin='round'/%3E%3Ccircle cx='12' cy='12' r='2.7' fill='black'/%3E%3C/svg%3E");
}

.fa-bolt {
    --ui-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M13 2 5 13h5l-1 9 10-13h-6l0-7z' fill='black'/%3E%3C/svg%3E");
}

.fa-broom {
    --ui-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M14.5 4.5 7 12l-1.5 6.5 6.5-1.5 7.5-7.5-5-5z' fill='none' stroke='black' stroke-width='1.8' stroke-linejoin='round'/%3E%3Cpath d='M6 18l-2 4' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
}

.fa-comment-dots,
.fa-comments {
    --ui-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 6.5h12A3.5 3.5 0 0 1 21.5 10v4A3.5 3.5 0 0 1 18 17.5H12l-4.5 3v-3.5H6A3.5 3.5 0 0 1 2.5 13v-3A3.5 3.5 0 0 1 6 6.5z' fill='none' stroke='black' stroke-width='1.9' stroke-linejoin='round'/%3E%3Ccircle cx='9' cy='11' r='1' fill='black'/%3E%3Ccircle cx='12' cy='11' r='1' fill='black'/%3E%3Ccircle cx='15' cy='11' r='1' fill='black'/%3E%3C/svg%3E");
}

.fa-cookie-bite {
    --ui-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20.5 12.3A8.5 8.5 0 1 1 11.7 3.5a4.2 4.2 0 0 0 2.3 3.8 4 4 0 0 0 3.9 3.7 4.3 4.3 0 0 0 2.6 1.3z' fill='none' stroke='black' stroke-width='2' stroke-linejoin='round'/%3E%3Ccircle cx='9' cy='9' r='1' fill='black'/%3E%3Ccircle cx='15.2' cy='10.1' r='1' fill='black'/%3E%3Ccircle cx='11' cy='15' r='1' fill='black'/%3E%3C/svg%3E");
}

.fa-shield-halved,
.fa-shield-check {
    --ui-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 3.5 18 5.6v5.1c0 4-2.5 7.5-6 9.8-3.5-2.3-6-5.8-6-9.8V5.6L12 3.5z' fill='none' stroke='black' stroke-width='2' stroke-linejoin='round'/%3E%3Cpath d='M9 12l2 2 4-4' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.fa-star {
    --ui-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='m12 3 2.8 5.7 6.2.9-4.5 4.4 1 6.2L12 17.3 6.5 20.2l1-6.2L3 9.6l6.2-.9L12 3z' fill='black'/%3E%3C/svg%3E");
}

.fa-thumbs-up {
    --ui-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M8 10V6.5a2.5 2.5 0 0 1 2.5-2.5h.3L11 9h7a2 2 0 0 1 2 2l-1.2 6.5A2.5 2.5 0 0 1 16.3 20H8V10z' fill='none' stroke='black' stroke-width='1.8' stroke-linejoin='round'/%3E%3Cpath d='M5 10h3v10H5z' fill='black'/%3E%3C/svg%3E");
}

.fa-truck {
    --ui-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3.5 8h11v7h-11z' fill='none' stroke='black' stroke-width='1.8' stroke-linejoin='round'/%3E%3Cpath d='M14.5 10H18l2.5 3v2h-6z' fill='none' stroke='black' stroke-width='1.8' stroke-linejoin='round'/%3E%3Ccircle cx='8' cy='17.5' r='1.8' fill='black'/%3E%3Ccircle cx='18' cy='17.5' r='1.8' fill='black'/%3E%3C/svg%3E");
}

.fa-users {
    --ui-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='9' cy='9' r='3' fill='none' stroke='black' stroke-width='2'/%3E%3Ccircle cx='16' cy='10' r='2.5' fill='none' stroke='black' stroke-width='2'/%3E%3Cpath d='M4.5 19c0-2.8 2.4-5 5.5-5s5.5 2.2 5.5 5' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M13.5 19c.2-1.6 1.4-2.9 3.2-3.5' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.fa-wrench {
    --ui-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M21 6.5a5 5 0 0 1-6.4 4.8L7 18.9a2 2 0 1 1-2.8-2.8l7.4-7.6A5 5 0 0 1 18 2.9l-2.2 2.2 2.6 2.6L21 6.5z' fill='none' stroke='black' stroke-width='1.8' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.fa-camera {
    --ui-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='3.5' y='7' width='17' height='12.5' rx='2.5' fill='none' stroke='black' stroke-width='2'/%3E%3Cpath d='M8 7l1.3-2h5.4L16 7' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Ccircle cx='12' cy='13.2' r='3.2' fill='none' stroke='black' stroke-width='2'/%3E%3C/svg%3E");
}

.fa-credit-card {
    --ui-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='3.5' y='6.5' width='17' height='11' rx='2.2' fill='none' stroke='black' stroke-width='2'/%3E%3Cpath d='M3.5 10h17' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3Crect x='6' y='13.5' width='4.2' height='2.1' rx='0.6' fill='black'/%3E%3C/svg%3E");
}

.fa-eye {
    --ui-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M2.5 12s3.8-6.5 9.5-6.5S21.5 12 21.5 12s-3.8 6.5-9.5 6.5S2.5 12 2.5 12z' fill='none' stroke='black' stroke-width='2' stroke-linejoin='round'/%3E%3Ccircle cx='12' cy='12' r='2.7' fill='black'/%3E%3C/svg%3E");
}

.fa-bolt {
    --ui-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M13 2 5 13h5l-1 9 10-13h-6l0-7z' fill='black'/%3E%3C/svg%3E");
}

.fa-broom {
    --ui-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M14.5 4.5 7 12l-1.5 6.5 6.5-1.5 7.5-7.5-5-5z' fill='none' stroke='black' stroke-width='1.8' stroke-linejoin='round'/%3E%3Cpath d='M6 18l-2 4' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
}

.fa-comment-dots,
.fa-comments {
    --ui-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 6.5h12A3.5 3.5 0 0 1 21.5 10v4A3.5 3.5 0 0 1 18 17.5H12l-4.5 3v-3.5H6A3.5 3.5 0 0 1 2.5 13v-3A3.5 3.5 0 0 1 6 6.5z' fill='none' stroke='black' stroke-width='1.9' stroke-linejoin='round'/%3E%3Ccircle cx='9' cy='11' r='1' fill='black'/%3E%3Ccircle cx='12' cy='11' r='1' fill='black'/%3E%3Ccircle cx='15' cy='11' r='1' fill='black'/%3E%3C/svg%3E");
}

.fa-cookie-bite {
    --ui-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20.5 12.3A8.5 8.5 0 1 1 11.7 3.5a4.2 4.2 0 0 0 2.3 3.8 4 4 0 0 0 3.9 3.7 4.3 4.3 0 0 0 2.6 1.3z' fill='none' stroke='black' stroke-width='2' stroke-linejoin='round'/%3E%3Ccircle cx='9' cy='9' r='1' fill='black'/%3E%3Ccircle cx='15.2' cy='10.1' r='1' fill='black'/%3E%3Ccircle cx='11' cy='15' r='1' fill='black'/%3E%3C/svg%3E");
}

.fa-shield-halved,
.fa-shield-check {
    --ui-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 3.5 18 5.6v5.1c0 4-2.5 7.5-6 9.8-3.5-2.3-6-5.8-6-9.8V5.6L12 3.5z' fill='none' stroke='black' stroke-width='2' stroke-linejoin='round'/%3E%3Cpath d='M9 12l2 2 4-4' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}


.fa-house {
    --ui-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 12l9-8 9 8' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M5 10v8a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2v-8' fill='none' stroke='black' stroke-width='2' stroke-linejoin='round'/%3E%3Cpath d='M10 20v-5h4v5' fill='none' stroke='black' stroke-width='2' stroke-linejoin='round'/%3E%3C/svg%3E");
}


/* ===== MOBILE BOTTOM NAV ===== */
.mobile-bottom-nav {
    display: none;
}

@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex;
        position: fixed;
        bottom: calc(15px + env(safe-area-inset-bottom, 0px));
        left: 10px;
        right: 10px;
        z-index: 1000;
        background: rgba(120, 120, 120, 0.5);
        backdrop-filter: blur(15px) saturate(180%);
        -webkit-backdrop-filter: blur(15px) saturate(180%);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 40px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
        padding: 12px 10px 10px 10px;
        align-items: flex-end;
        justify-content: space-around;
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .mobile-bottom-nav__item {
        display: grid;
        grid-template-rows: 1fr auto;
        justify-items: center;
        align-items: end;
        height: 56px;
        gap: 4px;
        padding: 4px 2px;
        text-decoration: none;
        color: #ffffff;
        font-size: 0.65rem;
        font-weight: 500;
        letter-spacing: 0.02em;
        border-radius: 10px;
        transition: all 0.25s ease;
        position: relative;
        min-width: 56px;
        -webkit-tap-highlight-color: transparent;
    }

    .mobile-bottom-nav__item> :first-child {
        align-self: center;
    }

    .mobile-bottom-nav__item i {
        font-size: 1.15rem;
        transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.25s ease;
        opacity: 0.9;
    }

    .mobile-bottom-nav__item span {
        line-height: 1;
        white-space: nowrap;
        transition: color 0.25s ease;
        opacity: 0.9;
    }

    .mobile-bottom-nav__social-icon {
        width: 24px;
        height: 24px;
        object-fit: contain;
        transform: scale(2.2);
        transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
        filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
    }

    /* Active state */
    .mobile-bottom-nav__item.active {
        color: #ffffff;
    }

    .mobile-bottom-nav__item.active i,
    .mobile-bottom-nav__item.active span {
        opacity: 1;
    }

    .mobile-bottom-nav__item.active i {
        transform: scale(1.1);
    }

    .mobile-bottom-nav__item.active::before {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 20px;
        height: 3px;
        background: #ffffff;
        border-radius: 0 0 3px 3px;
    }

    .mobile-bottom-nav__item.active .mobile-bottom-nav__social-icon {
        filter: none;
    }

    /* Hover / tap */
    .mobile-bottom-nav__item:active {
        transform: scale(0.92);
    }

    .mobile-bottom-nav__item:active i {
        transform: scale(1.15);
    }

    /* Calculator center button */
    .mobile-bottom-nav__item--calc {
        position: relative;
        margin-top: 0;
    }

    .mobile-bottom-nav__calc-icon {
        width: 54px;
        height: 54px;
        margin-top: -28px !important;
        border-radius: 50%;
        background: linear-gradient(135deg, #404040 0%, #2a2a2a 100%);
        border: 1px solid rgba(255, 255, 255, 0.15);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 1.35rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
        position: relative;
    }

    .mobile-bottom-nav__calc-icon::before {
        content: "";
        position: absolute;
        inset: -4px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        animation: mobileCalcPulse 2.5s ease-in-out infinite;
        pointer-events: none;
    }

    @keyframes mobileCalcPulse {

        0%,
        100% {
            transform: scale(1);
            opacity: 0.5;
        }

        50% {
            transform: scale(1.25);
            opacity: 0;
        }
    }

    .mobile-bottom-nav__calc-icon i {
        color: #fff;
        font-size: 1.15rem;
    }

    .mobile-bottom-nav__item--calc span {
        margin-top: 4px;
        color: #ffffff;
        font-weight: 600;
    }

    .mobile-bottom-nav__item--calc:active .mobile-bottom-nav__calc-icon {
        transform: scale(0.9);
    }

    /* Offset body padding so content isn't hidden behind nav */
    body {
        padding-bottom: 85px;
    }

    /* Move contact widget up above bottom nav */
    .contact-widget {
        bottom: calc(85px + 1rem) !important;
    }

    /* Hide back-to-top on mobile since we have bottom nav */
    #back-to-top {
        display: none !important;
    }

    /* Move cookie banner up */
    #cookie-banner.is-visible {
        bottom: 85px !important;
    }
}

/* ===== END MOBILE BOTTOM NAV ===== */

/* ===== PORTFOLIO SECTION ===== */
:root {
    --pf-red: #EC2227;
    --pf-orange: #F79521;
    --pf-teal: #01A79D;
    --pf-dark: #1F1A17;
    --pf-light: #D1D2D4;
    --pf-accent: var(--pf-orange);
    --pf-accent-hover: #e58212;
}

.portfolio-section {
    padding: 5rem 0 4rem;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.portfolio-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--pf-teal), transparent);
    opacity: 0.5;
}

.portfolio-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .portfolio-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .portfolio-container {
        padding: 0 2rem;
    }
}

/* Р Р†РІР‚СњР вЂљР Р†РІР‚СњР вЂљ Header Р Р†РІР‚СњР вЂљР Р†РІР‚СњР вЂљ */
.portfolio-header {
    text-align: center;
    margin-bottom: 2rem;
}

.portfolio-eyebrow {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--pf-accent);
    margin-bottom: 0.75rem;
    display: inline-block;
    position: relative;
}

.portfolio-eyebrow::before,
.portfolio-eyebrow::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 2rem;
    height: 2px;
}

.portfolio-eyebrow::before {
    right: calc(100% + 0.75rem);
    background: linear-gradient(90deg, transparent, var(--pf-red));
}

.portfolio-eyebrow::after {
    left: calc(100% + 0.75rem);
    background: linear-gradient(90deg, var(--pf-teal), transparent);
}

.portfolio-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 0.75rem;
    letter-spacing: -0.03em;
    color: var(--pf-dark);
}

.portfolio-title-accent {
    color: var(--pf-accent);
    font-style: italic;
}

.portfolio-subtitle {
    font-size: 0.95rem;
    color: #4a4a4a;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.55;
}

/* Р Р†РІР‚СњР вЂљР Р†РІР‚СњР вЂљ Stats Р Р†РІР‚СњР вЂљР Р†РІР‚СњР вЂљ */
.portfolio-stats {
    display: flex;
    justify-content: center;
    margin: 2rem auto;
    max-width: 56rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 1rem;
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.portfolio-stat-item {
    flex: 1;
    text-align: center;
    position: relative;
}

.portfolio-stat-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: rgba(0, 0, 0, 0.08);
}

.portfolio-stat-value {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--pf-teal);
    line-height: 1.2;
}

.portfolio-stat-suffix {
    font-size: 0.65em;
    font-weight: 700;
}

.portfolio-stat-label {
    font-size: 0.78rem;
    color: #4a4a4a;
    margin-top: 0.2rem;
}

@media (max-width: 600px) {
    .portfolio-stats {
        flex-wrap: wrap;
        gap: 1rem;
        padding: 1.25rem;
    }

    .portfolio-stat-item {
        flex: 0 0 45%;
    }

    .portfolio-stat-item:not(:last-child)::after {
        display: none;
    }
}

/* Р Р†РІР‚СњР вЂљР Р†РІР‚СњР вЂљ Bento Grid Р Р†РІР‚СњР вЂљР Р†РІР‚СњР вЂљ */
.portfolio-bento {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
}

@media (min-width: 768px) {
    .portfolio-bento {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        grid-auto-rows: minmax(260px, auto);
    }
}

/* Р Р†РІР‚СњР вЂљР Р†РІР‚СњР вЂљ Card Р Р†РІР‚СњР вЂљР Р†РІР‚СњР вЂљ */
.pf-card {
    position: relative;
    border-radius: 0.85rem;
    overflow: hidden;
    cursor: pointer;
    min-height: 260px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.pf-card:hover {
    box-shadow: 0 15px 40px rgba(255, 102, 0, 0.2);
    transform: translateY(-5px);
}

.pf-card:focus-visible {
    outline: 3px solid rgba(1, 167, 157, 0.42);
    outline-offset: 4px;
}

/* Image */
.pf-card__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.1) saturate(1.03);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), filter 0.4s ease;
}

.pf-card:hover .pf-card__img {
    transform: scale(1.08);
    filter: brightness(1.15) saturate(1.05);
}

/* Gradient overlay */
.pf-card__gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 58%, rgba(0, 0, 0, 0.46) 100%);
    transition: background 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.pf-card:hover .pf-card__gradient {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 48%, rgba(0, 0, 0, 0.58) 100%);
}

/* Orange left accent bar */
.pf-card__accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--pf-accent);
    z-index: 5;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    pointer-events: none;
}

.pf-card:hover .pf-card__accent {
    transform: scaleY(1);
}

.pf-card__badge.pf-badge--orange~.pf-card__accent {
    background: var(--pf-orange);
}

.pf-card__badge.pf-badge--teal~.pf-card__accent {
    background: var(--pf-teal);
}

.pf-card__badge.pf-badge--red~.pf-card__accent {
    background: var(--pf-red);
}

/* Badge */
.pf-card__badge {
    position: absolute;
    top: 0.7rem;
    left: 0.7rem;
    padding: 0.28rem 0.7rem;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 0.3rem;
    color: #ffffff;
    z-index: 3;
    transition: transform 0.3s ease;
}

.pf-card:hover .pf-card__badge {
    transform: translateY(-2px);
}

.pf-badge--orange {
    background: var(--pf-orange);
}

.pf-badge--teal {
    background: var(--pf-teal);
}

.pf-badge--red {
    background: var(--pf-red);
}

/* Arrow icon top-right */
.pf-card__arrow {
    position: absolute;
    top: 0.7rem;
    right: 0.7rem;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--pf-accent);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    z-index: 3;
    opacity: 0;
    transform: scale(0.7);
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pf-card:hover .pf-card__arrow {
    opacity: 1;
    transform: scale(1);
}

/* Card body (bottom text) */
.pf-card__body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.85rem;
    z-index: 2;
}

.pf-card__title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin: 0 0 0.35rem;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.pf-card__meta {
    display: flex;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.pf-card__meta span {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.75);
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.pf-card__meta i {
    color: var(--pf-accent);
    font-size: 0.6rem;
}

@media (max-width: 767px) {
    .portfolio-container {
        padding: 0 0.65rem;
    }

    .portfolio-bento {
        gap: 0.55rem;
    }

    .pf-card {
        min-height: 0;
        aspect-ratio: 4 / 3;
        border-radius: 0.7rem;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .pf-card:hover {
        transform: none;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .pf-card__img,
    .pf-card:hover .pf-card__img {
        filter: none;
        transform: none;
    }

    .pf-card__badge {
        top: 0.45rem;
        left: 0.45rem;
        padding: 0.2rem 0.38rem;
        font-size: 0.43rem;
        letter-spacing: 0.02em;
    }

    .pf-card__body {
        padding: 0.5rem;
    }

    .pf-card__title {
        margin-bottom: 0.15rem;
        font-size: 0.7rem;
    }

    .pf-card__meta {
        gap: 0.1rem 0.35rem;
    }

    .pf-card__meta span {
        font-size: 0.5rem;
    }

    .pf-card__meta i {
        font-size: 0.48rem;
    }
}

/* Featured card Р Р†Р вЂљРІР‚Сњ expanded details (visible on hover) */
.pf-card__details {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s cubic-bezier(0.23, 1, 0.32, 1),
        opacity 0.4s ease,
        margin 0.4s ease;
    margin-top: 0;
}

.pf-card:hover .pf-card__details {
    max-height: 200px;
    opacity: 1;
    margin-top: 0.55rem;
}

.pf-card__detail-tags {
    display: flex;
    gap: 0.35rem;
    flex-wrap: wrap;
    margin-bottom: 0.35rem;
}

.pf-card__detail-tags span {
    padding: 0.18rem 0.45rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0.2rem;
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.8);
}

.pf-card__guarantee {
    font-size: 0.68rem;
    color: var(--pf-accent);
    margin-bottom: 0.25rem;
}

.pf-card__guarantee i {
    margin-right: 0.2rem;
}

.pf-card__price {
    font-family: 'Unbounded', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--pf-accent);
    margin-bottom: 0.25rem;
}

.pf-card__stars {
    display: flex;
    gap: 0.12rem;
}

.pf-card__stars i {
    color: var(--pf-accent);
    font-size: 0.65rem;
}

/* Card entrance animation */
@keyframes pfCardIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Р Р†РІР‚СњР вЂљР Р†РІР‚СњР вЂљ CTA Banner Р Р†РІР‚СњР вЂљР Р†РІР‚СњР вЂљ */
.portfolio-cta {
    margin: 3rem auto 0;
    max-width: 1280px;
    width: 100%;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #EC2227 0%, #01A79D 50%, #F79521 100%);
    border-radius: 1.25rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

.portfolio-cta__glow {
    display: none;
}

.portfolio-cta__glow--left {
    bottom: -100px;
    left: -60px;
    background: var(--pf-accent);
}

.portfolio-cta__glow--right {
    bottom: -80px;
    right: -40px;
    background: #FF8C33;
    animation-delay: -2s;
}

@keyframes ctaGlowPulse {
    0% {
        opacity: 0.25;
        transform: scale(1);
    }

    100% {
        opacity: 0.45;
        transform: scale(1.1);
    }
}

.portfolio-cta__eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.6rem;
    position: relative;
    z-index: 1;
}

.portfolio-cta__title {
    font-size: clamp(1.3rem, 3vw, 1.9rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.3;
    margin: 0 0 0.65rem;
    position: relative;
    z-index: 1;
}

.portfolio-cta__accent {
    color: #ffffff;
    font-style: italic;
    opacity: 0.95;
}

.portfolio-cta__subtitle {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    max-width: 420px;
    margin: 0 auto 1.5rem;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

.portfolio-cta__buttons {
    display: flex;
    gap: 0.85rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.portfolio-cta__btn-primary {
    padding: 0.7rem 1.6rem;
    background: var(--pf-accent);
    color: #ffffff;
    border: none;
    border-radius: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.portfolio-cta__btn-primary::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.25) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: rotate(30deg);
    animation: portfolioShimmer 3.5s infinite;
}

@keyframes portfolioShimmer {
    0% {
        left: -60%;
    }

    30% {
        left: 140%;
    }

    100% {
        left: 140%;
    }
}

.portfolio-cta__btn-primary:hover {
    background: var(--pf-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.4);
}

.portfolio-cta__btn-secondary {
    padding: 0.7rem 1.6rem;
    background: transparent;
    color: rgba(255, 255, 255, 0.75);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.portfolio-cta__btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
    transform: translateY(-2px);
}

/* ===== END PORTFOLIO SECTION ===== */

/* ===== WOW MICRO-INTERACTIONS ===== */

/* 1. Scroll Progress Bar */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(to right, #EC2227 0%, #EC2227 20%, #01A79D 40%, #01A79D 60%, #F79521 80%, #F79521 100%);
    background-size: 100vw 100%;
    z-index: 9999;
    transition: width 0.1s ease-out;
}

/* 2. Custom Cursor */
body.has-custom-cursor {
    cursor: none !important;
}

body.has-custom-cursor a,
body.has-custom-cursor button,
body.has-custom-cursor input,
body.has-custom-cursor textarea,
body.has-custom-cursor select,
body.has-custom-cursor .pf-card {
    cursor: none !important;
}

.custom-cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 6px;
    height: 6px;
    background-color: var(--pf-accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s;
    mix-blend-mode: difference;
}

.custom-cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    width: 34px;
    height: 34px;
    border: 1.5px solid var(--pf-accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s cubic-bezier(0.23, 1, 0.32, 1),
        height 0.3s cubic-bezier(0.23, 1, 0.32, 1),
        background-color 0.3s ease,
        border-color 0.3s ease;
}

.custom-cursor-outline.hovered {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 102, 0, 0.15);
    border-color: transparent;
    mix-blend-mode: difference;
}

/* 3. Dynamic Blobs (Portfolio Background) */
.pf-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    z-index: -1;
    opacity: 0.6;
    animation: blobFloat 20s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

.pf-blob--1 {
    width: 400px;
    height: 400px;
    background: rgba(255, 102, 0, 0.12);
    top: -100px;
    left: -150px;
}

.pf-blob--2 {
    width: 500px;
    height: 500px;
    background: rgba(37, 99, 235, 0.08);
    /* subtle blue from brand */
    bottom: 200px;
    right: -200px;
    animation-delay: -5s;
    animation-duration: 25s;
}

@keyframes blobFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}

/* ===== END WOW MICRO-INTERACTIONS ===== */

/* ===== CALLBACK MODAL ===== */
.callback-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 15, 30, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.callback-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.callback-modal {
    position: relative;
    width: 100%;
    max-width: 440px;
    max-height: 95vh;
    overflow-y: auto;
    background: linear-gradient(160deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 1.5rem;
    padding: 1.75rem 1.75rem 1.5rem;
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transform: translateY(30px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.callback-modal-overlay.active .callback-modal {
    transform: translateY(0) scale(1);
}

.callback-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.05);
    color: var(--gray-500);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    z-index: 2;
}

.callback-modal__close:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    transform: rotate(90deg);
}

.callback-modal__header {
    text-align: center;
    margin-bottom: 1.25rem;
}

.callback-modal__logo {
    width: 150px;
    height: auto;
    max-width: calc(100% - 4rem);
    margin: 0 auto 0.75rem;
    display: block;
    object-fit: contain;
}

.callback-modal__title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--dark);
    margin: 0 0 0.25rem;
    line-height: 1.2;
}

.callback-modal__subtitle {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin: 0;
    line-height: 1.4;
}

.callback-modal__form {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.callback-modal__field {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.callback-modal__label {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--gray-700);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.callback-modal__input {
    padding: 0.65rem 0.85rem;
    border: 2px solid var(--gray-200);
    border-radius: 0.6rem;
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--dark);
    background: #fff;
    transition: all 0.3s ease;
    outline: none;
}

.callback-modal__input::placeholder {
    color: var(--gray-400);
}

.callback-modal__input:focus {
    border-color: #2c9288;
    box-shadow: 0 0 0 4px rgba(44, 146, 136, 0.1);
}

.callback-modal__consents {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-top: 0.15rem;
}

.callback-modal__consent-label {
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
    font-size: 0.75rem;
    color: var(--gray-500);
    cursor: pointer;
    line-height: 1.35;
}

.callback-modal__cb {
    margin-top: 2px;
    accent-color: #2c9288;
    flex-shrink: 0;
}

.callback-modal__consent-link {
    color: #2c9288;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.callback-modal__consent-link:hover {
    color: var(--sky-teal);
}

.callback-modal__submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.8rem;
    border: none;
    border-radius: 0.65rem;
    background: linear-gradient(135deg, #1B4B5A 0%, #2c9288 100%);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 20px rgba(27, 75, 90, 0.25);
    position: relative;
    overflow: hidden;
    margin-top: 0.3rem;
}

.callback-modal__submit::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.25) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: rotate(30deg);
    animation: shimmer 3s infinite;
}

.callback-modal__submit:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 14px 35px rgba(27, 75, 90, 0.35);
    filter: brightness(1.1);
}

.callback-modal__submit:active {
    transform: translateY(-1px) scale(0.98);
}

.callback-modal__submit:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
}

.callback-modal__trust {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.85rem;
    padding-top: 0.7rem;
    border-top: 1px solid var(--gray-200);
}

.callback-modal__trust span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.7rem;
    color: var(--gray-400);
    font-weight: 500;
}

.callback-modal__trust i {
    color: #2c9288;
    font-size: 0.85rem;
}

/* Scrollbar styling for modal */
.callback-modal::-webkit-scrollbar {
    width: 6px;
}

.callback-modal::-webkit-scrollbar-track {
    background: transparent;
}

.callback-modal::-webkit-scrollbar-thumb {
    background: var(--gray-200);
    border-radius: 3px;
}

.callback-modal::-webkit-scrollbar-thumb:hover {
    background: var(--gray-400);
}

/* Mobile responsive */
@media (max-width: 480px) {
    .callback-modal {
        padding: 2rem 1.25rem 1.5rem;
        border-radius: 1.25rem;
    }

    .callback-modal__title {
        font-size: 1.25rem;
    }

    .callback-modal__trust {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
}

/* ===== END CALLBACK MODAL ===== */

/* ===== JOURNAL SECTION ===== */
.journal-section {
    padding: 4rem 1rem 3rem;
    background: var(--gray-50);
}

.journal-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 2.5rem 2rem;
    background: #ffffff;
    border-radius: 1.5rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--gray-200);
}

.journal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.journal-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    margin: 0;
}

.journal-view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: #2563eb;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease, gap 0.2s ease;
    white-space: nowrap;
}

.journal-view-all:hover {
    color: #1d4ed8;
    gap: 0.55rem;
}

.journal-view-all i {
    font-size: 0.7rem;
    transition: transform 0.2s ease;
}

.journal-view-all:hover i {
    transform: translateX(3px);
}

.journal-carousel-wrapper {
    position: relative;
}

.journal-carousel {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.journal-carousel::-webkit-scrollbar {
    display: none;
}

.journal-card {
    flex: 0 0 240px;
    min-height: 160px;
    background: #ffffff;
    border: 1px solid var(--gray-200);
    border-radius: 1rem;
    padding: 1.25rem 1.25rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    scroll-snap-align: start;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.journal-card:hover {
    border-color: #2563eb;
    box-shadow: 0 16px 40px -10px rgba(37, 99, 235, 0.15), 0 6px 16px -4px rgba(37, 99, 235, 0.08);
    transform: translateY(-3px);
}

.journal-card-reading {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-500);
    background: var(--gray-200);
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
    width: fit-content;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.journal-card-reading i {
    font-size: 0.65rem;
}

.journal-card:hover .journal-card-reading {
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
}

.journal-card-title {
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.45;
    color: var(--gray-800);
    margin: 0 0 auto;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-family: "Montserrat", sans-serif;
}

.journal-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--gray-200);
}

.journal-card-category {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-500);
    letter-spacing: 0.01em;
}

.journal-card-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.journal-card-logo {
    width: 28px;
    height: 28px;
    object-fit: contain;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.journal-card:hover .journal-card-logo {
    transform: scale(1.15);
}

/* Р Р†РІР‚СњР вЂљР Р†РІР‚СњР вЂљ Featured Article Card Р Р†РІР‚СњР вЂљР Р†РІР‚СњР вЂљР Р†РІР‚СњР вЂљР Р†РІР‚СњР вЂљР Р†РІР‚СњР вЂљР Р†РІР‚СњР вЂљР Р†РІР‚СњР вЂљР Р†РІР‚СњР вЂљР Р†РІР‚СњР вЂљР Р†РІР‚СњР вЂљР Р†РІР‚СњР вЂљР Р†РІР‚СњР вЂљР Р†РІР‚СњР вЂљР Р†РІР‚СњР вЂљР Р†РІР‚СњР вЂљР Р†РІР‚СњР вЂљР Р†РІР‚СњР вЂљР Р†РІР‚СњР вЂљР Р†РІР‚СњР вЂљР Р†РІР‚СњР вЂљР Р†РІР‚СњР вЂљР Р†РІР‚СњР вЂљР Р†РІР‚СњР вЂљР Р†РІР‚СњР вЂљР Р†РІР‚СњР вЂљР Р†РІР‚СњР вЂљР Р†РІР‚СњР вЂљР Р†РІР‚СњР вЂљР Р†РІР‚СњР вЂљР Р†РІР‚СњР вЂљР Р†РІР‚СњР вЂљР Р†РІР‚СњР вЂљ */
.journal-card--featured {
    text-decoration: none;
    color: inherit;
}

.journal-card-category--highlight {
    color: #1e293b;
    font-weight: 700;
    transition: color 0.3s ease;
}

.journal-card:hover .journal-card-category--highlight {
    color: #2563eb;
}

/* Navigation Buttons */
.journal-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 40px;
    border: none;
    background: transparent;
    color: #d1d5db;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.25s ease;
    z-index: 5;
}

.journal-nav-btn:hover {
    color: #4b5563;
}

.journal-nav-prev {
    left: -16px;
}

.journal-nav-prev:hover {
    transform: translateY(-50%) translateX(-4px);
}

.journal-nav-next {
    right: -16px;
}

.journal-nav-next:hover {
    transform: translateY(-50%) translateX(4px);
}

@media (max-width: 768px) {
    .journal-section {
        padding: 2.5rem 0.5rem 2rem;
    }

    .journal-container {
        padding: 1.5rem 1rem;
        border-radius: 1rem;
    }

    .journal-title {
        font-size: 1.25rem;
    }

    .journal-card {
        flex: 0 0 200px;
        min-height: 140px;
        padding: 1rem;
    }

    .journal-card-title {
        font-size: 0.82rem;
    }

    .journal-nav-btn {
        display: none;
    }
}

/* ===== END JOURNAL SECTION ===== */
/* ===== FINAL MOBILE HERO FIXES =====
   This block intentionally lives at the end of the file so it can override
   earlier duplicate mobile rules and the inline desktop spacing used on the
   hero markup. */
@media (max-width: 768px) {

    html,
    body {
        overflow-x: hidden !important;
    }

    body {
        padding-bottom: 92px !important;
    }

    .sky-header,
    .sky-header.header-scrolled {
        top: max(0.5rem, env(safe-area-inset-top)) !important;
        left: 0.5rem !important;
        right: 0.5rem !important;
        width: auto !important;
        transform: none !important;
        max-width: none !important;
    }

    .sky-header-container {
        border-radius: 24px !important;
    }

    .sky-header-inner {
        min-height: 68px !important;
        height: auto !important;
        padding: 0.5rem 1rem !important;
        gap: 0.75rem !important;
    }

    .header-logo-img {
        height: 2.15rem !important;
        width: auto !important;
    }

    .sky-logo-text {
        font-size: 1.02rem !important;
        line-height: 1 !important;
        max-width: none !important;
        min-width: 0 !important;
        `r`n margin-left: 0 !important;
        `r`n flex: 0 1 auto !important;
        `r`n white-space: nowrap !important;
        `r`n overflow: visible !important;
        `r`n text-overflow: clip !important;
    }

    .sky-header-right {
        gap: 0.5rem !important;
    }

    .sky-phone,
    .sky-nav {
        display: none !important;
    }

    .sky-nav-socials {
        display: none !important;
    }

    .sky-mobile-socials {
        display: flex !important;
        gap: 0.45rem !important;
    }

    .sky-mobile-social-link {
        width: 40px !important;
        height: 40px !important;
    }

    .sky-mobile-social-link.max {
        width: 42px !important;
        height: 42px !important;
    }

    .sky-mobile-social-icon {
        width: 20px !important;
        height: 20px !important;
        transform: none !important;
    }

    .sky-mobile-social-link.max .sky-mobile-social-icon {
        transform: scale(1.15) !important;
    }

    .sky-mobile-toggle {
        width: 40px !important;
        height: 40px !important;
        flex-shrink: 0 !important;
    }

    .sky-hero {
        min-height: auto !important;
        padding-top: calc(4.9rem + env(safe-area-inset-top)) !important;
        padding-bottom: 1.25rem !important;
        overflow: clip !important;
    }

    .sky-hero-container {
        padding-inline: 0.65rem !important;
    }

    .sky-floating-card {
        display: none !important;
    }

    .sky-hero-master-img {
        position: relative !important;
        top: 0 !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 100vw !important;
        max-width: none !important;
        height: clamp(290px, 80vw, 370px) !important;
        object-fit: cover !important;
        object-position: center 22% !important;
        margin: -4.7rem auto -64px !important;
        display: block !important;
        z-index: 1 !important;
        -webkit-mask-image: linear-gradient(to bottom, black 72%, transparent 100%) !important;
        mask-image: linear-gradient(to bottom, black 72%, transparent 100%) !important;
    }

    .sky-hero-content-wrapper {
        margin-top: 0 !important;
        padding-left: 0.65rem !important;
        padding-right: 0.65rem !important;
        max-width: 100% !important;
        width: 100% !important;
        position: relative !important;
        z-index: 2 !important;
    }

    .sky-offer-bubble {
        width: 100% !important;
        padding: 0.95rem 1rem 0.8rem !important;
        border-radius: 24px 24px 0 0 !important;
        margin-bottom: -12px !important;
        top: 0 !important;
    }

    .sky-offer-bubble h1,
    .estimate-title {
        font-size: clamp(1.25rem, 5.3vw, 1.65rem) !important;
        line-height: 1.12 !important;
        max-width: 100% !important;
    }

    .sky-offer-bubble h1 {
        margin: 0 !important;
    }

    .sky-offer-bubble h2 {
        margin: 0 !important;
        font-size: clamp(1.25rem, 5.3vw, 1.65rem) !important;
        line-height: 1.12 !important;
    }

    .sky-form-panel,
    .estimate-conversion-container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 1.2rem 0.9rem 1rem !important;
        border-radius: 24px !important;
    }

    .estimate-conversion-container {
        gap: 1rem !important;
    }

    .estimate-content {
        gap: 0.45rem !important;
    }

    .estimate-conversion-container[style] {
        padding-top: 1.25rem !important;
    }

    .estimate-subtitle,
    .sky-form-subheading {
        font-size: 1.02rem !important;
        line-height: 1.45 !important;
        margin-bottom: 0.9rem !important;
    }

    .estimate-btn,
    .sky-btn-primary {
        width: 100% !important;
        min-width: 0 !important;
        padding: 0.95rem 1rem !important;
        font-size: 0.96rem !important;
        white-space: normal !important;
        text-align: center !important;
    }

    .estimate-trust-triggers {
        flex-direction: column !important;
        gap: 0.75rem !important;
        align-items: center !important;
    }

    .trust-trigger {
        font-size: 0.78rem !important;
    }

    .estimate-error-margin {
        margin-top: 0.55rem !important;
        font-size: 0.75rem !important;
    }

    .mobile-bottom-nav {
        left: 8px !important;
        right: 8px !important;
        bottom: calc(10px + env(safe-area-inset-bottom, 0px)) !important;
        padding: 10px 8px 8px !important;
        border-radius: 28px !important;
    }

    .mobile-bottom-nav__item {
        min-width: 48px !important;
        height: 52px !important;
        font-size: 0.62rem !important;
    }

    .mobile-bottom-nav__calc-icon {
        width: 50px !important;
        height: 50px !important;
        margin-top: -24px !important;
    }

    .mobile-bottom-nav__social-icon {
        width: 22px !important;
        height: 22px !important;
        transform: scale(2) !important;
    }

    .contact-widget {
        bottom: calc(92px + 1rem) !important;
    }

    #cookie-banner.is-visible {
        bottom: 92px !important;
    }
}




@media (max-width: 768px) {
    .sky-logo {
        flex: 1 1 auto !important;
        min-width: 0 !important;
        gap: 0.4rem !important;
        overflow: visible !important;
    }

    .sky-logo-text {
        margin-left: 0 !important;
        font-size: 1.02rem !important;
        max-width: none !important;
        min-width: 0 !important;
        flex: 0 1 auto !important;
        white-space: nowrap !important;
        overflow: visible !important;
        text-overflow: clip !important;
    }

    .sky-header-inner {
        min-height: 68px !important;
        padding: 0.5rem 1rem !important;
        gap: 0.75rem !important;
    }

    .sky-header-right {
        gap: 0.5rem !important;
        flex: 0 0 auto !important;
    }

    .sky-mobile-socials {
        display: flex !important;
        gap: 0.45rem !important;
    }

    .sky-mobile-social-link,
    .sky-mobile-social-link.max {
        width: 44px !important;
        height: 44px !important;
    }

    .sky-mobile-social-icon {
        width: 24px !important;
        height: 24px !important;
        transform: none !important;
    }

    .sky-mobile-social-link.max .sky-mobile-social-icon {
        transform: scale(1.15) !important;
    }

    .sky-mobile-toggle {
        width: 44px !important;
        height: 44px !important;
        flex-shrink: 0 !important;
    }
}



@media (max-width: 768px) {

    .sky-header,
    .sky-header.header-scrolled {
        top: max(0.45rem, env(safe-area-inset-top)) !important;
        left: 0.15rem !important;
        right: 0.15rem !important;
    }

    .sky-header-container {
        border-radius: 34px !important;
    }

    .sky-header-inner {
        min-height: 76px !important;
        padding: 0.45rem 0.85rem 0.45rem 1rem !important;
        gap: 0.5rem !important;
    }

    .sky-logo {
        flex: 1 1 auto !important;
        min-width: 0 !important;
        max-width: none !important;
        gap: 0 !important;
        overflow: visible !important;
    }

    .sky-logo .header-logo-img {
        width: min(54vw, 270px) !important;
        height: 58px !important;
        max-width: calc(100vw - 186px) !important;
        object-fit: contain !important;
        object-position: left center !important;
        flex: 0 1 auto !important;
    }

    .sky-logo-text {
        display: none !important;
    }

    .sky-header-right {
        margin-left: auto !important;
        gap: 0.55rem !important;
        flex: 0 0 auto !important;
    }

    .sky-mobile-socials {
        display: flex !important;
        gap: 0.55rem !important;
        flex: 0 0 auto !important;
    }

    .sky-mobile-social-link,
    .sky-mobile-social-link.max,
    .sky-mobile-toggle {
        width: 46px !important;
        height: 46px !important;
        flex: 0 0 46px !important;
    }

    .sky-mobile-social-icon {
        width: 26px !important;
        height: 26px !important;
        transform: none !important;
    }

    .sky-mobile-social-link.max .sky-mobile-social-icon {
        transform: scale(1.2) !important;
    }
}

@media (max-width: 768px) {

    .sky-header,
    .sky-header.header-scrolled {
        left: 0.12rem !important;
        right: 0.12rem !important;
    }

    .sky-header-inner {
        min-height: 76px !important;
        padding: 0.45rem 0.7rem 0.45rem 0.9rem !important;
        gap: 0.45rem !important;
    }

    .sky-logo {
        flex: 1 1 auto !important;
        min-width: 0 !important;
        gap: 0.45rem !important;
        overflow: visible !important;
    }

    .sky-logo .header-logo-img {
        width: 52px !important;
        height: 58px !important;
        max-width: 52px !important;
        object-fit: cover !important;
        object-position: left center !important;
        flex: 0 0 52px !important;
    }

    .sky-logo-text {
        display: inline-block !important;
        margin-left: 0 !important;
        font-size: 1.02rem !important;
        line-height: 1 !important;
        max-width: none !important;
        white-space: nowrap !important;
        overflow: visible !important;
        text-overflow: clip !important;
        flex: 0 1 auto !important;
    }

    .sky-header-right {
        margin-left: auto !important;
        gap: 0.45rem !important;
        flex: 0 0 auto !important;
    }

    .sky-mobile-socials {
        gap: 0.45rem !important;
    }

    .sky-mobile-social-link,
    .sky-mobile-social-link.max,
    .sky-mobile-toggle {
        width: 46px !important;
        height: 46px !important;
        flex: 0 0 46px !important;
    }
}

@media (max-width: 768px) {
    .sky-logo .header-logo-img {
        width: 46px !important;
        height: 52px !important;
        max-width: 46px !important;
        flex-basis: 46px !important;
    }

    .sky-mobile-social-icon {
        width: 46px !important;
        height: 40px !important;
    }

    .sky-mobile-social-link.max .sky-mobile-social-icon {
        transform: scale(1.22) !important;
    }
}

@media (max-width: 768px) {
    .sky-logo .header-logo-img {
        width: 44px !important;
        height: 48px !important;
        max-width: 44px !important;
        flex-basis: 44px !important;
        object-fit: contain !important;
        object-position: center center !important;
    }

    .sky-logo {
        gap: 0.38rem !important;
    }

    .sky-mobile-social-icon {
        width: 40px !important;
        height: 40px !important;
        object-fit: contain !important;
    }

    .sky-mobile-social-link.max .sky-mobile-social-icon {
        transform: scale(1.34) !important;
    }
}


@media (max-width: 768px) {

    /* === Р С™Р С•Р Р…РЎвЂљР ВµР в„–Р Р…Р ВµРЎР‚ РЎв‚¬Р В°Р С—Р С”Р С‘ === */
    .sky-header-container {
        border-radius: 28px !important;
    }

    .sky-header-inner {
        min-height: 66px !important;
        height: 66px !important;
        padding: 0 0.85rem !important;
        gap: 0.5rem !important;
        align-items: center !important;
    }

    /* === Р вЂєР С•Р С–Р С•РЎвЂљР С‘Р С— === */
    .sky-logo {
        display: flex !important;
        align-items: center !important;
        gap: 0.4rem !important;
        flex: 1 1 auto !important;
        min-width: 0 !important;
    }

    .sky-logo .header-logo-img {
        width: 60px !important;
        height: 60px !important;
        max-width: 60px !important;
        flex: 0 0 60px !important;
        object-fit: contain !important;
    }

    .sky-logo-text {
        display: inline-flex !important;
        align-items: center !important;
        font-family: "Unbounded", sans-serif !important;
        font-size: 1.05rem !important;
        line-height: 1.2 !important;
        font-weight: 700 !important;
        white-space: nowrap !important;
        overflow: visible !important;
        flex-shrink: 1 !important;
        min-width: 0 !important;
    }

    /* === Р СџРЎР‚Р В°Р Р†Р В°РЎРЏ РЎвЂЎР В°РЎРѓРЎвЂљРЎРЉ РЎв‚¬Р В°Р С—Р С”Р С‘ === */
    .sky-header-right {
        display: flex !important;
        align-items: center !important;
        gap: 0.4rem !important;
        margin-left: auto !important;
        flex: 0 0 auto !important;
    }

    /* === Р ВР С”Р С•Р Р…Р С”Р С‘ РЎРѓР С•РЎвЂ РЎРѓР ВµРЎвЂљР ВµР в„– (Р СР С•Р В±Р С‘Р В»РЎРЉР Р…РЎвЂ№Р Вµ) === */
    .sky-mobile-socials {
        display: flex !important;
        align-items: center !important;
        gap: 0.05rem !important;
        margin-right: 0 !important;
    }

    .sky-mobile-social-link,
    .sky-mobile-social-link.max {
        width: 60px !important;
        height: 60px !important;
        flex: 0 0 60px !important;
        padding: 0 !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        overflow: visible !important;
    }

    /* Telegram РІР‚вЂќ scale(1.15) РЎвЂЎРЎвЂљР С•Р В±РЎвЂ№ РЎРѓР С•Р Р†Р С—Р В°РЎРѓРЎвЂљРЎРЉ РЎРѓ MAX */
    .sky-mobile-social-link.telegram .sky-mobile-social-icon {
        width: 58px !important;
        height: 58px !important;
        transform: scale(1.15) !important;
        filter: none !important;
    }

    /* MAX РІР‚вЂќ scale(1.25), РЎвЂЎРЎС“РЎвЂљРЎРЉ Р СР ВµР Р…РЎРЉРЎв‚¬Р Вµ РЎвЂЎР ВµР С Р В±РЎвЂ№Р В»Р С• 1.35 */
    .sky-mobile-social-link.max .sky-mobile-social-icon {
        width: 58px !important;
        height: 58px !important;
        transform: scale(1.25) !important;
        filter: none !important;
    }

    .sky-mobile-social-icon {
        object-fit: contain !important;
    }

    /* === Р С™Р Р…Р С•Р С—Р С”Р В° Р В±РЎС“РЎР‚Р С–Р ВµРЎР‚-Р СР ВµР Р…РЎР‹ === */
    .sky-mobile-toggle {
        width: 36px !important;
        height: 36px !important;
        flex: 0 0 36px !important;
        padding: 0 !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        color: #1e293b !important;
    }

    /* Р СџР С•Р В»Р С•РЎРѓР С”Р С‘ Р В±РЎС“РЎР‚Р С–Р ВµРЎР‚Р В° РІР‚вЂќ Р С”Р С•Р СР С—Р В°Р С”РЎвЂљР Р…РЎвЂ№Р Вµ Р С‘ РЎвЂЎРЎвЂРЎвЂљР С”Р С‘Р Вµ */
    .sky-mobile-toggle .burger-icon {
        width: 22px !important;
        height: 16px !important;
    }

    .sky-mobile-toggle .burger-icon::before {
        height: 2px !important;
        border-radius: 2px !important;
        box-shadow: 0 7px 0 currentColor, 0 14px 0 currentColor !important;
    }
}

.pf-card[hidden] {
    display: none;
}

.pf-card--revealed {
    animation: pfCardIn 0.55s both;
}

.portfolio-show-all {
    display: flex;
    justify-content: center;
    margin: 3rem 0 1rem;
}

.portfolio-show-all[hidden] {
    display: none;
}

.btn-show-all {
    padding: 0.9rem 2.6rem;
    border: 0;
    border-radius: 2rem;
    background: var(--pf-accent);
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(247, 149, 33, 0.28);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-show-all:hover {
    background: #ff8517;
    box-shadow: 0 11px 28px rgba(247, 149, 33, 0.38);
    transform: translateY(-2px);
}

.btn-show-all:focus-visible {
    outline: 3px solid rgba(1, 167, 157, 0.35);
    outline-offset: 4px;
}
/* Final mobile header sizing */
@media (max-width: 768px) {
    .sky-header-inner {
        min-height: 62px !important;
        height: 62px !important;
        padding: 0 0.7rem 0 0.85rem !important;
        gap: 0.35rem !important;
    }

    .sky-logo {
        gap: 0.35rem !important;
    }

    .sky-logo .header-logo-img {
        width: 62px !important;
        height: 62px !important;
        max-width: 62px !important;
        flex: 0 0 62px !important;
    }

    .sky-logo-text {
        font-size: clamp(1.05rem, 4.8vw, 1.2rem) !important;
        line-height: 1.05 !important;
    }

    .sky-header-right {
        gap: 0.25rem !important;
    }

    .sky-mobile-socials {
        gap: 0.1rem !important;
    }

    .sky-mobile-social-link,
    .sky-mobile-social-link.max {
        width: 40px !important;
        height: 40px !important;
        flex: 0 0 40px !important;
    }

    .sky-mobile-social-link.telegram .sky-mobile-social-icon,
    .sky-mobile-social-link.max .sky-mobile-social-icon {
        width: 32px !important;
        height: 32px !important;
        transform: none !important;
    }

    .sky-mobile-toggle {
        width: 36px !important;
        height: 36px !important;
        flex: 0 0 36px !important;
    }
}





/* Mobile header reference layout */
@media (max-width: 768px) {
    .sky-header,
    .sky-header.header-scrolled {
        top: max(0.35rem, env(safe-area-inset-top)) !important;
        left: 0.3rem !important;
        right: 0.3rem !important;
        width: auto !important;
    }

    .sky-header-container {
        height: 80px !important;
        min-height: 80px !important;
        background: #ffffff !important;
        border-radius: 999px !important;
        box-shadow: 0 3px 10px rgba(15, 23, 42, 0.14) !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    .sky-header-inner {
        height: 80px !important;
        min-height: 80px !important;
        padding: 0 0.95rem 0 0.7rem !important;
        gap: 0.55rem !important;
    }

    .sky-logo {
        gap: 0.55rem !important;
        flex: 1 1 auto !important;
        min-width: 0 !important;
        overflow: visible !important;
    }

    .sky-logo .header-logo-img {
        width: 70px !important;
        height: 70px !important;
        max-width: 70px !important;
        flex: 0 0 70px !important;
        object-fit: contain !important;
    }

    .sky-logo-text {
        display: inline-flex !important;
        align-items: center !important;
        font-family: "Montserrat", sans-serif !important;
        font-size: clamp(1.12rem, 5.8vw, 2.55rem) !important;
        font-weight: 900 !important;
        line-height: 1 !important;
        letter-spacing: -0.045em !important;
        white-space: nowrap !important;
        overflow: visible !important;
        background: linear-gradient(90deg, #2376c8 0%, #168dc7 52%, #13a7b3 100%) !important;
        -webkit-background-clip: text !important;
        background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        color: #2376c8 !important;
    }

    .sky-header-right {
        gap: 0.35rem !important;
        flex: 0 0 auto !important;
    }

    .sky-mobile-socials {
        gap: 0.15rem !important;
    }

    .sky-mobile-social-link,
    .sky-mobile-social-link.max {
        width: 48px !important;
        height: 48px !important;
        flex: 0 0 48px !important;
        padding: 0 !important;
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
    }

    .sky-mobile-social-link.telegram .sky-mobile-social-icon,
    .sky-mobile-social-link.max .sky-mobile-social-icon {
        width: 43px !important;
        height: 43px !important;
        transform: none !important;
        object-fit: contain !important;
    }

    .sky-mobile-toggle {
        width: 42px !important;
        height: 42px !important;
        flex: 0 0 42px !important;
        padding: 0 !important;
        color: #171717 !important;
    }

    .sky-mobile-toggle .burger-icon {
        width: 25px !important;
        height: 18px !important;
    }
}

@media (max-width: 480px) {
    .sky-logo .header-logo-img {
        width: 60px !important;
        height: 60px !important;
        max-width: 60px !important;
        flex-basis: 60px !important;
    }

    .sky-logo-text {
        font-size: 1.05rem !important;
        letter-spacing: -0.04em !important;
    }

    .sky-mobile-social-link,
    .sky-mobile-social-link.max {
        width: 40px !important;
        height: 40px !important;
        flex-basis: 40px !important;
    }

    .sky-mobile-social-link.telegram .sky-mobile-social-icon,
    .sky-mobile-social-link.max .sky-mobile-social-icon {
        width: 36px !important;
        height: 36px !important;
    }

    .sky-mobile-toggle {
        width: 36px !important;
        height: 36px !important;
        flex-basis: 36px !important;
    }
}

/* Mobile header correction */
@media (max-width: 768px) {
    .sky-logo-text {
        font-family: "Unbounded", sans-serif !important;
        font-size: 1.05rem !important;
        font-weight: 700 !important;
        letter-spacing: normal !important;
        background: none !important;
        -webkit-background-clip: initial !important;
        background-clip: initial !important;
        -webkit-text-fill-color: initial !important;
        color: #1a1a1a !important;
    }

    .sky-mobile-social-link,
    .sky-mobile-social-link.max {
        width: 52px !important;
        height: 52px !important;
        flex-basis: 52px !important;
    }

    .sky-mobile-social-link.telegram .sky-mobile-social-icon,
    .sky-mobile-social-link.max .sky-mobile-social-icon {
        width: 48px !important;
        height: 48px !important;
        transform: none !important;
    }
}

@media (max-width: 480px) {
    .sky-mobile-social-link,
    .sky-mobile-social-link.max {
        width: 48px !important;
        height: 48px !important;
        flex-basis: 48px !important;
    }

    .sky-mobile-social-link.telegram .sky-mobile-social-icon,
    .sky-mobile-social-link.max .sky-mobile-social-icon {
        width: 44px !important;
        height: 44px !important;
    }
}

/* Refined mobile header based on desktop styling */
@media (max-width: 768px) {
    .sky-header-container {
        height: 68px !important;
        min-height: 68px !important;
        border-radius: 9999px !important;
        background: #ffffff !important;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08) !important;
    }

    .sky-header-inner {
        height: 68px !important;
        min-height: 68px !important;
        padding: 0 0.8rem !important;
        gap: 0.45rem !important;
    }

    .sky-logo {
        gap: 0.4rem !important;
        flex: 1 1 auto !important;
    }

    .sky-logo .header-logo-img {
        width: 56px !important;
        height: 56px !important;
        max-width: 56px !important;
        flex: 0 0 56px !important;
        object-fit: contain !important;
    }

    .sky-logo-text {
        margin-left: 0 !important;
        font-family: "Unbounded", sans-serif !important;
        font-size: clamp(0.9rem, 4.4vw, 1.25rem) !important;
        font-weight: 900 !important;
        letter-spacing: 0.01em !important;
        line-height: 1 !important;
        background: linear-gradient(to right, #2563EB 0%, #10b981 45%, #2563EB 100%) !important;
        background-size: 200% auto !important;
        -webkit-background-clip: text !important;
        background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        animation: logoShimmer 6s linear infinite !important;
    }

    .sky-header-right {
        gap: 0.25rem !important;
    }

    .sky-mobile-socials {
        gap: 0.05rem !important;
        margin-right: 0 !important;
    }

    .sky-mobile-social-link,
    .sky-mobile-social-link.max {
        width: 50px !important;
        height: 50px !important;
        flex: 0 0 50px !important;
        border: 0 !important;
        border-radius: 50% !important;
        background: transparent !important;
        box-shadow: none !important;
    }

    .sky-mobile-social-link.telegram .sky-mobile-social-icon,
    .sky-mobile-social-link.max .sky-mobile-social-icon {
        width: 46px !important;
        height: 46px !important;
        transform: none !important;
        object-fit: contain !important;
    }

    .sky-mobile-toggle {
        width: 38px !important;
        height: 38px !important;
        flex: 0 0 38px !important;
        color: #1a1a1a !important;
    }

    .sky-mobile-toggle .burger-icon {
        width: 23px !important;
        height: 16px !important;
    }
}

@media (max-width: 480px) {
    .sky-logo .header-logo-img {
        width: 52px !important;
        height: 52px !important;
        max-width: 52px !important;
        flex-basis: 52px !important;
    }

    .sky-logo-text {
        font-size: 0.88rem !important;
    }

    .sky-mobile-social-link,
    .sky-mobile-social-link.max {
        width: 44px !important;
        height: 44px !important;
        flex-basis: 44px !important;
    }

    .sky-mobile-social-link.telegram .sky-mobile-social-icon,
    .sky-mobile-social-link.max .sky-mobile-social-icon {
        width: 41px !important;
        height: 41px !important;
    }
}

/* Mobile logo text size */
@media (max-width: 768px) {
    .sky-logo-text {
        font-size: clamp(1rem, 4.8vw, 1.35rem) !important;
    }
}

@media (max-width: 480px) {
    .sky-logo-text {
        font-size: 0.98rem !important;
    }
}

/* Larger mobile logo text */
@media (max-width: 768px) {
    .sky-logo-text {
        font-size: clamp(1.08rem, 5.2vw, 1.5rem) !important;
    }
}

@media (max-width: 480px) {
    .sky-logo-text {
        font-size: 1.08rem !important;
    }
}

/* Animated larger mobile logo text */
@media (max-width: 768px) {
    .sky-logo-text {
        font-size: clamp(1.18rem, 5.8vw, 1.7rem) !important;
        background: linear-gradient(90deg, #1769c2 0%, #21a9d0 25%, #11b889 50%, #21a9d0 75%, #1769c2 100%) !important;
        background-size: 250% auto !important;
        -webkit-background-clip: text !important;
        background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        animation: logoShimmer 3s ease-in-out infinite !important;
    }
}

@media (max-width: 480px) {
    .sky-logo-text {
        font-size: 1.18rem !important;
    }
}

/* Match desktop logo text animation on mobile */
@media (max-width: 768px) {
    .sky-logo-text {
        background: linear-gradient(to right, #2563EB 0%, #10b981 25%, #3b82f6 50%, #10b981 75%, #2563EB 100%) !important;
        background-size: 200% auto !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        background-clip: text !important;
        color: transparent !important;
        -webkit-text-stroke: 0.5px rgba(37, 99, 235, 0.4) !important;
        animation: logoShimmer 8s linear infinite !important;
    }
}

/* Final mobile logo text size and desktop shimmer */
@media (max-width: 768px) {
    .sky-logo-text {
        font-size: clamp(1.3rem, 6.5vw, 1.85rem) !important;
        background: linear-gradient(to right, #2563EB 0%, #10b981 25%, #3b82f6 50%, #10b981 75%, #2563EB 100%) !important;
        background-size: 200% auto !important;
        background-position: 0% center !important;
        -webkit-background-clip: text !important;
        background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        color: transparent !important;
        animation: logoShimmer 8s linear infinite !important;
        will-change: background-position !important;
    }
}

@media (max-width: 480px) {
    .sky-logo-text {
        font-size: 1.3rem !important;
    }
}

@keyframes mobileLogoShimmer {
    0% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
    100% {
        background-position: 200% center;
    }
}

@media (max-width: 768px) {
    .sky-logo-text {
        background-image: linear-gradient(90deg, #2563EB 0%, #10b981 25%, #3b82f6 50%, #10b981 75%, #2563EB 100%) !important;
        background-size: 200% 100% !important;
        animation-name: mobileLogoShimmer !important;
        animation-duration: 8s !important;
        animation-timing-function: linear !important;
        animation-iteration-count: infinite !important;
    }
}

/* Mobile header visual scale and visible shimmer */
@media (max-width: 768px) {
    .sky-logo .header-logo-img {
        width: 70px !important;
        height: 64px !important;
        max-width: 70px !important;
        flex-basis: 70px !important;
    }

    .sky-logo-text {
        font-size: clamp(1.35rem, 6.5vw, 1.85rem) !important;
        background-image: linear-gradient(90deg, #2563EB 0%, #10b981 20%, #3b82f6 40%, #10b981 60%, #2563EB 80%, #10b981 100%) !important;
        background-size: 400% 100% !important;
        background-repeat: no-repeat !important;
        animation: mobileLogoShimmer 4s linear infinite !important;
    }

    .sky-mobile-social-link,
    .sky-mobile-social-link.max {
        width: 58px !important;
        height: 58px !important;
        flex-basis: 58px !important;
    }

    .sky-mobile-social-link.telegram .sky-mobile-social-icon,
    .sky-mobile-social-link.max .sky-mobile-social-icon {
        width: 54px !important;
        height: 54px !important;
    }
}

@media (max-width: 480px) {
    .sky-logo .header-logo-img {
        width: 64px !important;
        height: 60px !important;
        max-width: 64px !important;
        flex-basis: 64px !important;
    }

    .sky-logo-text {
        font-size: 1.35rem !important;
    }

    .sky-mobile-social-link,
    .sky-mobile-social-link.max {
        width: 52px !important;
        height: 52px !important;
        flex-basis: 52px !important;
    }

    .sky-mobile-social-link.telegram .sky-mobile-social-icon,
    .sky-mobile-social-link.max .sky-mobile-social-icon {
        width: 49px !important;
        height: 49px !important;
    }
}

/* Keep mobile header elements from overlapping */
@media (max-width: 768px) {
    .sky-logo {
        min-width: 0 !important;
        overflow: hidden !important;
    }

    .sky-logo .header-logo-img {
        width: 58px !important;
        height: 56px !important;
        max-width: 58px !important;
        flex-basis: 58px !important;
    }

    .sky-logo-text {
        min-width: 0 !important;
        overflow: hidden !important;
        text-overflow: clip !important;
        font-size: 1.18rem !important;
        flex: 1 1 auto !important;
    }

    .sky-mobile-social-link,
    .sky-mobile-social-link.max {
        width: 46px !important;
        height: 46px !important;
        flex-basis: 46px !important;
    }

    .sky-mobile-social-link.telegram .sky-mobile-social-icon,
    .sky-mobile-social-link.max .sky-mobile-social-icon {
        width: 43px !important;
        height: 43px !important;
    }

    .sky-mobile-toggle {
        width: 34px !important;
        height: 34px !important;
        flex-basis: 34px !important;
    }
}

@media (max-width: 480px) {
    .sky-logo .header-logo-img {
        width: 54px !important;
        height: 54px !important;
        max-width: 54px !important;
        flex-basis: 54px !important;
    }

    .sky-logo-text {
        font-size: 1.1rem !important;
    }

    .sky-mobile-social-link,
    .sky-mobile-social-link.max {
        width: 42px !important;
        height: 42px !important;
        flex-basis: 42px !important;
    }

    .sky-mobile-social-link.telegram .sky-mobile-social-icon,
    .sky-mobile-social-link.max .sky-mobile-social-icon {
        width: 39px !important;
        height: 39px !important;
    }
}

/* Final mobile header scale: keep the 68px white capsule */
@media (max-width: 768px) {
    .sky-header-container,
    .sky-header-inner {
        height: 68px !important;
        min-height: 68px !important;
    }

    .sky-header-inner {
        padding-inline: 0.65rem !important;
    }

    .sky-logo {
        gap: 0.3rem !important;
    }

    .sky-logo .header-logo-img {
        width: 68px !important;
        height: 64px !important;
        max-width: 68px !important;
        flex: 0 0 68px !important;
    }

    .sky-logo-text {
        font-size: clamp(1.24rem, 6vw, 1.6rem) !important;
        letter-spacing: -0.015em !important;
        line-height: 1 !important;
    }

    .sky-header-right {
        gap: 0.1rem !important;
    }

    .sky-mobile-social-link,
    .sky-mobile-social-link.max {
        width: 50px !important;
        height: 50px !important;
        flex: 0 0 50px !important;
    }

    .sky-mobile-social-link.telegram .sky-mobile-social-icon,
    .sky-mobile-social-link.max .sky-mobile-social-icon {
        width: 47px !important;
        height: 47px !important;
    }

    .sky-mobile-toggle {
        width: 36px !important;
        height: 36px !important;
        flex: 0 0 36px !important;
    }
}

@media (max-width: 375px) {
    .sky-logo .header-logo-img {
        width: 60px !important;
        height: 58px !important;
        max-width: 60px !important;
        flex-basis: 60px !important;
    }

    .sky-logo-text {
        font-size: 1.1rem !important;
    }

    .sky-mobile-social-link,
    .sky-mobile-social-link.max {
        width: 44px !important;
        height: 44px !important;
        flex-basis: 44px !important;
    }

    .sky-mobile-social-link.telegram .sky-mobile-social-icon,
    .sky-mobile-social-link.max .sky-mobile-social-icon {
        width: 41px !important;
        height: 41px !important;
    }
}

/* Fit the full mobile logo title without making the header taller */
@media (max-width: 768px) {
    .sky-logo {
        overflow: visible !important;
    }

    .sky-logo .header-logo-img {
        width: 58px !important;
        height: 56px !important;
        max-width: 58px !important;
        flex: 0 0 58px !important;
        transform: scale(1.16) !important;
        transform-origin: left center !important;
    }

    .sky-logo-text {
        font-size: clamp(1.1rem, 5.45vw, 1.42rem) !important;
        letter-spacing: -0.04em !important;
        flex: 0 1 auto !important;
        overflow: visible !important;
    }

    .sky-mobile-social-link,
    .sky-mobile-social-link.max {
        width: 44px !important;
        height: 44px !important;
        flex: 0 0 44px !important;
        overflow: visible !important;
    }

    .sky-mobile-social-link.telegram .sky-mobile-social-icon,
    .sky-mobile-social-link.max .sky-mobile-social-icon {
        width: 46px !important;
        height: 46px !important;
        transform: scale(1.12) !important;
    }
}

@media (max-width: 375px) {
    .sky-logo-text {
        font-size: 1.02rem !important;
    }

    .sky-mobile-social-link,
    .sky-mobile-social-link.max {
        width: 40px !important;
        height: 40px !important;
        flex-basis: 40px !important;
    }

    .sky-mobile-social-link.telegram .sky-mobile-social-icon,
    .sky-mobile-social-link.max .sky-mobile-social-icon {
        width: 42px !important;
        height: 42px !important;
    }
}

/* Final logo and title positioning inside the mobile header */
@media (max-width: 768px) {
    .sky-logo .header-logo-img {
        transform: translateX(6px) scale(1.24) !important;
        transform-origin: left center !important;
    }

    .sky-logo-text {
        position: relative !important;
        left: -8px !important;
    }
}

@media (max-width: 375px) {
    .sky-logo .header-logo-img {
        transform: translateX(4px) scale(1.18) !important;
    }

    .sky-logo-text {
        left: -5px !important;
    }
}

@media (max-width: 768px) {
    .sky-logo-text {
        left: -14px !important;
    }
}

@media (max-width: 375px) {
    .sky-logo-text {
        left: -9px !important;
    }
}

/* Keep the animated gradient visible across every letter */
@media (max-width: 768px) {
    .sky-logo-text {
        background-repeat: repeat-x !important;
        background-size: 200% 100% !important;
        background-position: 0% center !important;
        animation: mobileLogoShimmer 8s linear infinite !important;
    }
}

/* Prevent the mobile title from shrinking beyond its gradient background */
@media (max-width: 480px) {
    .sky-logo {
        flex: 0 0 auto !important;
        overflow: visible !important;
    }

    .sky-logo-text {
        display: inline-block !important;
        flex: 0 0 auto !important;
        width: auto !important;
        min-width: max-content !important;
        overflow: visible !important;
        font-size: 1.1rem !important;
        -webkit-text-stroke: 0.5px rgba(37, 99, 235, 0.4) !important;
    }
}

@media (max-width: 375px) {
    .sky-logo-text {
        font-size: 1rem !important;
    }
}

/* Make the MAX icon more prominent in the mobile header */
@media (max-width: 768px) {
    .sky-mobile-social-link.max .sky-mobile-social-icon {
        width: 54px !important;
        height: 54px !important;
        transform: scale(1.2) !important;
    }
}

@media (max-width: 375px) {
    .sky-mobile-social-link.max .sky-mobile-social-icon {
        width: 48px !important;
        height: 48px !important;
        transform: scale(1.16) !important;
    }
}

@media (max-width: 768px) {
    .sky-mobile-social-link.max .sky-mobile-social-icon {
        width: 60px !important;
        height: 60px !important;
        transform: scale(1.3) !important;
    }
}

@media (max-width: 375px) {
    .sky-mobile-social-link.max .sky-mobile-social-icon {
        width: 54px !important;
        height: 54px !important;
        transform: scale(1.24) !important;
    }
}

@media (max-width: 768px) {
    .sky-mobile-social-link.max .sky-mobile-social-icon {
        width: 64px !important;
        height: 64px !important;
        transform: scale(1.42) !important;
    }
}

@media (max-width: 375px) {
    .sky-mobile-social-link.max .sky-mobile-social-icon {
        width: 58px !important;
        height: 58px !important;
        transform: scale(1.34) !important;
    }
}

/* Center the logo title within the mobile header capsule */
@media (max-width: 768px) {
    .sky-header-inner {
        position: relative !important;
    }

    .sky-logo-text {
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        margin: 0 !important;
        z-index: 1 !important;
        white-space: nowrap !important;
    }
}

/* Center the title in the space between the logo and Telegram */
@media (max-width: 768px) {
    .sky-logo-text {
        left: calc(50% - 30px) !important;
    }
}

@media (max-width: 375px) {
    .sky-logo-text {
        left: calc(50% - 24px) !important;
    }
}

/* Balance the title visually between the logo and Telegram */
@media (max-width: 768px) {
    .sky-logo-text {
        left: calc(50% - 45px) !important;
    }
}

@media (max-width: 375px) {
    .sky-logo-text {
        left: calc(50% - 34px) !important;
    }
}

/* Stable responsive mobile header: iPhone SE through large phones/tablets */
@media (max-width: 768px) {
    .sky-header,
    .sky-header.header-scrolled {
        top: max(6px, env(safe-area-inset-top)) !important;
        left: max(5px, env(safe-area-inset-left)) !important;
        right: max(5px, env(safe-area-inset-right)) !important;
        width: auto !important;
        max-width: none !important;
        transform: none !important;
    }

    .sky-header-container {
        height: clamp(62px, 16vw, 68px) !important;
        min-height: clamp(62px, 16vw, 68px) !important;
        border-radius: 9999px !important;
        background: #ffffff !important;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08) !important;
    }

    .sky-header-inner {
        display: grid !important;
        grid-template-columns: clamp(48px, 13vw, 58px) minmax(0, 1fr) auto !important;
        column-gap: clamp(3px, 1.3vw, 8px) !important;
        align-items: center !important;
        height: 100% !important;
        min-height: 0 !important;
        padding: 0 clamp(8px, 2.4vw, 13px) !important;
        position: relative !important;
    }

    .sky-header .sky-logo {
        display: contents !important;
    }

    .sky-header .sky-logo .header-logo-img {
        grid-column: 1 !important;
        grid-row: 1 !important;
        justify-self: start !important;
        width: clamp(50px, 13.5vw, 60px) !important;
        height: clamp(54px, 14vw, 62px) !important;
        max-width: none !important;
        object-fit: contain !important;
        position: static !important;
        transform: scale(1.18) !important;
        transform-origin: left center !important;
    }

    .sky-header .sky-logo-text {
        grid-column: 2 !important;
        grid-row: 1 !important;
        justify-self: stretch !important;
        align-self: center !important;
        position: static !important;
        inset: auto !important;
        width: 100% !important;
        min-width: 0 !important;
        margin: 0 !important;
        transform: none !important;
        display: block !important;
        overflow: visible !important;
        text-align: center !important;
        white-space: nowrap !important;
        font-size: clamp(0.76rem, 3.8vw, 1.1rem) !important;
        line-height: 1 !important;
        letter-spacing: -0.04em !important;
        background: linear-gradient(to right, #2563EB 0%, #10b981 25%, #3b82f6 50%, #10b981 75%, #2563EB 100%) !important;
        background-size: 200% auto !important;
        background-repeat: repeat-x !important;
        -webkit-background-clip: text !important;
        background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        color: transparent !important;
        animation: logoShimmer 8s linear infinite !important;
        z-index: 1 !important;
    }

    .sky-header .sky-header-right {
        grid-column: 3 !important;
        grid-row: 1 !important;
        display: flex !important;
        align-items: center !important;
        gap: clamp(0px, 0.5vw, 3px) !important;
        margin: 0 !important;
        min-width: 0 !important;
        position: relative !important;
        z-index: 2 !important;
    }

    .sky-header .sky-nav-socials,
    .sky-header .sky-phone,
    .sky-header .sky-nav {
        display: none !important;
    }

    .sky-header .sky-mobile-socials {
        display: flex !important;
        align-items: center !important;
        gap: clamp(0px, 0.5vw, 3px) !important;
        margin: 0 !important;
        flex: 0 0 auto !important;
    }

    .sky-header .sky-mobile-social-link,
    .sky-header .sky-mobile-social-link.max {
        width: clamp(38px, 10.8vw, 46px) !important;
        height: clamp(38px, 10.8vw, 46px) !important;
        flex: 0 0 clamp(38px, 10.8vw, 46px) !important;
        padding: 0 !important;
        overflow: visible !important;
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
    }

    .sky-header .sky-mobile-social-link.telegram .sky-mobile-social-icon {
        width: clamp(43px, 12vw, 52px) !important;
        height: clamp(43px, 12vw, 52px) !important;
        object-fit: contain !important;
        transform: scale(1.08) !important;
    }

    .sky-header .sky-mobile-social-link.max .sky-mobile-social-icon {
        width: clamp(55px, 15vw, 66px) !important;
        height: clamp(55px, 15vw, 66px) !important;
        object-fit: contain !important;
        transform: scale(1.3) !important;
    }

    .sky-header .sky-mobile-toggle {
        width: clamp(32px, 9vw, 38px) !important;
        height: clamp(32px, 9vw, 38px) !important;
        flex: 0 0 clamp(32px, 9vw, 38px) !important;
        padding: 0 !important;
        color: #1a1a1a !important;
    }

    .sky-header .sky-mobile-toggle .burger-icon {
        width: clamp(20px, 5.8vw, 25px) !important;
        height: 16px !important;
    }
}

/* Mobile header containment safeguards */
@media (max-width: 768px) {
    .sky-header,
    .sky-header-container,
    .sky-header-inner {
        min-width: 0 !important;
        box-sizing: border-box !important;
    }

    .sky-header-container,
    .sky-header-inner {
        width: 100% !important;
        max-width: 100% !important;
    }

    .sky-header .sky-header-right {
        justify-self: end !important;
        max-width: 100% !important;
    }
}

/* Slightly larger responsive mobile header title */
@media (max-width: 768px) {
    .sky-header .sky-logo-text {
        font-size: clamp(0.82rem, 4.1vw, 1.2rem) !important;
    }
}

/* Prominent responsive mobile header title */
@media (max-width: 768px) {
    .sky-header .sky-logo-text {
        font-size: clamp(0.9rem, 4.6vw, 1.35rem) !important;
        letter-spacing: -0.06em !important;
    }
}

/* Extra-large mobile title with compact layout slots */
@media (max-width: 768px) {
    .sky-header-inner {
        grid-template-columns: clamp(44px, 12vw, 56px) minmax(0, 1fr) auto !important;
    }

    .sky-header .sky-logo-text {
        font-size: clamp(1rem, 5.1vw, 1.5rem) !important;
        letter-spacing: -0.08em !important;
    }

    .sky-header .sky-mobile-social-link,
    .sky-header .sky-mobile-social-link.max {
        width: clamp(36px, 10vw, 44px) !important;
        height: clamp(38px, 10.8vw, 46px) !important;
        flex-basis: clamp(36px, 10vw, 44px) !important;
    }

    .sky-header .sky-mobile-toggle {
        width: clamp(30px, 8.5vw, 36px) !important;
        flex-basis: clamp(30px, 8.5vw, 36px) !important;
    }
}

/* Slightly larger mobile logo, shifted inward */
@media (max-width: 768px) {
    .sky-header .sky-logo .header-logo-img {
        transform: translateX(4px) scale(1.28) !important;
        transform-origin: left center !important;
    }
}

@media (max-width: 768px) {
    .sky-header .sky-logo .header-logo-img {
        transform: translateX(8px) scale(1.38) !important;
        transform-origin: left center !important;
    }
}

@media (max-width: 768px) {
    .sky-header .sky-logo .header-logo-img {
        transform: translateX(12px) scale(1.48) !important;
        transform-origin: left center !important;
    }
}

/* Larger mobile header title while preserving responsive fit */
@media (max-width: 768px) {
    .sky-header .sky-logo-text {
        font-size: clamp(1.05rem, 5.5vw, 1.65rem) !important;
        letter-spacing: -0.1em !important;
    }
}

/* Hide the floating contact button on mobile devices */
@media (max-width: 768px) {
    .contact-widget {
        display: none !important;
    }
}

/* Restore the brand font for the footer logo text */
.footer-logo-text,
.footer-logo-text .header-logo-accent {
    font-family: "Unbounded", sans-serif !important;
    font-weight: 800 !important;
    letter-spacing: -0.04em !important;
    line-height: 1 !important;
}

/* Slightly relax spacing in the mobile header title */
@media (max-width: 768px) {
    .sky-header .sky-logo-text {
        letter-spacing: -0.06em !important;
    }
}

/* Definitive animated brand gradient for the header title */
@keyframes headerBrandFlow {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

/* Mobile menu layout */
@media (max-width: 768px) {
    body.menu-open .mobile-bottom-nav {
        display: none !important;
    }

    #mobile-menu .mobile-menu-header .sky-logo {
        display: flex !important;
        align-items: center !important;
        flex: 0 1 auto !important;
        gap: 0.45rem !important;
        min-width: 0 !important;
        overflow: visible !important;
    }

    #mobile-menu .mobile-menu-header .header-logo-img {
        width: 58px !important;
        height: 54px !important;
        max-width: 58px !important;
        flex: 0 0 58px !important;
        object-fit: cover !important;
        object-position: left center !important;
        transform: none !important;
    }

    #mobile-menu .mobile-menu-header .sky-logo-text {
        position: static !important;
        display: inline-block !important;
        width: auto !important;
        min-width: 0 !important;
        max-width: none !important;
        margin: 0 0 0 0.2rem !important;
        transform: none !important;
        font-size: clamp(1.35rem, 6.5vw, 1.7rem) !important;
        letter-spacing: -0.06em !important;
        text-align: left !important;
        white-space: nowrap !important;
        overflow: visible !important;
    }

    #mobile-menu .mobile-menu-nav {
        align-items: center;
    }

    #mobile-menu .mobile-menu-link {
        justify-content: center;
        text-align: center;
        font-size: clamp(1.65rem, 7.5vw, 2rem);
    }

    #mobile-menu .mobile-menu-link:hover,
    #mobile-menu .mobile-menu-link:active {
        padding-left: 1rem;
    }

    #mobile-menu .mobile-menu-footer {
        align-items: center;
    }

    #mobile-menu .mobile-menu-phone {
        width: 100%;
        text-align: center;
        font-size: clamp(1.8rem, 8vw, 2.15rem);
    }

    #mobile-menu .mobile-menu-social-btn,
    #mobile-menu .mobile-menu-social-btn.telegram,
    #mobile-menu .mobile-menu-social-btn.max {
        background: transparent;
    }

    #mobile-menu .mobile-menu-social-btn .mobile-social-icon {
        width: 52px;
        height: 52px;
        max-width: none;
        object-fit: contain;
        transform-origin: center;
    }

    #mobile-menu .mobile-menu-social-btn.telegram .mobile-social-icon {
        transform: scale(1.75);
    }

    #mobile-menu .mobile-menu-social-btn.max .mobile-social-icon {
        transform: scale(2.05);
    }
}

@media (max-width: 768px) {
    .sky-header .sky-logo-text {
        background-image: linear-gradient(90deg,
                #2563eb 0%,
                #10b981 20%,
                #38bdf8 40%,
                #2563eb 60%,
                #10b981 80%,
                #2563eb 100%) !important;
        background-size: 250% 100% !important;
        background-repeat: repeat-x !important;
        -webkit-background-clip: text !important;
        background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        color: transparent !important;
        animation: headerBrandFlow 4s linear infinite !important;
        animation-play-state: running !important;
        will-change: background-position !important;
    }
}

