:root {
    --primary: #1d4ed8;
    --primary-dark: #1e40af;
    --secondary: #6366f1;
    --accent: #f43f5e;
    --page-accent: var(--primary);
    --page-accent-light: rgba(29, 78, 216, 0.15);
}

@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('../fonts/PlusJakartaSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    size-adjust: 107%;
    ascent-override: 95%;
    descent-override: 25%;
    line-gap-override: 0;
}

@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('../fonts/PlusJakartaSans-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
    size-adjust: 107%;
    ascent-override: 95%;
    descent-override: 25%;
    line-gap-override: 0;
}

@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('../fonts/PlusJakartaSans-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
    size-adjust: 107%;
    ascent-override: 95%;
    descent-override: 25%;
    line-gap-override: 0;
}

@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('../fonts/PlusJakartaSans-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
    size-adjust: 107%;
    ascent-override: 95%;
    descent-override: 25%;
    line-gap-override: 0;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 95px;
}

body {
    font-family: 'Plus Jakarta Sans', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', sans-serif;
}

@keyframes bounce {
    0%, 80%, 100% {
        transform: scale(0);
    }
    40% {
        transform: scale(1.0);
    }
}


.lazy-loader-dots {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 4px;
    z-index: 1;
}

.lazy-loader-dots div {
    width: 6px;
    height: 6px;
    background: #94a3b8;
    border-radius: 50%;
    animation: bounce 1.4s infinite ease-in-out both;
    transition: transform 0.3s ease;
}

.lazy-loader-dots div:nth-child(1) {
    animation-delay: -0.32s;
}

.lazy-loader-dots div:nth-child(2) {
    animation-delay: -0.16s;
}

.lazy-img-container:hover .lazy-loader-dots div {
    transform: scale(1.3);
    background: #64748b;
}

.group:hover .zoom-img,
article:hover .zoom-img,
.group:hover .lazy-img-container .zoom-img,
article:hover .lazy-img-container .zoom-img,
.group:hover picture .zoom-img,
article:hover picture .zoom-img {
    transform: scale(1.1) rotate(3deg) !important;
}

.zoom-img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) !important;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    transform-origin: center center;
    display: block !important;
}

picture:has(.zoom-img) {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.mesh-gradient {
    background-color: #ffffff;
    background-image: radial-gradient(at 0% 0%, rgba(29, 78, 216, 0.12) 0px, transparent 50%),
    radial-gradient(at 100% 0%, rgba(99, 102, 241, 0.12) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(29, 78, 216, 0.08) 0px, transparent 50%),
    radial-gradient(at 0% 100%, rgba(29, 78, 216, 0.08) 0px, transparent 50%);
}

.hero-visual-container {
    position: relative;
    height: 584px;
    width: 584px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
}

.hero-geometric-wrapper {
    position: relative;
    width: 90%;
    height: 90%;
    z-index: 2;
}

.hero-main-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 40px;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 85% 100%, 0 100%);
    box-shadow: 0 40px 80px -15px var(--page-accent-light);
    overflow: hidden;
    z-index: 2;
    background-color: #f8fafc;
    background-image: radial-gradient(at 0% 0%, rgba(29, 78, 216, 0.05) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(99, 102, 241, 0.05) 0px, transparent 50%);
}

.hero-main-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    filter: saturate(0.9) contrast(1.05);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-visual-container:hover .hero-main-frame img,
.hero-visual-container.group:hover .hero-main-frame img {
    transform: scale(1.1) rotate(2deg);
}

.hero-accent-border {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--page-accent);
    border-radius: 40px;
    clip-path: polygon(100% 0, 100% 30%, 70% 0);
    opacity: 0.3;
    z-index: 1;
}

.hero-accent-block {
    position: absolute;
    bottom: -15px;
    left: -15px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--page-accent) 0%, var(--secondary) 100%);
    border-radius: 24px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 15px 30px -5px var(--page-accent-light);
}

.hero-floating-element {
    position: absolute;
    z-index: 4;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.1);
    animation: float-slow 6s ease-in-out infinite;
}

.hero-dots-accent {
    position: absolute;
    top: 5%;
    left: -75px;
    width: 280px;
    height: 280px;
    background-image: radial-gradient(var(--page-accent) 2px, transparent 2px);
    background-size: 24px 24px;
    opacity: 0.4;
    z-index: -1;
    pointer-events: none;
}

.anchor-light {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--page-accent-light) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.card-enhanced {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-enhanced:hover {
    border-color: var(--page-accent-light);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: translateY(-8px);
}

@keyframes float-slow {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes pulse-soft {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.nav-link {
    position: relative;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    height: auto;
    padding-bottom: 4px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.dropdown:hover .dropdown-menu {
    display: block;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(37, 99, 235, 0.4);
}

.ui-clear {
    position: relative;
}

.ui-clear__btn {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: rgba(255, 255, 255, 0.9);
    color: #64748b;
    font-size: 20px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .15s ease, transform .15s ease, background .15s ease, border-color .15s ease;
}

.ui-clear.is-dirty .ui-clear__btn {
    opacity: 1;
    pointer-events: auto;
}

.ui-clear__btn:hover {
    background: #fff;
    border-color: rgba(37, 99, 235, 0.35);
    color: #1d4ed8;
}

.ui-clear > input,
.ui-clear > select,
.ui-clear > textarea {
    padding-right: 52px !important;
}

.card-hover {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.text-gradient {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.header-accent {
    position: relative;
    display: inline-block;
    color: var(--primary);
}

.header-accent::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 12px;
    background: var(--primary);
    opacity: 0.15;
    z-index: -1;
    border-radius: 4px;
}

.dots-pattern {
    position: absolute;
    top: -10%;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(29, 78, 216, 0.12) 2px, transparent 2px);
    background-size: 30px 30px;
    z-index: 0;
    opacity: 0.5;
    pointer-events: none;
}

.mb-30 {
    margin-bottom: 7.5rem !important;
}

@media (min-width: 1024px) {
    header {
        padding-top: 4rem !important;
        padding-bottom: 5rem !important;
    }
}


.fa, .fa-brands, .fa-classic, .fa-regular, .fa-sharp, .fa-solid, .fab, .far, .fas {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto
}

.fa-classic, .fa-regular, .fa-solid, .far, .fas {
    font-family: "Font Awesome 6 Free", sans-serif
}

.fa-brands, .fab {
    font-family: "Font Awesome 6 Brands", sans-serif
}


:host, :root {
    --fa-font-regular: normal 400 1em/1 "Font Awesome 6 Free"
}

@font-face {
    font-family: "Font Awesome 6 Free";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(../plugins/webfonts/fa-regular-400.woff2) format("woff2"), url(../plugins/webfonts/fa-regular-400.ttf) format("truetype")
}

.fa-regular, .far {
    font-weight: 400
}

:host, :root {
    --fa-style-family-classic: "Font Awesome 6 Free";
    --fa-font-solid: normal 900 1em/1 "Font Awesome 6 Free"
}

@font-face {
    font-family: "Font Awesome 6 Free";
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url(../plugins/webfonts/fa-solid-900.woff2) format("woff2"), url(../plugins/webfonts/fa-solid-900.ttf) format("truetype")
}

.fa-solid, .fas {
    font-weight: 900
}

@font-face {
    font-family: "Font Awesome 6 Brands";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(../plugins/webfonts/fa-brands-400.woff2) format("woff2"),
    url(../plugins/webfonts/fa-brands-400.ttf) format("truetype");
}

@font-face {
    font-family: "Font Awesome 5 Brands";
    font-display: swap;
    font-weight: 400;
    src: url(../plugins/webfonts/fa-brands-400.woff2) format("woff2"), url(../plugins/webfonts/fa-brands-400.ttf) format("truetype")
}

@font-face {
    font-family: "Font Awesome 5 Free";
    font-display: swap;
    font-weight: 900;
    src: url(../plugins/webfonts/fa-solid-900.woff2) format("woff2"), url(../plugins/webfonts/fa-solid-900.ttf) format("truetype")
}

@font-face {
    font-family: "Font Awesome 5 Free";
    font-display: swap;
    font-weight: 400;
    src: url(../plugins/webfonts/fa-regular-400.woff2) format("woff2"), url(../plugins/webfonts/fa-regular-400.ttf) format("truetype")
}

@font-face {
    font-family: "FontAwesome";
    font-display: swap;
    src: url(../plugins/webfonts/fa-solid-900.woff2) format("woff2"), url(../plugins/webfonts/fa-solid-900.ttf) format("truetype")
}

@font-face {
    font-family: "FontAwesome";
    font-display: swap;
    src: url(../plugins/webfonts/fa-brands-400.woff2) format("woff2"), url(../plugins/webfonts/fa-brands-400.ttf) format("truetype")
}

@font-face {
    font-family: "FontAwesome";
    font-display: swap;
    src: url(../plugins/webfonts/fa-regular-400.woff2) format("woff2"), url(../plugins/webfonts/fa-regular-400.ttf) format("truetype");
    unicode-range: u+f003, u+f006, u+f014, u+f016-f017, u+f01a-f01b, u+f01d, u+f022, u+f03e, u+f044, u+f046, u+f05c-f05d, u+f06e, u+f070, u+f087-f088, u+f08a, u+f094, u+f096-f097, u+f09d, u+f0a0, u+f0a2, u+f0a4-f0a7, u+f0c5, u+f0c7, u+f0e5-f0e6, u+f0eb, u+f0f6-f0f8, u+f10c, u+f114-f115, u+f118-f11a, u+f11c-f11d, u+f133, u+f147, u+f14e, u+f150-f152, u+f185-f186, u+f18e, u+f190-f192, u+f196, u+f1c1-f1c9, u+f1d9, u+f1db, u+f1e3, u+f1ea, u+f1f7, u+f1f9, u+f20a, u+f247-f248, u+f24a, u+f24d, u+f255-f25b, u+f25d, u+f271-f274, u+f278, u+f27b, u+f28c, u+f28e, u+f29c, u+f2b5, u+f2b7, u+f2ba, u+f2bc, u+f2be, u+f2c0-f2c1, u+f2c3, u+f2d0, u+f2d2, u+f2d4, u+f2dc
}

@font-face {
    font-family: "FontAwesome";
    font-display: swap;
    src: url(../plugins/webfonts/fa-v4compatibility.woff2) format("woff2"), url(../plugins/webfonts/fa-v4compatibility.ttf) format("truetype");
    unicode-range: u+f041, u+f047, u+f065-f066, u+f07d-f07e, u+f080, u+f08b, u+f08e, u+f090, u+f09a, u+f0ac, u+f0ae, u+f0b2, u+f0d0, u+f0d6, u+f0e4, u+f0ec, u+f10a-f10b, u+f123, u+f13e, u+f148-f149, u+f14c, u+f156, u+f15e, u+f160-f161, u+f163, u+f175-f178, u+f195, u+f1f8, u+f219, u+f27a
}

.fa-chevron-down:before {
    content: "\f078"
}

.fa-info-circle:before {
    content: "\f05a"
}

.fa-user-tie:before {
    content: "\f508"
}

.fa-shield-alt:before {
    content: "\f3ed"
}

.fa-microchip:before {
    content: "\f2db"
}

.fa-newspaper:before {
    content: "\f1ea"
}

.fa-envelope:before {
    content: "\f0e0"
}

.fa-bars:before {
    content: "\f0c9"
}

.fa-home:before {
    content: "\f015"
}

.fa-search:before {
    content: "\f002"
}

.fa-university:before {
    content: "\f19c"
}

.fa-users:before {
    content: "\f0c0"
}

.fa-user-graduate:before {
    content: "\f501"
}

.fa-calendar-alt:before {
    content: "\f073"
}

.fa-arrow-left:before {
    content: "\f060"
}

.fa-cookie-bite:before {
    content: "\f564"
}

.fa-youtube:before {
    content: "\f167"
}

.fa-map-marker-alt:before {
    content: "\f3c5"
}

.fa-check-circle:before {
    content: "\f058"
}

.fa-instagram:before {
    content: "\f16d"
}

.fa-facebook-f:before {
    content: "\f39e"
}

.fa-arrow-right:before {
    content: "\f061"
}

.fa-laptop-code:before {
    content: "\f5fc"
}

.fa-check-double:before {
    content: "\f560"
}

.fa-exclamation-circle:before {
    content: "\f06a"
}

.fa-check:before {
    content: "\f00c"
}

.fa-linkedin-in:before {
    content: "\f0e1"
}
