@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/inter/Inter-Regular.woff2') format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('../fonts/inter/Inter-Medium.woff2') format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/inter/Inter-SemiBold.woff2') format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/inter/Inter-Bold.woff2') format('woff2');
}
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('../fonts/poppins/Poppins-Light.woff2') format('woff2');
}
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/poppins/Poppins-Regular.woff2') format('woff2');
}
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('../fonts/poppins/Poppins-Medium.woff2') format('woff2');
}
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/poppins/Poppins-SemiBold.woff2') format('woff2');
}
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/poppins/Poppins-Bold.woff2') format('woff2');
}
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url('../fonts/poppins/Poppins-ExtraBold.woff2') format('woff2');
}
:root {
    --primary-cyan: #00B4D8;
    --accent-violet: #8B5CF6;
    --dark-gray: #6B7280;
    --near-black: #1F2937;
    --light-gray: #F3F4F6;
    --white: #FFFFFF;
    --font-headings: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    overflow-x: hidden;
}
body {
    font-family: var(--font-body);
    color: var(--near-black);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    width: 100%;
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headings);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.2;
}
a {
    text-decoration: none;
    transition: all 0.3s ease;
}
img {
    max-width: 100%;
    height: auto;
}
.navbar {
    transition: all 0.4s ease;
    padding: 1.5rem 0;
    background-color: transparent;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}
.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}
.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
}
.navbar-logo {
    height: 45px;
    width: auto;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1); 
}
.navbar.scrolled .navbar-logo {
    height: 40px;
    filter: none; 
}
.mobile-menu-logo-img {
    height: 35px;
    width: auto;
    filter: brightness(0) invert(1);
}
.navbar.scrolled .navbar-brand {
    color: var(--near-black) !important;
}
.navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 500;
    margin: 0 0.25rem;
    position: relative;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}
.navbar.scrolled .navbar-nav .nav-link {
    color: var(--near-black) !important;
}
@media (max-width: 991px) {
    .navbar-nav .nav-link,
    .navbar.scrolled .navbar-nav .nav-link {
        color: #ffffff !important;
    }
    .navbar-nav .nav-link.active,
    .navbar.scrolled .navbar-nav .nav-link.active {
        color: var(--primary-cyan) !important;
    }
}
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary-cyan);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
}
.mobile-menu-toggle {
    background: transparent;
    border: none;
    padding: 0.5rem;
    position: relative;
    width: 40px;
    height: 40px;
    z-index: 1001;
    display: none;
    cursor: pointer;
}
@media (max-width: 991px) {
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
.mobile-menu-toggle:focus {
    box-shadow: none;
    outline: none;
}
.mobile-menu-toggle .hamburger {
    width: 24px;
    height: 18px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.mobile-menu-toggle .hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}
.navbar.scrolled .mobile-menu-toggle .hamburger span {
    background: var(--near-black);
}
.mobile-menu-toggle.active .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-toggle.active .hamburger span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}
.mobile-menu-toggle.active .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}
@media (max-width: 991px) {
    .mobile-nav-menu {
        position: fixed !important;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 400px;
        height: 100vh;
        height: 100dvh;
        background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
        padding: 0 0 2rem 0;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1000;
        overflow-y: auto;
        display: flex !important;
        flex-direction: column;
    }
    .mobile-nav-menu.show {
        right: 0;
    }
    .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1.25rem 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin-bottom: 1rem;
    }
    .mobile-menu-logo {
        font-family: var(--font-heading);
        font-weight: 700;
        font-size: 1.25rem;
        color: #ffffff;
        text-transform: uppercase;
    }
    .mobile-menu-close {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.1);
        border: none;
        border-radius: 10px;
        color: #ffffff;
        font-size: 1.25rem;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    .mobile-menu-close:hover {
        background: var(--primary-cyan);
    }
    .mobile-menu-backdrop {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(5px);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    .mobile-menu-backdrop.show {
        opacity: 1;
        visibility: visible;
    }
    .navbar-nav {
        flex-direction: column;
        gap: 0;
        width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 0 2rem;
        display: flex !important;
    }
    .navbar-nav .nav-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        position: relative;
    }
    .navbar-nav .nav-link {
        color: #ffffff !important;
        padding: 1rem 0;
        font-size: 1.1rem;
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        opacity: 1 !important;
        visibility: visible !important;
    }
    .navbar-nav .nav-link::after {
        display: none !important;
    }
    .navbar-nav .nav-link.active {
        color: var(--primary-cyan) !important;
    }
    .has-mega-menu {
        position: relative;
        overflow: visible;
    }
    .has-mega-menu > .nav-link .dropdown-arrow {
        transition: transform 0.3s ease;
        margin-left: auto;
    }
    .has-mega-menu.open > .nav-link .dropdown-arrow {
        transform: rotate(180deg);
    }
    .has-mega-menu .mega-menu {
        position: static !important;
        box-shadow: none !important;
        background: rgba(255, 255, 255, 0.05) !important;
        border-top: none !important;
        border-radius: 0.5rem;
        margin-top: 0.5rem;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        display: none;
    }
    .has-mega-menu.open .mega-menu {
        display: block;
        padding: 1rem !important;
    }
    .mega-menu-container {
        padding: 0 !important;
    }
    .mega-menu-grid {
        display: block !important;
        grid-template-columns: unset;
    }
    .mega-menu-column {
        padding-left: 1rem;
        border-left: 2px solid var(--primary-cyan);
        margin-bottom: 1.5rem;
    }
    .mega-menu-column:last-child {
        margin-bottom: 0;
    }
    .mega-menu-column h4,
    .mega-menu-column .mega-menu-heading {
        display: block;
        color: var(--primary-cyan) !important;
        font-size: 0.75rem;
        margin-bottom: 0.75rem;
        padding-bottom: 0.5rem;
        border-bottom: none !important;
    }
    .mega-menu-column ul {
        display: block !important;
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .mega-menu-column ul li {
        display: block !important;
        margin-bottom: 0.25rem;
    }
    .mega-menu-column ul li a {
        display: flex !important;
        align-items: center;
        color: rgba(255, 255, 255, 0.8) !important;
        padding: 0.5rem 0;
        font-size: 0.9rem;
        gap: 0.75rem;
    }
    .mega-menu-column ul li a:hover {
        color: var(--primary-cyan) !important;
    }
    .mega-menu-column ul li a i {
        width: 32px;
        height: 32px;
        min-width: 32px;
        display: flex !important;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.1) !important;
        color: var(--primary-cyan) !important;
        font-size: 0.85rem;
        border-radius: 0.5rem;
    }
    .mega-menu-column ul li a span {
        display: flex;
        flex-direction: column;
        color: inherit;
    }
    .mega-menu-column ul li a span small {
        display: none;
    }
    .mega-menu-featured {
        display: none !important;
    }
    .navbar-nav .nav-cta {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        border-bottom: none;
    }
    .navbar-nav .nav-cta .btn-modern {
        width: 100%;
        justify-content: center;
    }
    .mobile-menu-header {
        display: flex;
    }
}
@media (min-width: 992px) {
    .mobile-nav-menu {
        display: flex !important;
        flex-direction: row;
        align-items: center;
    }
    .mobile-menu-header {
        display: none !important;
    }
}
@media (min-width: 992px) {
    .has-mega-menu {
        position: static;
    }
    .has-mega-menu > .nav-link {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    .has-mega-menu > .nav-link .dropdown-arrow {
        font-size: 0.7rem;
        transition: transform 0.3s ease;
    }
    .has-mega-menu:hover > .nav-link .dropdown-arrow {
        transform: rotate(180deg);
    }
    .mega-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        padding: 2.5rem 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 999;
        border-top: 3px solid var(--primary-cyan);
    }
    .mega-menu.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    .mega-menu-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
    }
    .mega-menu-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
    .mega-menu-column h4,
    .mega-menu-column .mega-menu-heading {
        display: block;
        font-size: 0.85rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--primary-cyan);
        margin-bottom: 1.25rem;
        padding-bottom: 0.75rem;
        border-bottom: 2px solid var(--light-gray);
    }
    .mega-menu-column ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .mega-menu-column ul li {
        margin-bottom: 0.5rem;
    }
    .mega-menu-column ul li a {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.6rem 0;
        color: var(--near-black);
        font-size: 0.95rem;
        transition: all 0.3s ease;
        border-radius: 0.5rem;
    }
    .mega-menu-column ul li a:hover {
        color: var(--primary-cyan);
        transform: translateX(5px);
    }
    .mega-menu-column ul li a i {
        width: 35px;
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--light-gray);
        border-radius: 0.5rem;
        color: var(--primary-cyan);
        transition: all 0.3s ease;
    }
    .mega-menu-column ul li a:hover i {
        background: var(--primary-cyan);
        color: var(--white);
    }
    .mega-menu-column ul li a span {
        display: flex;
        flex-direction: column;
    }
    .mega-menu-column ul li a span small {
        font-size: 0.75rem;
        color: var(--dark-gray);
        margin-top: 2px;
    }
    .mega-menu-featured {
        background: linear-gradient(135deg, var(--near-black) 0%, var(--primary-cyan) 100%);
        border-radius: 1rem;
        padding: 2rem;
        color: var(--white);
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .mega-menu-featured h4,
    .mega-menu-featured .mega-menu-heading {
        color: var(--white) !important;
        border-bottom-color: rgba(255, 255, 255, 0.2) !important;
    }
    .mega-menu-featured p {
        font-size: 0.9rem;
        opacity: 0.9;
        margin-bottom: 1.5rem;
    }
    .mega-menu-featured .btn {
        align-self: flex-start;
    }
}
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
    background: linear-gradient(135deg, var(--near-black) 0%, var(--primary-cyan) 100%);
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)" /></svg>');
    opacity: 0.3;
}
.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    text-align: center;
}
.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}
.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1.2s ease;
}
.hero-content .btn {
    animation: fadeInUp 1.4s ease;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.btn-primary {
    background-color: var(--primary-cyan);
    border: none;
    padding: 0.875rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
}
.btn-primary:hover {
    background-color: #0096b8;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 180, 216, 0.3);
}
.btn-outline-light {
    border: 2px solid var(--white);
    padding: 0.875rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}
.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--near-black);
    transform: translateY(-2px);
}
.diagonal-clip {
    clip-path: polygon(0 0, 100% 0, 100% 85%, 85% 100%, 0 100%);
}
.diagonal-gradient {
    background: linear-gradient(72deg, var(--near-black) 0%, var(--primary-cyan) 100%);
}
.diagonal-section {
    position: relative;
    padding: 6rem 0;
}
.diagonal-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--white);
    transform: skewY(-2deg);
    transform-origin: top left;
}
.service-card {
    background-color: var(--white);
    border-radius: 0.5rem;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
    border-top: 3px solid transparent;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 180, 216, 0.2);
    border-top-color: var(--primary-cyan);
}
.service-card i {
    font-size: 3rem;
    color: var(--primary-cyan);
    margin-bottom: 1.5rem;
}
.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--near-black);
}
.service-card p {
    color: var(--dark-gray);
    font-size: 1rem;
}
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    cursor: pointer;
    height: 300px;
}
.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.portfolio-item:hover img {
    transform: scale(1.1);
}
.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.9) 0%, rgba(31, 41, 55, 0.9) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}
.portfolio-overlay h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.portfolio-overlay p {
    color: var(--white);
    font-size: 1rem;
}
.portfolio-filter {
    text-align: center;
    margin-bottom: 3rem;
}
.portfolio-filter .btn {
    margin: 0.5rem;
    padding: 0.5rem 1.5rem;
    border: 2px solid var(--primary-cyan);
    background-color: transparent;
    color: var(--primary-cyan);
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
}
.portfolio-filter .btn:hover,
.portfolio-filter .btn.active {
    background-color: var(--primary-cyan);
    color: var(--white);
}
.timeline {
    position: relative;
    padding: 2rem 0;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary-cyan);
    transform: translateX(-50%);
}
.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding: 0 2rem;
}
.timeline-item:nth-child(odd) {
    text-align: right;
    padding-right: calc(50% + 3rem);
}
.timeline-item:nth-child(even) {
    text-align: left;
    padding-left: calc(50% + 3rem);
}
.timeline-dot {
    position: absolute;
    left: 50%;
    top: 0;
    width: 20px;
    height: 20px;
    background-color: var(--primary-cyan);
    border: 4px solid var(--white);
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 0 4px rgba(0, 180, 216, 0.2);
}
.timeline-content {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-cyan);
    margin-bottom: 0.5rem;
}
.blog-card {
    background-color: var(--white);
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    margin-bottom: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}
.blog-card-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}
.blog-card-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.blog-card-date {
    font-size: 0.875rem;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}
.blog-card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--near-black);
}
.blog-card-text {
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}
.blog-card .btn-link {
    color: var(--primary-cyan);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.875rem;
}
.blog-card .btn-link:hover {
    color: #0096b8;
}
.footer_blockquote,
.blockquote-footer,
blockquote footer {
    color: inherit;
    font-size: 0.95rem;
    font-style: normal;
    font-weight: 500;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(0, 180, 216, 0.2);
    display: block;
    background-color:white;
}
.footer_blockquote::before,
blockquote footer::before {
    content: "— ";
    color: var(--primary-cyan);
    font-weight: 600;
}
blockquote,
.blockquote {
    background: transparent;
    border-left: 4px solid var(--primary-cyan);
    border-radius: 0 0.5rem 0.5rem 0;
    padding: 1.5rem 2rem;
    margin: 1.5rem 0;
    font-size: 1.1rem;
    font-style: italic;
    color: inherit;
    position: relative;
}
blockquote::before {
    content: """;
    position: absolute;
    top: -10px;
    left: 15px;
    font-size: 4rem;
    color: var(--primary-cyan);
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
}
blockquote p {
    margin-bottom: 0;
    color: inherit;
}
.sidebar {
    position: sticky;
    top: 100px;
}
.sidebar-widget {
    background-color: var(--white);
    border-radius: 0.5rem;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}
.sidebar-widget h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--near-black);
    border-bottom: 2px solid var(--primary-cyan);
    padding-bottom: 0.5rem;
}
.sidebar-widget ul {
    list-style: none;
    padding: 0;
}
.sidebar-widget ul li {
    margin-bottom: 1rem;
}
.sidebar-widget ul li a {
    color: var(--dark-gray);
    transition: all 0.3s ease;
    display: block;
    padding: 0.5rem 0;
}
.sidebar-widget ul li a:hover {
    color: var(--primary-cyan);
    padding-left: 0.5rem;
}
.contact-form {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.contact-form .form-control {
    border: 2px solid var(--light-gray);
    padding: 0.875rem 1rem;
    margin-bottom: 1.5rem;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
}
.contact-form .form-control:focus {
    border-color: var(--primary-cyan);
    box-shadow: 0 0 0 0.2rem rgba(0, 180, 216, 0.15);
}
.contact-form textarea.form-control {
    min-height: 150px;
    resize: vertical;
}
footer {
    background-color: var(--dark-gray);
    color: var(--light-gray);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}
footer h4 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}
footer ul {
    list-style: none;
    padding: 0;
}
footer ul li {
    margin-bottom: 0.75rem;
}
footer ul li a {
    color: var(--light-gray);
    transition: all 0.3s ease;
}
footer ul li a:hover {
    color: var(--primary-cyan);
    padding-left: 0.5rem;
}
footer .social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 0.5rem;
    transition: all 0.3s ease;
}
footer .social-links a:hover {
    background-color: var(--primary-cyan);
    transform: translateY(-3px);
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}
.error-404 {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}
.error-404 h1 {
    font-size: 10rem;
    color: var(--primary-cyan);
    margin-bottom: 1rem;
    line-height: 1;
}
.error-404 h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}
.error-404 p {
    color: var(--dark-gray);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}
.section-padding {
    padding: 6rem 0;
}
.section-title {
    text-align: center;
    margin-bottom: 3rem;
}
.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--near-black);
}
.section-title p {
    font-size: 1.125rem;
    color: var(--dark-gray);
    max-width: 600px;
    margin: 0 auto;
}
.bg-light-gray {
    background-color: var(--light-gray);
}
@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .timeline::before {
        left: 30px;
    }
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        text-align: left;
        padding-left: 80px;
        padding-right: 2rem;
    }
    .timeline-dot {
        left: 30px;
    }
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    .sidebar {
        position: static;
        margin-top: 3rem;
    }
}
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    .section-title h2 {
        font-size: 2rem;
    }
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    .contact-form {
        padding: 2rem;
    }
    .error-404 h1 {
        font-size: 6rem;
    }
}
.parallax-section {
    position: relative;
    overflow: hidden;
    will-change: transform;
}
.parallax-bg {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 140%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: transform;
    z-index: -1;
}
.parallax-element {
    will-change: transform;
    transition: transform 0.1s linear;
}
.parallax-slow {
    --parallax-speed: 0.3;
}
.parallax-medium {
    --parallax-speed: 0.5;
}
.parallax-fast {
    --parallax-speed: 0.7;
}
.reveal-section {
    opacity: 1;
    transform: none;
    transition: none;
}
.reveal-section.revealed {
    opacity: 1;
    transform: none;
}
.reveal-stagger > * {
    opacity: 1;
    transform: none;
    transition: none;
}
.reveal-stagger .contact-form-card,
.reveal-stagger .contact-form-card-modern,
.reveal-stagger .contact-info-card,
.reveal-stagger .form-group-modern,
.reveal-stagger .form-group-simple,
.reveal-stagger .modern-contact-form,
.reveal-stagger [class*="col-"] {
    opacity: 1 !important;
    transform: none !important;
}
.reveal-stagger .contact-form-card *,
.reveal-stagger .contact-form-card-modern *,
.reveal-stagger .contact-info-card *,
.reveal-stagger .form-group-modern *,
.reveal-stagger .form-group-simple *,
.reveal-stagger .modern-contact-form *,
.reveal-stagger [class*="col-"] * {
    opacity: 1 !important;
    transform: none !important;
}
.reveal-stagger.revealed > *:nth-child(1) { transition-delay: 0.1s; }
.reveal-stagger.revealed > *:nth-child(2) { transition-delay: 0.2s; }
.reveal-stagger.revealed > *:nth-child(3) { transition-delay: 0.3s; }
.reveal-stagger.revealed > *:nth-child(4) { transition-delay: 0.4s; }
.reveal-stagger.revealed > *:nth-child(5) { transition-delay: 0.5s; }
.reveal-stagger.revealed > *:nth-child(6) { transition-delay: 0.6s; }
.reveal-stagger.revealed > * {
    opacity: 1;
    transform: translateY(0);
}
.reveal-left {
    opacity: 1;
    transform: translateX(0);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right {
    opacity: 1;
    transform: translateX(0);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.revealed,
.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}
.reveal-scale {
    opacity: 1;
    transform: scale(1);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}
.reveal-rotate {
    opacity: 1;
    transform: none;
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-rotate.revealed {
    opacity: 1;
    transform: perspective(1000px) rotateX(0) translateY(0);
}
.section-divider {
    position: relative;
    height: 150px;
    margin: -1px 0;
    overflow: hidden;
}
.section-divider svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.section-divider.divider-wave svg path {
    fill: var(--light-gray);
}
.section-divider.divider-wave-dark svg path {
    fill: var(--near-black);
}
.diagonal-top {
    position: relative;
}
.diagonal-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: inherit;
    transform: skewY(-3deg);
    transform-origin: top left;
    z-index: -1;
}
.diagonal-bottom {
    position: relative;
}
.diagonal-bottom::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: inherit;
    transform: skewY(-3deg);
    transform-origin: bottom right;
    z-index: 1;
}
.card-3d {
    perspective: 1000px;
}
.card-3d-inner {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    transform-style: preserve-3d;
}
.card-3d:hover .card-3d-inner {
    transform: rotateY(10deg) rotateX(5deg);
}
.scroll-snap-container {
    scroll-snap-type: y proximity;
    overflow-y: scroll;
    height: 100vh;
}
.scroll-snap-section {
    scroll-snap-align: start;
    min-height: 100vh;
}
.btn-magnetic {
    position: relative;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.split-text .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.split-text.revealed .char {
    opacity: 1;
    transform: translateY(0);
}
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
.animated-gradient {
    background: linear-gradient(135deg, var(--near-black), var(--primary-cyan), var(--near-black));
    background-size: 300% 300%;
    animation: gradientShift 8s ease infinite;
}
.parallax-zoom {
    overflow: hidden;
}
.parallax-zoom img {
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}
.parallax-zoom:hover img {
    transform: scale(1.1);
}
.cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-cyan);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease-out, opacity 0.3s ease;
    opacity: 0;
}
.cursor-follower.active {
    opacity: 1;
}
.cursor-follower.hovering {
    transform: scale(1.5);
    background: rgba(0, 180, 216, 0.1);
}
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-cyan), #00D4FF);
    z-index: 9999;
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 0.1s linear;
}
.float-animation {
    animation: floatUpDown 3s ease-in-out infinite;
}
@keyframes floatUpDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}
.pulse-animation {
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0, 180, 216, 0.4);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(0, 180, 216, 0);
    }
}
.section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(31, 41, 55, 0.7);
    backdrop-filter: blur(5px);
    z-index: 1;
}
.glow-text {
    text-shadow: 0 0 10px rgba(0, 180, 216, 0.5),
                 0 0 20px rgba(0, 180, 216, 0.3),
                 0 0 30px rgba(0, 180, 216, 0.2);
}
.blob-bg {
    position: absolute;
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.3) 0%, rgba(31, 41, 55, 0.3) 100%);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: morphBlob 8s ease-in-out infinite;
    filter: blur(40px);
    opacity: 0.5;
    z-index: 0;
}
@keyframes morphBlob {
    0%, 100% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%;
        transform: translate(10px, -10px) rotate(90deg);
    }
    50% {
        border-radius: 50% 50% 30% 70% / 50% 70% 30% 50%;
        transform: translate(-10px, 10px) rotate(180deg);
    }
    75% {
        border-radius: 30% 70% 60% 40% / 60% 40% 60% 40%;
        transform: translate(5px, 5px) rotate(270deg);
    }
}
@media (max-width: 768px) {
    .parallax-bg {
        background-attachment: scroll;
        top: 0;
        height: 100%;
    }
    .parallax-element {
        transform: none !important;
    }
    .blob-bg {
        display: none;
    }
    .cursor-follower {
        display: none;
    }
}
@media (prefers-reduced-motion: reduce) {
    .reveal-section,
    .reveal-stagger > *,
    .reveal-left,
    .reveal-right,
    .reveal-scale,
    .reveal-rotate,
    .parallax-element,
    .card-3d-inner,
    .split-text .char {
        transition: none;
        transform: none;
        opacity: 1;
    }
    .float-animation,
    .pulse-animation,
    .blob-bg {
        animation: none;
    }
}
.hero-premium {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #0f0f1a 100%);
    overflow: hidden;
}
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}
.hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: orbFloat 20s ease-in-out infinite;
}
.hero-gradient-orb.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.4) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}
.hero-gradient-orb.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
    bottom: -100px;
    left: -50px;
    animation-delay: -7s;
}
.hero-gradient-orb.orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.25) 0%, transparent 70%);
    top: 50%;
    left: 30%;
    animation-delay: -14s;
}
@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.1); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(20px, 10px) scale(1.05); }
}
.hero-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.5;
}
.hero-noise {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.02;
    pointer-events: none;
}
.hero-content-wrapper {
    position: relative;
    z-index: 2;
    padding-top: 100px;
    padding-bottom: 60px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 100px;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease;
}
.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-cyan);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}
.hero-badge span:last-child {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}
.hero-title {
    color: var(--white);
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: none;
    letter-spacing: -0.03em;
    word-break: break-word;
    overflow-wrap: break-word;
}
.title-line {
    display: block;
    overflow: visible;
}
.title-line:nth-child(1) { animation: fadeInUp 0.8s ease 0.2s both; }
.title-line:nth-child(2) { animation: fadeInUp 0.8s ease 0.4s both; }
.title-line:nth-child(3) { animation: fadeInUp 0.8s ease 0.6s both; }
.hero-title .title-highlight {
    color: var(--primary-cyan) !important;
    background: linear-gradient(135deg, var(--primary-cyan) 0%, #8B5CF6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-title .title-highlight * {
    color: inherit !important;
    background: inherit;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.text-rotate-wrapper {
    display: inline-block;
    position: relative;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.hero-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.125rem;
    line-height: 1.8;
    max-width: 540px;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease 0.8s both;
}
.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease 1s both;
}
.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary-cyan) 0%, #0096B4 100%);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 180, 216, 0.3);
}
.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 180, 216, 0.4);
    color: var(--white);
}
.btn-hero-primary i {
    transition: transform 0.3s ease;
}
.btn-hero-primary:hover i {
    transform: translateX(5px);
}
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}
.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
    color: var(--white);
    transform: translateY(-3px);
}
.btn-play-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    font-size: 0.75rem;
}
.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    animation: fadeInUp 0.8s ease 1.2s both;
}
.hero-stat {
    display: flex;
    flex-direction: column;
}
.hero-stat .stat-number {
    color: var(--white);
    font-family: var(--font-headings);
    font-size: 1.75rem;
    font-weight: 700;
}
.hero-stat .stat-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}
.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}
.hero-visual {
    position: relative;
    height: 500px;
}
.visual-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    animation: floatCard 6s ease-in-out infinite;
}
.visual-card.card-1 {
    top: 60px;
    right: 20px;
    animation-delay: 0s;
}
.visual-card.card-2 {
    top: 180px;
    right: 100px;
    animation-delay: -2s;
}
.visual-card.card-3 {
    top: 300px;
    right: 40px;
    animation-delay: -4s;
}
@keyframes floatCard {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(1deg); }
}
.visual-card .card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-cyan) 0%, #8B5CF6 100%);
    border-radius: 12px;
    color: white;
    font-size: 1.25rem;
}
.visual-card .card-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.visual-card .card-label {
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
}
.visual-card .card-bar {
    width: 120px;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    overflow: hidden;
}
.visual-card .card-bar span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-cyan), #8B5CF6);
    border-radius: 100px;
    animation: growBar 2s ease 1.5s both;
}
@keyframes growBar {
    from { width: 0; }
}
.visual-floating-badge {
    position: absolute;
    bottom: 80px;
    right: 160px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-cyan) 0%, #0096B4 100%);
    padding: 12px 20px;
    border-radius: 100px;
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    animation: floatCard 5s ease-in-out infinite;
    animation-delay: -1s;
    box-shadow: 0 10px 30px rgba(0, 180, 216, 0.3);
}
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), transparent);
    position: relative;
}
.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: var(--primary-cyan);
    animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
    0% { top: 0; opacity: 1; }
    100% { top: 100%; opacity: 0; }
}
.trusted-section {
    background: linear-gradient(180deg, #0a0a0f 0%, var(--white) 0%, var(--white) 100%);
    padding: 4rem 0;
    position: relative;
}
.trusted-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 180, 216, 0.3), transparent);
}
.trusted-label {
    text-align: center;
    color: var(--dark-gray);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    font-weight: 500;
}
.trusted-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}
.logo-item {
    color: #94A3B8;
    transition: all 0.3s ease;
    opacity: 0.6;
}
.logo-item img {
    height: 45px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.7);
    transition: all 0.3s ease;
}
.logo-item:hover {
    color: var(--primary-cyan);
    opacity: 1;
    transform: scale(1.1);
}
.logo-item:hover img {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
}
.section-padding {
    padding: 7rem 0;
    position: relative;
}
.section-padding.reveal-section {
    background: linear-gradient(180deg, var(--white) 0%, #F8FAFC 100%);
}
.section-padding.reveal-section::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -200px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.section-label {
    display: inline-block;
    color: var(--primary-cyan);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    position: relative;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(0, 210, 223, 0.1), rgba(138, 43, 226, 0.1));
    border-radius: 50px;
    border: 1px solid rgba(0, 210, 223, 0.2);
}
.section-label::before {
    display: none;
}
.section-label.light {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}
.section-label.light::before {
    display: none;
}
.cta-content .section-label {
    padding: 0.5rem 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0;
}
.cta-content .section-label::before {
    display: none;
}
.section-heading {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    text-transform: none;
    color: var(--dark-gray);
}
.text-gradient {
    background: linear-gradient(135deg, var(--primary-cyan) 0%, #8B5CF6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.section-text {
    color: var(--dark-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}
.section-subtext {
    color: var(--dark-gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}
.image-showcase {
    position: relative;
}
.image-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}
.service-icon-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}
.service-icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}
.service-icon-box i {
    font-size: 100px;
    color: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 1;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease;
}
.service-icon-box:hover i {
    transform: scale(1.1);
}
.image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.image-showcase:hover .image-main img {
    transform: scale(1.05);
}
.image-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    z-index: 2;
}
.accent-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--white);
    padding: 20px 25px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.accent-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-cyan) 0%, #8B5CF6 100%);
    border-radius: 12px;
    color: white;
    font-size: 1.25rem;
}
.accent-text strong {
    display: block;
    color: var(--near-black);
    font-weight: 700;
}
.accent-text span {
    color: var(--dark-gray);
    font-size: 0.875rem;
}
.image-decoration {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border: 3px solid var(--primary-cyan);
    border-radius: 20px;
    opacity: 0.3;
    z-index: -1;
}
.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}
.feature-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    color: var(--near-black);
    font-weight: 500;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}
.feature-list li:last-child {
    border-bottom: none;
}
.feature-list li:hover {
    padding-left: 8px;
}
.feature-list li i {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 180, 216, 0.1);
    color: var(--primary-cyan);
    border-radius: 50%;
    font-size: 0.75rem;
}
.btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--near-black);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 100px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-modern:hover {
    background: var(--primary-cyan);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 180, 216, 0.3);
}
.btn-modern i {
    transition: transform 0.3s ease;
}
.btn-modern:hover i {
    transform: translateX(5px);
}
.btn-modern.light {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
}
.btn-modern.light:hover {
    background: var(--primary-cyan);
    border-color: var(--primary-cyan);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 180, 216, 0.3);
}
.bg-dark-section {
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}
.service-card-modern {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-cyan), #8B5CF6);
    opacity: 0.4;
    transition: opacity 0.3s ease;
}
.service-card-modern:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(0, 180, 216, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.service-card-modern:hover::before {
    opacity: 1;
}
.service-card-modern.featured {
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.15) 0%, rgba(139, 92, 246, 0.15) 100%);
    border-color: rgba(0, 180, 216, 0.3);
}
.service-card-modern.featured.ai-world-card {
    grid-column: span 1;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(0, 180, 216, 0.2) 50%, rgba(236, 72, 153, 0.15) 100%);
    border-color: rgba(139, 92, 246, 0.4);
    position: relative;
    overflow: hidden;
}
.service-card-modern.featured.ai-world-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(139, 92, 246, 0.1), transparent, rgba(0, 180, 216, 0.1), transparent);
    animation: ai-card-rotate 8s linear infinite;
    pointer-events: none;
}
@keyframes ai-card-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.service-card-modern.featured.ai-world-card .service-number {
    font-size: 2rem;
    color: rgba(139, 92, 246, 0.4);
}
.service-card-modern.featured.ai-world-card .service-icon {
    background: linear-gradient(135deg, #8B5CF6 0%, var(--primary-cyan) 50%, #EC4899 100%);
    animation: ai-icon-pulse 3s ease-in-out infinite;
}
@keyframes ai-icon-pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(139, 92, 246, 0.4); }
    50% { box-shadow: 0 0 30px rgba(0, 180, 216, 0.6); }
}
.service-card-modern.featured.ai-world-card:hover {
    border-color: rgba(139, 92, 246, 0.6);
    box-shadow: 0 20px 50px rgba(139, 92, 246, 0.3);
}
.service-number {
    position: absolute;
    top: 20px;
    right: 25px;
    font-family: var(--font-headings);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(0, 180, 216, 0.25);
    line-height: 1;
}
.service-card-modern .service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-cyan) 0%, #8B5CF6 100%);
    border-radius: 16px;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: white;
}
.service-card-modern h3 {
    color: var(--dark-gray);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: none;
}
.service-card-modern p {
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-cyan);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}
.service-link:hover {
    color: var(--white);
    gap: 12px;
}
.ai-world-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--near-black) 0%, #111827 50%, var(--near-black) 100%);
    overflow: hidden;
}
.ai-world-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}
.ai-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 180, 216, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 180, 216, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
}
.ai-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(2px 2px at 20px 30px, rgba(0, 180, 216, 0.4), transparent),
                      radial-gradient(2px 2px at 40px 70px, rgba(139, 92, 246, 0.3), transparent),
                      radial-gradient(2px 2px at 50px 160px, rgba(0, 180, 216, 0.3), transparent),
                      radial-gradient(2px 2px at 90px 40px, rgba(139, 92, 246, 0.3), transparent),
                      radial-gradient(2px 2px at 130px 80px, rgba(0, 180, 216, 0.4), transparent);
    background-size: 200px 200px;
    animation: ai-particles-float 20s linear infinite;
}
@keyframes ai-particles-float {
    from { transform: translateY(0); }
    to { transform: translateY(-200px); }
}
.ai-glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}
.ai-glow-orb.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.5) 0%, transparent 70%);
    top: -100px;
    left: -100px;
    animation: ai-orb-float 8s ease-in-out infinite;
}
.ai-glow-orb.orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.4) 0%, transparent 70%);
    bottom: -50px;
    right: 10%;
    animation: ai-orb-float 10s ease-in-out infinite reverse;
}
.ai-glow-orb.orb-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.4) 0%, transparent 70%);
    top: 40%;
    right: -50px;
    animation: ai-orb-float 12s ease-in-out infinite;
}
@keyframes ai-orb-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, 20px) scale(1.1); }
}
.ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.2), rgba(139, 92, 246, 0.2));
    border: 1px solid rgba(0, 180, 216, 0.3);
    border-radius: 50px;
    color: var(--primary-cyan);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}
.ai-badge i {
    font-size: 1rem;
    animation: ai-robot-pulse 2s ease-in-out infinite;
}
@keyframes ai-robot-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}
.ai-world-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 700;
}
.ai-gradient-text {
    background: linear-gradient(135deg, var(--primary-cyan), var(--accent-violet));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.ai-world-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}
.ai-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}
@media (max-width: 1200px) {
    .ai-categories {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .ai-categories {
        grid-template-columns: 1fr;
    }
}
.ai-category {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 180, 216, 0.2);
    border-radius: 24px;
    padding: 2rem;
    transition: all 0.4s ease;
}
.ai-category:hover {
    background: rgba(0, 180, 216, 0.08);
    border-color: rgba(0, 180, 216, 0.4);
    transform: translateY(-5px);
}
.ai-category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 180, 216, 0.2);
}
.ai-category-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-cyan), var(--accent-violet));
    border-radius: 12px;
    font-size: 1.25rem;
    color: white;
}
.ai-category h3 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}
.ai-services-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.ai-service-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.ai-service-item:hover {
    background: rgba(0, 180, 216, 0.15);
    border-color: rgba(0, 180, 216, 0.3);
    transform: translateX(5px);
}
.ai-service-item:hover .ai-arrow {
    opacity: 1;
    transform: translateX(0);
    color: var(--white);
}
.ai-service-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.2), rgba(139, 92, 246, 0.2));
    border-radius: 10px;
    color: var(--primary-cyan);
    font-size: 1rem;
}
.ai-service-info {
    flex: 1;
}
.ai-service-info h4 {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
}
.ai-service-info p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    margin: 0;
}
.ai-arrow {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}
.ai-seminare-banner {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.15), rgba(139, 92, 246, 0.1));
    border: 1px solid rgba(0, 180, 216, 0.3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.ai-seminare-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.ai-seminare-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-cyan), var(--accent-violet));
    border-radius: 16px;
    font-size: 1.5rem;
    color: white;
}
.ai-seminare-text h4 {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}
.ai-seminare-text p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.95rem;
}
.ai-seminare-buttons {
    display: flex;
    gap: 1rem;
}
.ai-seminar-btn {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}
.ai-seminar-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    transform: translateY(-2px);
}
.ai-seminar-btn.pro {
    background: linear-gradient(135deg, var(--primary-cyan), var(--accent-violet));
    border-color: transparent;
}
.ai-seminar-btn.pro:hover {
    box-shadow: 0 10px 30px rgba(0, 180, 216, 0.4);
}
.btn-ai-world {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-cyan), var(--accent-violet));
    border-radius: 50px;
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.btn-ai-world::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}
.btn-ai-world:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 180, 216, 0.4);
    color: var(--white);
}
.btn-ai-world:hover::before {
    left: 100%;
}
.btn-ai-world i {
    transition: transform 0.3s ease;
}
.btn-ai-world:hover i {
    transform: translateX(5px);
}
@media (max-width: 992px) {
    .ai-seminare-banner {
        flex-direction: column;
        text-align: center;
    }
    .ai-seminare-content {
        flex-direction: column;
    }
}
.portfolio-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
@media (max-width: 992px) {
    .portfolio-modern {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .portfolio-modern {
        grid-template-columns: 1fr;
    }
}
.portfolio-item-modern {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: var(--near-black);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.portfolio-item-modern.large {
    grid-column: span 2;
}
@media (max-width: 576px) {
    .portfolio-item-modern.large {
        grid-column: span 1;
    }
}
.portfolio-item-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}
.portfolio-image {
    position: relative;
    padding-top: 75%;
    overflow: hidden;
}
.portfolio-item-modern.large .portfolio-image {
    padding-top: 50%;
}
.portfolio-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.portfolio-item-modern:hover .portfolio-image img {
    transform: scale(1.1);
    filter: brightness(0.7);
}
.portfolio-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}
.portfolio-item-modern:hover .portfolio-content {
    transform: translateY(0);
    opacity: 1;
}
.portfolio-category {
    display: inline-block;
    background: var(--primary-cyan);
    color: white;
    padding: 5px 12px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.portfolio-content h3 {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: none;
}
.portfolio-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}
.portfolio-link {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--near-black);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.portfolio-item-modern:hover .portfolio-link {
    opacity: 1;
    transform: scale(1);
}
.portfolio-link:hover {
    background: var(--primary-cyan);
    color: var(--white);
}
.stats-section {
    background: linear-gradient(135deg, var(--primary-cyan) 0%, #0096B4 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}
.stats-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, rgba(10, 10, 15, 0.3));
    pointer-events: none;
}
.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    position: relative;
    z-index: 1;
}
@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
.stat-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
@media (max-width: 576px) {
    .stat-item {
        flex-direction: column;
    }
}
.stat-item .stat-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    color: var(--white);
    font-size: 1.5rem;
}
.stat-content .stat-number {
    display: block;
    font-family: var(--font-headings);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 5px;
}
.stat-content .stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}
.automation-teaser-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--near-black) 0%, #111827 100%);
}
.automation-teaser {
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border: 1px solid rgba(0, 180, 216, 0.3);
    border-radius: 20px;
    padding: 2rem 2.5rem;
    position: relative;
    overflow: hidden;
}
.automation-teaser::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(0, 180, 216, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(139, 92, 246, 0.15) 0%, transparent 50%);
    pointer-events: none;
}
.automation-teaser-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 1;
}
.automation-teaser-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-cyan), var(--accent-violet));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 180, 216, 0.3);
}
.automation-teaser-text {
    flex: 1;
}
.automation-teaser-text h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    text-transform: none;
    letter-spacing: 0;
}
.automation-teaser-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin: 0;
    line-height: 1.5;
}
.automation-teaser-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--primary-cyan), var(--accent-violet));
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    padding: 1rem 1.75rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 180, 216, 0.3);
}
.automation-teaser-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 180, 216, 0.4);
    color: #fff;
}
.automation-teaser-btn i {
    transition: transform 0.3s ease;
}
.automation-teaser-btn:hover i {
    transform: translateX(4px);
}
@media (max-width: 991px) {
    .automation-teaser-content {
        flex-wrap: wrap;
    }
    .automation-teaser-text {
        flex: 1 1 calc(100% - 90px);
    }
    .automation-teaser-btn {
        width: 100%;
        justify-content: center;
        margin-top: 0.5rem;
    }
}
@media (max-width: 576px) {
    .automation-teaser {
        padding: 1.5rem;
    }
    .automation-teaser-content {
        flex-direction: column;
        text-align: center;
    }
    .automation-teaser-text h3 {
        font-size: 1.2rem;
    }
    .automation-teaser-text p {
        font-size: 0.9rem;
    }
}
.cta-section {
    position: relative;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
    padding: 7rem 0 0 0;
    overflow: hidden;
    margin-bottom: -1px; 
}
.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.cta-gradient-orb {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(60px);
}
.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding-bottom: 7rem;
}
.cta-content h2 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    text-transform: none;
}
.cta-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}
.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.btn-hero-secondary.light {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.2);
}
.btn-hero-secondary.light:hover {
    background: rgba(255, 255, 255, 0.1);
}
.bg-light-section {
    background: linear-gradient(180deg, #FFFFFF 0%, #F1F5F9 100%);
    position: relative;
}
.bg-light-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to bottom, transparent, rgba(0, 180, 216, 0.03));
    pointer-events: none;
}
.bg-light-section .btn-modern {
    box-shadow: 0 4px 20px rgba(31, 41, 55, 0.15);
}
.bg-light-section .btn-modern:hover {
    box-shadow: 0 8px 30px rgba(0, 180, 216, 0.25);
}
.portfolio-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
    gap: 1.5rem;
}
@media (max-width: 992px) {
    .portfolio-masonry {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: auto;
        gap: 1rem;
    }
    .portfolio-item-premium.tall {
        grid-row: span 1;
    }
    .portfolio-item-premium.wide {
        grid-column: span 1;
    }
    .portfolio-item-premium {
        min-height: 220px;
        height: 220px;
    }
}
@media (max-width: 576px) {
    .portfolio-masonry {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        gap: 1rem;
    }
    .portfolio-item-premium.tall,
    .portfolio-item-premium.wide {
        grid-row: span 1;
        grid-column: span 1;
    }
}
.portfolio-item-premium {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 280px;
    height: 280px;
}
@media (max-width: 576px) {
    .portfolio-item-premium {
        min-height: 250px;
        height: 250px;
    }
}
.portfolio-item-premium:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}
.portfolio-item-premium.tall,
.portfolio-item-premium.wide {
    grid-row: span 1;
    grid-column: span 1;
}
.portfolio-item-premium.portfolio-hidden {
    display: none !important;
}
.portfolio-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.portfolio-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.portfolio-item-premium:hover .portfolio-image-wrapper img {
    transform: scale(1.1);
}
.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(10, 10, 15, 0.95) 0%, rgba(10, 10, 15, 0.3) 50%, transparent 100%);
    opacity: 0.7;
    transition: opacity 0.4s ease;
}
.portfolio-item-premium:hover .portfolio-overlay {
    opacity: 1;
}
.portfolio-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.portfolio-item-premium:hover .portfolio-info {
    transform: translateY(0);
}
.portfolio-tag {
    display: inline-block;
    background: var(--primary-cyan);
    color: white;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}
.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}
.portfolio-tags .portfolio-tag {
    margin-bottom: 0;
    font-size: 0.65rem;
    padding: 4px 10px;
}
.portfolio-tag-more {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
}
.portfolio-info h3 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: none;
}
.portfolio-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.4s ease 0.1s;
}
.portfolio-item-premium:hover .portfolio-info p {
    max-height: 100px;
    opacity: 1;
}
.portfolio-arrow {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--near-black);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.5) rotate(-45deg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
}
.portfolio-item-premium:hover .portfolio-arrow {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}
.portfolio-arrow:hover {
    background: var(--primary-cyan);
    color: var(--white);
}
.footer-premium {
    background: linear-gradient(180deg, #1a1a2e 0%, #0a0a0f 100%);
    position: relative;
    overflow: hidden;
    padding-top: 5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-premium .footer-gradient-orb {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: -200px;
    right: -100px;
    filter: blur(60px);
}
.footer-top {
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}
.footer-logo-link {
    display: inline-block;
    margin-bottom: 1rem;
}
.footer-logo-img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1); 
    transition: all 0.3s ease;
}
.footer-logo-link:hover .footer-logo-img {
    opacity: 0.8;
}
.footer-logo {
    font-family: var(--font-headings);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    text-transform: none;
}
.footer-logo span {
    color: var(--primary-cyan);
}
.footer-social {
    display: flex;
    gap: 12px;
}
.social-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    transition: all 0.3s ease;
}
.social-icon:hover {
    background: var(--primary-cyan);
    border-color: var(--primary-cyan);
    color: var(--white);
    transform: translateY(-3px);
}
.footer-links h4,
.footer-contact h4,
.footer-links .footer-heading,
.footer-contact .footer-heading {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: none;
    display: block;
}
.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links ul li {
    margin-bottom: 12px;
}
.footer-links ul li a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}
.footer-links ul li a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-cyan);
    transition: width 0.3s ease;
}
.footer-links ul li a:hover {
    color: var(--white);
}
.footer-links ul li a:hover::before {
    width: 100%;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 1.25rem;
}
.contact-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 180, 216, 0.1);
    border-radius: 12px;
    color: var(--primary-cyan);
    font-size: 1rem;
    flex-shrink: 0;
}
.contact-text span {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}
.contact-text a,
.contact-text p {
    color: var(--white);
    font-size: 0.95rem;
    margin: 0;
    transition: color 0.3s ease;
}
.contact-text a:hover {
    color: var(--primary-cyan);
}
.footer-bottom-premium {
    padding: 2rem 0;
}
.footer-bottom-premium .copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin: 0;
}
.footer-legal {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}
.footer-legal a:hover {
    color: var(--primary-cyan);
}
@media (max-width: 768px) {
    .footer-legal {
        justify-content: center;
        gap: 1rem;
    }
}
@media (max-width: 992px) {
    .hero-stats {
        gap: 1.5rem;
    }
    .hero-stat-divider {
        display: none;
    }
    .hero-visual {
        display: none;
    }
}
@media (max-width: 768px) {
    .hero-premium {
        min-height: auto;
    }
    .hero-content-wrapper {
        padding-top: 90px;
        padding-bottom: 40px;
    }
    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
    }
    .hero-cta {
        justify-content: center;
    }
    .hero-scroll-indicator {
        display: none;
    }
    .trusted-logos {
        gap: 2rem;
    }
    .logo-item img {
        height: 32px;
        max-width: 100px;
    }
    .image-accent {
        bottom: -20px;
        right: 0;
    }
}
.page-hero {
    position: relative;
    padding: 180px 0 100px;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
    overflow: hidden;
}
.page-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.page-hero .hero-gradient-orb.orb-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -50px;
}
.page-hero .hero-gradient-orb.orb-2 {
    width: 300px;
    height: 300px;
    bottom: -100px;
    left: 10%;
}
.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}
.page-hero-content h1 {
    color: var(--white);
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    text-transform: none;
}
.page-hero-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
}
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
@media (max-width: 992px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}
.process-item {
    text-align: center;
    padding: 2rem;
    position: relative;
}
.process-item::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -1rem;
    width: 2rem;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
}
.process-item:last-child::after {
    display: none;
}
@media (max-width: 992px) {
    .process-item:nth-child(2)::after,
    .process-item:nth-child(4)::after {
        display: none;
    }
}
@media (max-width: 576px) {
    .process-item::after {
        display: none;
    }
}
.process-number {
    font-family: var(--font-headings);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(0, 180, 216, 0.2);
    margin-bottom: 1rem;
}
.process-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-cyan) 0%, #8B5CF6 100%);
    border-radius: 20px;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
    color: white;
}
.process-item h3 {
    color: var(--dark-gray);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    text-transform: none;
}
.process-item p {
    color: var(--dark-gray);
    font-size: 0.95rem;
    margin: 0;
}
.timeline-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
@media (max-width: 992px) {
    .timeline-modern {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .timeline-modern {
        grid-template-columns: 1fr;
    }
}
.timeline-item-modern {
    position: relative;
}
.timeline-year {
    font-family: var(--font-headings);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(0, 180, 216, 0.15);
    margin-bottom: 0.5rem;
}
.timeline-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}
.timeline-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}
.timeline-card.featured {
    background: linear-gradient(135deg, var(--primary-cyan) 0%, #8B5CF6 100%);
}
.timeline-card.featured h3,
.timeline-card.featured p {
    color: var(--white);
}
.timeline-card h3 {
    color: var(--near-black);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    text-transform: none;
}
.timeline-card p {
    color: var(--dark-gray);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.7;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
@media (max-width: 992px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}
.value-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
}
.value-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}
.value-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-cyan) 0%, #8B5CF6 100%);
    border-radius: 20px;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: white;
}
.value-card h3 {
    color:var(--dark-gray);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    text-transform: none;
}
.value-card p {
    color: var(--dark-gray);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.7;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
    }
}
.team-card {
    text-align: center;
}
.team-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}
.team-image img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.team-card:hover .team-image img {
    transform: scale(1.05);
}
.team-social {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}
.team-card:hover .team-social {
    opacity: 1;
    transform: translateY(0);
}
.team-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%;
    color: var(--near-black);
    transition: all 0.3s ease;
}
.team-social a:hover {
    background: var(--primary-cyan);
    color: var(--white);
}
.team-info h3 {
    color: var(--near-black);
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    text-transform: none;
}
.team-info span {
    color: var(--primary-cyan);
    font-size: 0.9rem;
    font-weight: 500;
}
.contact-form-card {
    background: #FFFFFF !important;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}
.form-group-simple {
    margin-bottom: 0;
}
.form-group-simple label {
    display: block;
    color: #374151;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}
.form-group-simple .form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    font-size: 1rem;
    font-family: var(--font-body);
    background: #FFFFFF;
    color: #1F2937;
    transition: all 0.3s ease;
}
.form-group-simple .form-input:focus {
    outline: none;
    border-color: var(--primary-cyan);
    box-shadow: 0 0 0 4px rgba(0, 180, 216, 0.1);
}
.form-group-simple .form-input::placeholder {
    color: #9CA3AF;
}
.form-group-modern {
    position: relative;
    margin-bottom: 0;
}
.form-group-modern input,
.form-group-modern textarea,
.form-group-modern select {
    width: 100%;
    padding: 1.25rem 1rem 0.75rem;
    border: 2px solid #E5E7EB !important;
    border-radius: 12px;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: all 0.3s ease;
    background: #FFFFFF !important;
    color: #1a1a2e !important;
    -webkit-text-fill-color: #1a1a2e !important;
}
.form-group-modern input::placeholder,
.form-group-modern textarea::placeholder,
.form-group-modern select::placeholder {
    color: transparent !important;
}
.form-group-modern input:focus,
.form-group-modern textarea:focus,
.form-group-modern select:focus {
    outline: none;
    border-color: var(--primary-cyan);
    box-shadow: 0 0 0 4px rgba(0, 180, 216, 0.1);
}
.form-group-modern label {
    position: absolute;
    left: 1rem;
    top: 1.25rem;
    color: #6B7280 !important;
    font-size: 0.9rem;
    pointer-events: none;
    transition: all 0.3s ease;
    background: #FFFFFF;
    padding: 0 4px;
    z-index: 1;
}
.form-group-modern input:focus + label,
.form-group-modern input:not(:placeholder-shown) + label,
.form-group-modern textarea:focus + label,
.form-group-modern textarea:not(:placeholder-shown) + label,
.form-group-modern select:focus + label,
.form-group-modern select:not([value=""]) + label {
    top: -0.5rem;
    font-size: 0.75rem;
    color: var(--primary-cyan) !important;
}
.contact-info-card {
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
    border-radius: 24px;
    padding: 3rem;
    height: 100%;
}
.contact-info-card h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    text-transform: none;
}
.contact-info-card > p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
}
.contact-info-list {
    margin-bottom: 2rem;
}
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.contact-info-item .info-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 180, 216, 0.15);
    border-radius: 12px;
    color: var(--primary-cyan);
    flex-shrink: 0;
}
.contact-info-item .info-content span {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}
.contact-info-item .info-content p,
.contact-info-item .info-content a {
    color: var(--white);
    font-size: 1rem;
    margin: 0;
}
.contact-info-item .info-content a:hover {
    color: var(--primary-cyan);
}
.contact-social h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 1rem;
    text-transform: none;
}
.map-section {
    margin-top: -2rem;
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.faq-item {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}
.faq-item:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 210, 223, 0.2);
}
.faq-item.active {
    border-color: var(--primary-cyan);
    box-shadow: 0 8px 30px rgba(0, 210, 223, 0.15);
}
.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-headings);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--near-black);
    text-align: left;
    transition: all 0.3s ease;
    gap: 1rem;
}
.faq-question span {
    flex: 1;
}
.faq-question:hover {
    color: var(--primary-cyan);
}
.faq-question:focus {
    outline: none;
}
.faq-question:focus-visible {
    outline: 2px solid var(--primary-cyan);
    outline-offset: -2px;
}
.faq-question i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 210, 223, 0.1), rgba(138, 43, 226, 0.1));
    border-radius: 50%;
    transition: all 0.3s ease;
    color: var(--primary-cyan);
    flex-shrink: 0;
    font-size: 0.9rem;
}
.faq-item:hover .faq-question i {
    background: linear-gradient(135deg, rgba(0, 210, 223, 0.2), rgba(138, 43, 226, 0.2));
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
    background: linear-gradient(135deg, var(--primary-cyan), var(--accent-violet));
    color: var(--white);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: linear-gradient(135deg, rgba(0, 210, 223, 0.03), rgba(138, 43, 226, 0.03));
}
.faq-item.active .faq-answer {
    max-height: 500px;
}
.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: var(--dark-gray);
    line-height: 1.8;
    margin: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 1.5rem;
}
@media (max-width: 768px) {
    .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }
    .faq-question i {
        width: 36px;
        height: 36px;
    }
    .faq-answer p {
        padding: 1.25rem 1.5rem;
    }
}
.portfolio-notice {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.08) 0%, rgba(139, 92, 246, 0.08) 100%);
    border: 1px solid rgba(0, 180, 216, 0.2);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    margin-bottom: 2.5rem;
}
.portfolio-notice .notice-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-cyan), #8B5CF6);
    border-radius: 10px;
    color: white;
    font-size: 1rem;
}
.portfolio-notice .notice-content p {
    margin: 0;
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 1.7;
}
.portfolio-notice .notice-content strong {
    color: var(--near-black);
}
@media (max-width: 576px) {
    .portfolio-notice {
        flex-direction: column;
        padding: 1.25rem;
    }
}
.portfolio-filter-modern {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}
.filter-btn {
    padding: 12px 24px;
    background: var(--white);
    border: 2px solid #E5E7EB;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--dark-gray);
    cursor: pointer;
    transition: all 0.3s ease;
}
.filter-btn:hover {
    border-color: var(--primary-cyan);
    color: var(--primary-cyan);
}
.filter-btn.active {
    background: var(--primary-cyan);
    border-color: var(--primary-cyan);
    color: var(--white);
}
.blog-card-featured {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}
.blog-card-featured .featured-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}
.blog-card-featured .featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.blog-card-featured:hover .featured-image img {
    transform: scale(1.05);
}
.blog-card-featured .featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--primary-cyan), #8B5CF6);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
}
.blog-card-featured .featured-content {
    padding: 2rem;
}
.blog-card-featured h2 {
    color: var(--near-black);
    font-size: 1.75rem;
    margin-bottom: 1rem;
    text-transform: none;
}
.blog-card-modern {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    height: 100%;
}
.blog-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}
.blog-card-modern .blog-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}
.blog-card-modern .blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.blog-card-modern:hover .blog-card-image img {
    transform: scale(1.08);
}
.blog-card-modern .blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-cyan);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
}
.blog-card-modern .blog-card-content {
    padding: 1.5rem;
}
.blog-card-modern h3 {
    color: var(--near-black);
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    text-transform: none;
    line-height: 1.4;
}
.blog-card-modern p {
    color: var(--dark-gray);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    color: var(--dark-gray);
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}
.blog-meta i {
    margin-right: 5px;
    color: var(--primary-cyan);
}
.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-cyan);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}
.blog-link:hover {
    gap: 12px;
    color: #0099b8;
}
.pagination-modern {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.pagination-modern li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: var(--white);
    color: var(--dark-gray);
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.pagination-modern li a:hover {
    background: var(--primary-cyan);
    color: var(--white);
}
.pagination-modern li.active a {
    background: var(--primary-cyan);
    color: var(--white);
}
.pagination-modern li.disabled a {
    opacity: 0.5;
    cursor: not-allowed;
}
.sidebar-modern {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.sticky-sidebar {
    position: sticky;
    top: 100px;
    align-self: flex-start;
}
.sidebar-widget-modern {
    background: var(--white);
    border-radius: 20px;
    padding: 1.75rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}
.sidebar-widget-modern h4 {
    color: var(--near-black);
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #E5E7EB;
    text-transform: none;
}
.search-form-modern {
    position: relative;
}
.search-form-modern input {
    width: 100%;
    padding: 14px 50px 14px 20px;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}
.search-form-modern input:focus {
    outline: none;
    border-color: var(--primary-cyan);
}
.search-form-modern button {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary-cyan);
    border: none;
    border-radius: 10px;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}
.search-form-modern button:hover {
    background: #0099b8;
}
.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.category-list li {
    margin-bottom: 0;
}
.category-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #E5E7EB;
    color: var(--dark-gray);
    transition: all 0.3s ease;
}
.category-list li:last-child a {
    border-bottom: none;
}
.category-list li a:hover {
    color: var(--primary-cyan);
}
.category-list .count {
    background: rgba(0, 180, 216, 0.1);
    color: var(--primary-cyan);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
}
.popular-posts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.popular-post {
    display: flex;
    gap: 1rem;
    padding: 0.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}
.popular-post:hover {
    background: #F8FAFC;
}
.popular-post img {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}
.popular-post h5 {
    color: var(--near-black);
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
    text-transform: none;
    line-height: 1.4;
}
.popular-post span {
    color: var(--dark-gray);
    font-size: 0.8rem;
}
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.tag-cloud a {
    display: inline-block;
    padding: 8px 16px;
    background: #F1F5F9;
    border-radius: 100px;
    color: var(--dark-gray);
    font-size: 0.85rem;
    transition: all 0.3s ease;
}
.tag-cloud a:hover {
    background: var(--primary-cyan);
    color: var(--white);
}
.newsletter-widget {
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%) !important;
    text-align: center;
}
.newsletter-widget h4 {
    color: var(--white) !important;
    border-bottom-color: rgba(255, 255, 255, 0.1) !important;
}
.newsletter-widget p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}
.newsletter-widget .newsletter-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.2) 0%, rgba(114, 9, 183, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(0, 180, 216, 0.3);
    box-shadow: 0 0 30px rgba(0, 180, 216, 0.2);
}
.newsletter-widget .newsletter-icon i {
    font-size: 1.8rem;
    color: var(--primary-cyan);
}
.newsletter-form input[type="email"] {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}
.newsletter-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}
.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: var(--primary-cyan);
}
.newsletter-widget .captcha-container {
    margin-bottom: 0.75rem;
}
.newsletter-widget .captcha-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: nowrap;
}
.newsletter-widget .captcha-code {
    padding: 8px 14px;
    font-size: 1rem;
    letter-spacing: 3px;
    background: rgba(0, 180, 216, 0.15);
    border: 1px solid rgba(0, 180, 216, 0.3);
    border-radius: 8px;
    color: var(--primary-cyan);
    font-weight: 700;
}
.newsletter-widget .captcha-refresh {
    width: 34px;
    height: 34px;
    min-width: 34px;
    padding: 0;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}
.newsletter-widget .captcha-refresh:hover {
    background: var(--primary-cyan);
    border-color: var(--primary-cyan);
    color: var(--white);
}
.newsletter-widget .captcha-input {
    flex: 0 0 auto;
    min-width: 0;
}
.newsletter-widget .captcha-input input {
    width: 90px;
    padding: 8px 10px;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: var(--white);
    text-align: center;
    letter-spacing: 3px;
    text-transform: uppercase;
}
.newsletter-widget .captcha-input input::placeholder {
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0;
    font-size: 0.7rem;
    text-transform: none;
}
.newsletter-widget .captcha-input input:focus {
    outline: none;
    border-color: var(--primary-cyan);
    background: rgba(255, 255, 255, 0.08);
}
.newsletter-widget .form-check {
    text-align: left;
    margin-bottom: 0.75rem;
    padding-left: 1.75rem;
}
.newsletter-widget .form-check-input {
    width: 16px;
    height: 16px;
    margin-left: -1.75rem;
    margin-top: 0.15rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    cursor: pointer;
}
.newsletter-widget .form-check-input:checked {
    background-color: var(--primary-cyan);
    border-color: var(--primary-cyan);
}
.newsletter-widget .form-check-input:focus {
    box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.25);
}
.newsletter-widget .form-check-label {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 0.75rem !important;
    line-height: 1.4;
    cursor: pointer;
}
.newsletter-widget .form-check-label a {
    color: var(--primary-cyan) !important;
    text-decoration: underline;
}
.newsletter-widget .form-check-label a:hover {
    color: var(--secondary-magenta) !important;
}
.newsletter-widget .btn-modern {
    width: 100%;
    margin-top: 0.25rem;
}
.toc-widget .toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.toc-widget .toc-list li {
    margin-bottom: 0;
}
.toc-widget .toc-list li a {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid #E5E7EB;
    color: var(--dark-gray);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}
.toc-widget .toc-list li:last-child a {
    border-bottom: none;
}
.toc-widget .toc-list li a:hover {
    color: var(--primary-cyan);
    padding-left: 10px;
}
.toc-widget .toc-list li a.active {
    color: var(--primary-cyan);
    padding-left: 10px;
    font-weight: 600;
    border-bottom-color: var(--primary-cyan);
}
.blog-post-hero .page-hero-content {
    text-align: center;
}
.blog-post-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 1.5rem;
}
.blog-tag {
    background: rgba(0, 180, 216, 0.2);
    color: var(--primary-cyan);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
}
.blog-post-info {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}
.blog-post-info .divider {
    color: rgba(255, 255, 255, 0.3);
}
.author-info {
    display: flex;
    align-items: center;
    gap: 10px;
}
.author-info img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.3);
}
.blog-post-article {
    background: var(--white);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}
.article-featured-image {
    margin: -3rem -3rem 2rem;
    border-radius: 24px 24px 0 0;
    overflow: hidden;
}
.article-featured-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}
.blog-post-article .lead {
    font-size: 1.2rem;
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}
.blog-post-article p {
    color: #4B5563;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}
.blog-post-article h2 {
    color: var(--near-black);
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    text-transform: none;
}
.blog-post-article h3 {
    color: var(--near-black);
    font-size: 1.35rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    text-transform: none;
}
.blog-post-article h4 {
    color: var(--near-black);
    font-size: 1.15rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    text-transform: none;
}
.blog-post-article .article-image {
    width: 100%;
    border-radius: 16px;
    margin: 2rem 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}
.article-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}
.article-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: #4B5563;
    line-height: 1.6;
}
.article-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--primary-cyan);
    border-radius: 50%;
}
.article-quote {
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.05), rgba(139, 92, 246, 0.05));
    border-left: 4px solid var(--primary-cyan);
    padding: 2rem;
    border-radius: 0 16px 16px 0;
    margin: 2rem 0;
}
.article-quote p {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--near-black);
    margin-bottom: 0.5rem;
}
.article-quote cite {
    color: var(--primary-cyan);
    font-size: 0.95rem;
    font-style: normal;
}
.article-code {
    background: #1E293B;
    border-radius: 16px;
    overflow: hidden;
    margin: 2rem 0;
}
.article-code .code-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background: #0F172A;
}
.article-code .code-header span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}
.article-code .copy-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    cursor: pointer;
    transition: color 0.3s ease;
}
.article-code .copy-btn:hover {
    color: var(--primary-cyan);
}
.article-code pre {
    padding: 1.5rem 20px;
    margin: 0;
    overflow-x: auto;
}
.article-code code {
    color: #E2E8F0;
    font-family: 'Fira Code', 'Consolas', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
}
.article-conclusion {
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
    padding: 2rem;
    border-radius: 16px;
    margin-top: 2.5rem;
}
.article-conclusion h2 {
    color: var(--white);
    margin-top: 0;
}
.article-conclusion p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}
.author-card {
    display: flex;
    gap: 1.5rem;
    background: #F8FAFC;
    padding: 2rem;
    border-radius: 16px;
    margin-top: 2.5rem;
}
.author-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.author-card h4 {
    color: var(--near-black);
    margin-bottom: 0.25rem;
    text-transform: none;
}
.author-card span {
    color: var(--primary-cyan);
    font-size: 0.9rem;
    font-weight: 500;
    display: block;
    margin-bottom: 0.75rem;
}
.author-card p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
}
.author-social {
    display: flex;
    gap: 10px;
}
.author-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%;
    color: var(--dark-gray);
    transition: all 0.3s ease;
}
.author-social a:hover {
    background: var(--primary-cyan);
    color: var(--white);
}
.share-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid #E5E7EB;
}
.share-buttons span {
    color: var(--dark-gray);
    font-weight: 500;
}
.share-links {
    display: flex;
    gap: 10px;
}
.share-link {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s ease;
}
.share-link.facebook { background: #1877F2; }
.share-link.twitter { background: #1DA1F2; }
.share-link.linkedin { background: #0A66C2; }
.share-link.copy { background: var(--near-black); }
.share-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.related-posts {
    margin-top: 3rem;
}
.related-posts h3 {
    color: var(--near-black);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-transform: none;
}
@media (max-width: 991px) {
    .blog-post-article {
        padding: 2rem;
    }
    .article-featured-image {
        margin: -2rem -2rem 1.5rem;
    }
    .author-card {
        flex-direction: column;
        text-align: center;
    }
    .author-card img {
        margin: 0 auto;
    }
    .author-social {
        justify-content: center;
    }
    .share-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
}
@media (max-width: 576px) {
    .blog-card-featured .featured-image {
        height: 250px;
    }
    .blog-post-info {
        flex-direction: column;
        gap: 0.5rem;
    }
    .blog-post-info .divider {
        display: none;
    }
}
.project-hero {
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}
.project-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}
.back-link:hover {
    color: var(--primary-cyan);
    transform: translateX(-5px);
}
.project-category-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(0, 180, 216, 0.1);
    border: 1px solid rgba(0, 180, 216, 0.3);
    color: var(--primary-cyan);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}
.project-title {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}
.project-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
}
.project-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}
.meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.meta-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.meta-value {
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 600;
}
.project-hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.project-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}
.project-section {
    margin-bottom: 4rem;
}
.section-title-modern {
    font-size: 2rem;
    color: var(--near-black);
    margin-bottom: 1.5rem;
}
.project-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}
.project-list li {
    padding: 0.75rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.project-list li:last-child {
    border-bottom: none;
}
.project-list i {
    color: var(--primary-cyan);
    margin-top: 0.25rem;
    flex-shrink: 0;
}
.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.solution-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}
.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: var(--primary-cyan);
}
.solution-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-cyan), #8B5CF6);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.solution-icon i {
    font-size: 1.5rem;
    color: var(--white);
}
.solution-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    text-transform: none;
}
.solution-card p {
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}
.results-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 16px;
}
.result-item {
    text-align: center;
}
.result-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-cyan), #8B5CF6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}
.result-label {
    font-size: 0.9rem;
    color: var(--dark-gray);
    font-weight: 500;
}
.project-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}
.gallery-item:hover img {
    transform: scale(1.05);
}
.project-testimonial {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    border-left: 4px solid var(--primary-cyan);
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    margin-top: 2rem;
}
.quote-icon {
    font-size: 3rem;
    color: var(--primary-cyan);
    opacity: 0.2;
    margin-bottom: 1rem;
}
.testimonial-text {
    font-size: 1.1rem;
    color: var(--near-black);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.5rem;
}
.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.testimonial-author strong {
    color: var(--near-black);
    font-size: 1rem;
}
.testimonial-author span {
    color: var(--dark-gray);
    font-size: 0.9rem;
}
.project-sidebar {
    position: sticky;
    top: 100px;
}
.sidebar-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.08);
    margin-bottom: 1.5rem;
}
.sidebar-title {
    font-size: 1.25rem;
    color: var(--near-black);
    margin-bottom: 1.5rem;
    text-transform: none;
}
.sidebar-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.info-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.info-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark-gray);
    font-size: 0.9rem;
}
.info-label i {
    color: var(--primary-cyan);
    font-size: 0.85rem;
}
.info-value {
    color: var(--near-black);
    font-weight: 600;
    font-size: 0.95rem;
}
.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.tech-tag {
    padding: 0.5rem 1rem;
    background: rgba(0, 180, 216, 0.1);
    color: var(--primary-cyan);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(0, 180, 216, 0.2);
}
.services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.services-list li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.services-list li:last-child {
    border-bottom: none;
}
.services-list i {
    color: var(--primary-cyan);
    font-size: 0.85rem;
}
.sidebar-cta {
    background: linear-gradient(135deg, var(--primary-cyan), #8B5CF6);
    color: var(--white);
    text-align: center;
}
.sidebar-cta h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}
.sidebar-cta p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
}
.btn-primary-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary-cyan) 0%, #0096B4 100%);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 180, 216, 0.3);
    text-decoration: none;
    border: none;
    cursor: pointer;
}
.btn-primary-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 180, 216, 0.4);
    color: var(--white);
}
.btn-primary-modern i {
    transition: transform 0.3s ease;
}
.btn-primary-modern:hover i {
    transform: translateX(5px);
}
.sidebar-cta .btn-primary-modern {
    background: var(--white);
    color: var(--primary-cyan);
}
.sidebar-cta .btn-primary-modern:hover {
    background: rgba(255,255,255,0.9);
    transform: translateY(-2px);
}
@media (max-width: 991px) {
    .project-hero {
        padding: 100px 0 60px;
    }
    .project-title {
        font-size: 2.5rem;
    }
    .project-subtitle {
        font-size: 1.1rem;
    }
    .project-sidebar {
        position: static;
        margin-top: 3rem;
    }
    .solution-grid {
        grid-template-columns: 1fr;
    }
    .results-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .project-title {
        font-size: 2rem;
    }
    .project-meta {
        flex-direction: column;
        gap: 1rem;
    }
    .section-title-modern {
        font-size: 1.5rem;
    }
    .results-stats {
        grid-template-columns: 1fr;
    }
    .project-testimonial {
        padding: 2rem;
    }
}
.service-detail-hero {
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}
.service-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.service-category-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 180, 216, 0.1);
    border: 1px solid rgba(0, 180, 216, 0.3);
    color: var(--primary-cyan);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}
.service-detail-title {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}
.service-detail-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
}
.service-quick-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}
.quick-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.quick-stat strong {
    font-size: 1.5rem;
    color: var(--primary-cyan);
    font-weight: 700;
}
.quick-stat span {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}
.hero-cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.service-hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.service-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}
.features-grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.feature-card-modern {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
}
.feature-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: var(--primary-cyan);
}
.feature-icon-modern {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-cyan), #8B5CF6);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}
.feature-icon-modern i {
    font-size: 1.8rem;
    color: var(--white);
}
.feature-card-modern h3 {
    font-size: 1.1rem;
    color: var(--near-black);
    margin-bottom: 0.75rem;
    text-transform: none;
}
.feature-card-modern p {
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}
.timeline-process {
    position: relative;
    margin: 4rem auto 0;
    padding: 0;
}
.timeline-process::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-cyan) 0%, #8B5CF6 100%);
    border-radius: 4px;
}
.timeline-item {
    position: relative;
    margin-bottom: 0;
    padding: 2rem 0;
}
.timeline-item:last-child {
    padding-bottom: 0;
}
.timeline-item .row {
    position: relative;
}
.timeline-dot {
    position: relative;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-cyan), #8B5CF6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    font-weight: 800;
    z-index: 10;
    border: 6px solid var(--white);
    box-shadow: 0 10px 30px rgba(0, 180, 216, 0.4);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
}
.timeline-item:hover .timeline-dot {
    transform: scale(1.15);
    box-shadow: 0 15px 40px rgba(0, 180, 216, 0.5);
}
.timeline-content {
    background: var(--white);
    padding: 2.5rem 3rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}
.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border-style: solid;
    transform: translateY(-50%);
    border-width: 15px;
}
.timeline-item:nth-child(odd) .timeline-content::before {
    left: -15px;
    border-color: transparent var(--white) transparent transparent;
    filter: drop-shadow(-2px 0 2px rgba(0, 0, 0, 0.05));
}
.timeline-item:nth-child(even) .timeline-content::before {
    right: -15px;
    border-color: transparent transparent transparent var(--white);
    filter: drop-shadow(2px 0 2px rgba(0, 0, 0, 0.05));
}
.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-cyan);
}
.timeline-content h3 {
    font-size: 1.5rem;
    color: var(--near-black);
    margin-bottom: 0.75rem;
    text-transform: none;
    font-weight: 700;
}
.timeline-content > p {
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1rem;
}
.timeline-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}
.timeline-checklist li {
    padding: 0.6rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--near-black);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.timeline-checklist li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.timeline-checklist li i {
    color: var(--primary-cyan);
    font-size: 1rem;
    flex-shrink: 0;
}
.timeline-number {
    display: none;
}
.seminar-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.sidebar-footer {
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.1) 0%, rgba(114, 9, 183, 0.1) 100%);
    border: 2px dashed rgba(0, 180, 216, 0.3);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    color: var(--dark-gray);
    margin-top: 0.5rem;
}
.sidebar-footer i {
    font-size: 1.5rem;
    color: var(--primary-cyan);
    display: block;
    margin-bottom: 0.5rem;
}
.sidebar-footer span {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
@media (max-width: 991px) {
    .seminar-sidebar {
        position: relative;
        top: 0;
    }
}
.seminar-info-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 16px;
    padding: 2rem;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(26, 26, 46, 0.3);
}
.seminar-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-cyan) 0%, var(--accent-violet) 100%);
}
.seminar-info-card h3 {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    color: #fff;
}
.seminar-info-card h3 i {
    margin-right: 0.5rem;
}
.seminar-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.seminar-info-item:last-of-type {
    border-bottom: none;
}
.seminar-info-item > i {
    width: 40px;
    height: 40px;
    background: rgba(0, 180, 216, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-cyan);
    flex-shrink: 0;
}
.seminar-info-item div strong {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.7;
    margin-bottom: 0.25rem;
}
.seminar-info-item div span {
    font-size: 1rem;
    font-weight: 500;
}
.seminar-info-item.seminar-price .price-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-cyan);
}
.seminar-info-item small {
    display: block;
    font-size: 0.8rem;
    opacity: 0.7;
}
.trainer-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}
.trainer-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-cyan) 0%, var(--accent-violet) 100%);
}
.trainer-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
    border: 4px solid var(--primary-cyan);
}
.trainer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.trainer-info {
    text-align: center;
}
.trainer-label {
    display: inline-block;
    background: rgba(0, 180, 216, 0.1);
    color: var(--primary-cyan);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}
.trainer-info h4 {
    margin-bottom: 0.25rem;
    font-size: 1.25rem;
}
.trainer-title {
    color: var(--dark-gray);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}
.trainer-bio {
    font-size: 0.85rem;
    color: var(--dark-gray);
    line-height: 1.6;
}
.seminar-schedule {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}
.seminar-schedule::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.08) 0%, transparent 70%);
    pointer-events: none;
}
.seminar-schedule h3 {
    margin-bottom: 2rem;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.seminar-schedule h3 i {
    font-size: 1.25rem;
}
.schedule-timeline {
    position: relative;
    padding-left: 100px;
}
.schedule-timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 20px;
    bottom: 20px;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-cyan) 0%, var(--accent-violet) 50%, var(--primary-cyan) 100%);
    border-radius: 3px;
}
.schedule-item {
    position: relative;
    padding: 1rem 0 1rem 1.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, rgba(0, 180, 216, 0.03) 0%, transparent 100%);
    border-radius: 12px;
    transition: all 0.3s ease;
}
.schedule-item:hover {
    background: linear-gradient(90deg, rgba(0, 180, 216, 0.08) 0%, transparent 100%);
    transform: translateX(5px);
}
.schedule-item:last-child {
    margin-bottom: 0;
}
.schedule-time,
.schedule-number {
    position: absolute;
    left: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 70px;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--primary-cyan) 0%, #0096c7 100%);
    padding: 0.4rem 0.5rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 180, 216, 0.3);
    line-height: 1.2;
}
.schedule-number {
    font-size: 1.1rem;
    font-weight: 800;
    padding: 0.5rem;
}
.schedule-content {
    position: relative;
}
.schedule-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
    color: var(--near-black);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.schedule-content p {
    color: var(--dark-gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
    padding-left: 0;
}
.schedule-day-header {
    margin: 2rem 0 1.5rem -100px;
    padding-left: 100px;
    position: relative;
}
.schedule-day-header::before {
    content: '';
    position: absolute;
    left: 38px;
    top: 50%;
    width: 8px;
    height: 8px;
    background: var(--accent-violet);
    border-radius: 50%;
    transform: translateY(-50%);
}
.day-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--accent-violet) 0%, #9d4edd 100%);
    color: #fff;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 20px rgba(114, 9, 183, 0.35);
}
.day-badge::before {
    content: '☀️';
    font-size: 1rem;
}
.schedule-day-header:first-child {
    margin-top: 0;
}
.schedule-item.schedule-pause {
    background: transparent;
    padding: 0.75rem 0 0.75rem 1.5rem;
}
.schedule-item.schedule-pause:hover {
    background: transparent;
    transform: none;
}
.schedule-item.schedule-pause .schedule-content h4 {
    font-size: 0.95rem;
    color: var(--dark-gray);
    font-weight: 500;
    font-style: italic;
}
.schedule-item.schedule-pause .schedule-content h4 i {
    color: #b5651d;
}
.schedule-item.schedule-pause .schedule-content h4 i.fa-utensils {
    color: #e85d04;
}
.schedule-item.schedule-pause .schedule-time {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    font-size: 0.7rem;
    padding: 0.3rem 0.4rem;
    opacity: 0.7;
}
@media (max-width: 767px) {
    .schedule-timeline {
        padding-left: 0;
    }
    .schedule-timeline::before {
        display: none;
    }
    .schedule-item {
        padding: 1rem;
        margin-bottom: 0.75rem;
        background: rgba(0, 180, 216, 0.05);
        border-left: 4px solid var(--primary-cyan);
    }
    .schedule-item:hover {
        transform: none;
        background: rgba(0, 180, 216, 0.1);
    }
    .schedule-time,
    .schedule-number {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        width: auto;
        display: inline-block;
        margin-bottom: 0.75rem;
        font-size: 0.8rem;
    }
    .schedule-day-header {
        margin-left: 0;
        padding-left: 0;
        margin: 1.5rem 0 1rem;
    }
    .schedule-day-header::before {
        display: none;
    }
    .schedule-item.schedule-pause {
        padding: 0.75rem 1rem;
        background: rgba(0, 0, 0, 0.02);
        border-left-color: var(--dark-gray);
    }
}
.learning-goals {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}
.learning-goals h3 {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}
.learning-goals h3 i {
    margin-right: 0.5rem;
}
.goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}
.goal-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(0, 180, 216, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}
.goal-item:hover {
    background: rgba(0, 180, 216, 0.1);
    transform: translateX(5px);
}
.goal-item i {
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}
.goal-item span {
    font-size: 0.95rem;
    color: var(--near-black);
}
.info-box {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}
.info-box h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.info-box h4 i {
    color: var(--primary-cyan);
}
.info-box p {
    font-size: 0.9rem;
    color: var(--dark-gray);
    line-height: 1.6;
    margin: 0;
}
.seminar-dates-section {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}
.seminar-dates-section h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.dates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}
.date-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}
.date-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 180, 216, 0.15);
    border-color: var(--primary-cyan);
}
.date-card-sold-out {
    opacity: 0.7;
}
.date-card-sold-out:hover {
    transform: none;
    border-color: transparent;
}
.date-card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
}
.date-badge {
    text-align: center;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}
.date-day {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    color: var(--primary-cyan);
}
.date-month {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.25rem;
}
.date-year {
    display: block;
    font-size: 0.75rem;
    opacity: 0.7;
}
.date-range-separator {
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0.5;
}
.date-card-body {
    padding: 1.25rem;
}
.date-info {
    margin-bottom: 1rem;
}
.date-info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--dark-gray);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.date-info-item:last-child {
    border-bottom: none;
}
.date-info-item i {
    width: 20px;
    color: var(--primary-cyan);
    text-align: center;
}
.date-price {
    text-align: center;
    padding-top: 0.75rem;
    border-top: 2px dashed rgba(0, 0, 0, 0.08);
}
.early-bird-banner {
    display: inline-block;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.price-old {
    display: block;
    font-size: 1rem;
    text-decoration: line-through;
    color: var(--dark-gray);
    opacity: 0.6;
}
.price-current {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-cyan);
}
.date-card-footer {
    padding: 0 1.25rem 1.25rem;
}
.date-card-footer .btn {
    border-radius: 10px;
    font-weight: 600;
}
@media (max-width: 576px) {
    .dates-grid {
        grid-template-columns: 1fr;
    }
    .date-card-header {
        padding: 1rem;
    }
    .date-day {
        font-size: 1.5rem;
    }
    .seminar-dates-section {
        padding: 1.5rem;
    }
}
.seminar-cta {
    background: linear-gradient(135deg, var(--primary-cyan) 0%, var(--accent-violet) 100%);
    border-radius: 16px;
    padding: 2rem;
    color: #fff;
}
.seminar-cta h3 {
    color: #fff;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}
.seminar-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 1.05rem;
}
.seminar-cta .btn-light {
    background: #fff;
    color: var(--primary-cyan);
    border: none;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}
.seminar-cta .btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}
@media (max-width: 991px) {
    .seminar-cta {
        text-align: center;
    }
}
@media (max-width: 991px) {
    .schedule-timeline {
        padding-left: 80px;
    }
    .schedule-timeline::before {
        left: 30px;
    }
    .schedule-time,
    .schedule-number {
        left: -80px;
        width: 60px;
        font-size: 0.7rem;
    }
    .schedule-day-header {
        margin-left: -80px;
        padding-left: 80px;
    }
    .schedule-day-header::before {
        left: 28px;
    }
}
@media (max-width: 576px) {
    .seminar-info-card,
    .seminar-schedule,
    .learning-goals {
        padding: 1.5rem;
    }
    .goals-grid {
        grid-template-columns: 1fr;
    }
    .seminar-schedule h3 {
        font-size: 1.25rem;
    }
}
@media (max-width: 991px) {
    .timeline-process::before {
        left: 30px;
    }
    .timeline-dot {
        left: 30px;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    .timeline-item:nth-child(odd) .timeline-content::before,
    .timeline-item:nth-child(even) .timeline-content::before {
        left: -11px;
        right: auto;
        border-right: none;
        border-top: none;
        border-left: 1px solid rgba(0, 0, 0, 0.08);
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }
    .timeline-content {
        margin-left: 80px;
    }
}
@media (max-width: 576px) {
    .timeline-process::before {
        left: 25px;
    }
    .timeline-dot {
        left: 25px;
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        border-width: 4px;
    }
    .timeline-content {
        margin-left: 70px;
        padding: 1.5rem;
        border-radius: 12px;
    }
    .timeline-content::before {
        display: none;
    }
    .timeline-content h3 {
        font-size: 1.25rem;
    }
    .timeline-content > p {
        font-size: 0.9rem;
    }
    .timeline-checklist li {
        font-size: 0.9rem;
    }
}
.pricing-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    width: 100%;
    max-width: 100%;
}
.pricing-card {
    background: var(--white);
    border: 2px solid rgba(0,0,0,0.08);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
}
.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.pricing-card.featured {
    border-color: var(--primary-cyan);
    box-shadow: 0 10px 40px rgba(0, 180, 216, 0.2);
}
.pricing-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary-cyan), #8B5CF6);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}
.pricing-header h3 {
    font-size: 1.75rem;
    color: var(--near-black);
    margin-bottom: 0.5rem;
    text-transform: none;
}
.pricing-header p {
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}
.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(0,0,0,0.05);
}
.price-currency {
    font-size: 1.2rem;
    color: var(--dark-gray);
}
.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--near-black);
}
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}
.pricing-features li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.pricing-features li:last-child {
    border-bottom: none;
}
.pricing-features li i {
    color: var(--primary-cyan);
    font-size: 0.9rem;
}
.pricing-features li.disabled {
    opacity: 0.4;
}
.pricing-features li.disabled i {
    color: var(--dark-gray);
}
.btn-modern-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid var(--primary-cyan);
    color: var(--primary-cyan);
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}
.btn-modern-outline:hover {
    background: var(--primary-cyan);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 180, 216, 0.3);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.testimonial-card-modern {
    background: rgba(255,255,255,0.05);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
}
.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}
.testimonial-rating i {
    color: #FFB800;
    font-size: 1.1rem;
}
.testimonial-text {
    color: var(--dark-gray);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.testimonial-logo-wrapper {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    flex-shrink: 0;
}
.testimonial-company-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}
.testimonial-card-modern:hover .testimonial-company-logo {
    transform: scale(1.05);
}
.testimonial-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-cyan) 0%, var(--accent-violet) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    flex-shrink: 0;
}
.testimonial-author-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.testimonial-author strong {
    color: var(--near-black);
    font-size: 1rem;
}
.testimonial-author span {
    color: var(--dark-gray);
    font-size: 0.9rem;
}
.faq-intro {
    position: sticky;
    top: 100px;
    margin-bottom: 2rem;
}
.faq-intro .section-label {
    display: inline-block;
    background: rgba(0, 180, 216, 0.1);
    color: var(--primary-cyan);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.faq-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.faq-intro p {
    color: var(--dark-gray);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.faq-accordion .faq-item {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}
.faq-accordion .faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 180, 216, 0.3);
}
.faq-accordion .faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
}
.faq-accordion .faq-question:hover {
    background: rgba(0, 180, 216, 0.05);
}
.faq-accordion .faq-question h3,
.faq-accordion .faq-question .faq-question-text {
    font-size: 1.1rem;
    color: var(--near-black);
    margin: 0;
    text-transform: none;
    font-weight: 600;
    letter-spacing: 0;
    flex: 1;
    padding-right: 1rem;
}
.faq-accordion .faq-question i {
    color: var(--primary-cyan);
    font-size: 1rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}
.faq-accordion .faq-item.active .faq-question {
    background: rgba(0, 180, 216, 0.05);
}
.faq-accordion .faq-item.active .faq-question i,
.faq-accordion .faq-question[aria-expanded="true"] i {
    transform: rotate(180deg);
}
.faq-accordion .collapse {
    background: rgba(0, 180, 216, 0.02);
}
.faq-accordion .collapse .faq-answer {
    max-height: none;
    overflow: visible;
}
.faq-accordion .collapsing {
    background: rgba(0, 180, 216, 0.02);
}
.faq-accordion .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: rgba(0, 180, 216, 0.02);
}
.faq-accordion .faq-item.active .faq-answer {
    max-height: 500px;
}
.faq-accordion .collapse.show .faq-answer,
.faq-accordion .faq-item.active .faq-answer {
    padding-top: 0.5rem;
    border-top: 1px solid rgba(0, 180, 216, 0.1);
}
.faq-accordion .faq-answer p {
    padding: 1rem 2rem 1.5rem;
    color: var(--dark-gray);
    line-height: 1.8;
    margin: 0;
    font-size: 1rem;
}
@media (max-width: 991px) {
    .faq-intro {
        position: relative;
        top: 0;
        margin-bottom: 2rem;
    }
    .faq-intro h2 {
        font-size: 2rem;
    }
}
@media (max-width: 576px) {
    .faq-accordion .faq-question {
        padding: 1.25rem 1.5rem;
    }
    .faq-accordion .faq-question h3,
    .faq-accordion .faq-question .faq-question-text {
        font-size: 1rem;
    }
    .faq-accordion .faq-answer p {
        padding: 0.75rem 1.5rem 1.25rem;
    }
}
.faq-section {
    background: var(--light-gray);
    position: relative;
}
.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, var(--white), var(--light-gray));
}
.seo-content-section {
    background: var(--white);
    position: relative;
}
.seo-block {
    padding: 2rem 0;
}
.seo-block-image {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
@media (min-width: 992px) {
    .seo-sticky-section {
        overflow: visible !important;
    }
    .seo-sticky-section .container,
    .seo-sticky-section .row,
    .seo-sticky-section .col-lg-5,
    .seo-sticky-section .col-lg-7 {
        overflow: visible !important;
    }
    .seo-sticky-section .seo-block {
        align-items: stretch !important;
    }
    .seo-sticky-section .col-lg-5 {
        display: flex;
        flex-direction: column;
    }
    .seo-sticky-image {
        position: -webkit-sticky;
        position: sticky;
        top: 100px;
        align-self: flex-start;
    }
}
.seo-block-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.seo-block-image:hover img {
    transform: scale(1.03);
}
.seo-block-content {
    padding: 0 1.5rem;
}
.seo-block-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}
.seo-block-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--dark-gray);
}
.seo-block-text p.lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--near-black);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}
.seo-block-text p {
    margin-bottom: 1rem;
}
.seo-block-text h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}
.seo-block-text h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}
.seo-block-text ul,
.seo-block-text ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}
.seo-block-text ul {
    list-style: none;
    padding-left: 0;
}
.seo-block-text ul li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    line-height: 1.7;
}
.seo-block-text ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--primary-cyan), var(--accent-violet));
    border-radius: 50%;
}
.seo-block-text ol li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}
@media (max-width: 991px) {
    .seo-block-content {
        padding: 0;
    }
    .seo-block-title {
        margin-top: 1.5rem;
    }
}
@media (max-width: 768px) {
    .seo-block {
        padding: 1.5rem 0;
    }
    .seo-block-title {
        font-size: 1.4rem;
    }
    .seo-block-text {
        font-size: 1rem;
        line-height: 1.8;
    }
    .seo-block-text p.lead {
        font-size: 1.1rem;
    }
    .seo-block-text h3 {
        font-size: 1.2rem;
        margin-top: 1.5rem;
    }
    .seo-block-text h4 {
        font-size: 1.1rem;
        margin-top: 1.25rem;
    }
}
.rounded-lg {
    border-radius: 16px !important;
}
.bg-gradient-section {
    background: linear-gradient(135deg, var(--primary-cyan), #8B5CF6);
}
.cta-content-left {
    color: var(--dark-gray);
}
.contact-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}
.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--dark-gray);
    font-size: 1.05rem;
}
.benefit-item i {
    font-size: 1.5rem;
    color: var(--primary-cyan);
}
.contact-form-card-modern {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.usecase-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(0,0,0,0.08);
    height: 100%;
    transition: all 0.3s ease;
}
.usecase-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: var(--primary-cyan);
}
.usecase-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-cyan), #8B5CF6);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.usecase-icon i {
    font-size: 1.8rem;
    color: var(--white);
}
.usecase-card h3 {
    font-size: 1.3rem;
    color: var(--near-black);
    margin-bottom: 1rem;
    text-transform: none;
}
.usecase-card > p {
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.usecase-features {
    list-style: none;
    padding: 0;
    margin: 0;
}
.usecase-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--dark-gray);
    padding: 0.5rem 0;
    font-size: 0.95rem;
}
.usecase-features li i {
    color: var(--primary-cyan);
    font-size: 0.9rem;
}
.trainer-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(0,0,0,0.08);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}
.trainer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.trainer-image {
    margin-bottom: 1.5rem;
}
.trainer-placeholder {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-cyan), #8B5CF6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}
.trainer-placeholder i {
    font-size: 3rem;
    color: var(--white);
}
.trainer-info h3 {
    font-size: 1.3rem;
    color: var(--near-black);
    margin-bottom: 0.5rem;
    text-transform: none;
}
.trainer-role {
    color: var(--primary-cyan);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}
.trainer-info > p {
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.trainer-skills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}
.trainer-skills span {
    background: rgba(0, 180, 216, 0.1);
    color: var(--primary-cyan);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}
.captcha-container {
    margin-bottom: 1rem;
}
.captcha-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.captcha-code {
    padding: 0.6rem 1rem;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.25rem;
    user-select: none;
    background: rgba(0, 180, 216, 0.1);
    border: 1px solid rgba(0, 180, 216, 0.2);
    color: var(--near-black);
}
.captcha-refresh {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    color: var(--primary-cyan);
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}
.captcha-refresh:hover {
    background: var(--primary-cyan);
    border-color: var(--primary-cyan);
    color: var(--white);
    transform: rotate(180deg);
}
.captcha-input {
    flex: 1;
    min-width: 120px;
}
.captcha-input input {
    width: 100%;
    padding: 0.6rem 1rem;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.15rem;
    transition: border-color 0.3s ease;
}
.captcha-input input::placeholder {
    text-transform: none;
    letter-spacing: 0;
    color: rgba(0,0,0,0.4);
}
.captcha-input input:focus {
    outline: none;
    border-color: var(--primary-cyan);
}
.captcha-dark .captcha-code {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
    color: #fff;
}
.captcha-dark .captcha-refresh {
    border-color: rgba(255,255,255,0.2);
    color: #fff;
}
.captcha-dark .captcha-input input {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
    color: #fff;
}
.captcha-dark .captcha-input input::placeholder {
    color: rgba(255,255,255,0.5);
}
.captcha-dark .captcha-input input:focus {
    border-color: var(--primary-cyan);
}
.contact-form-card-modern .captcha-code {
    background: rgba(0, 180, 216, 0.1);
    border: 1px solid rgba(0, 180, 216, 0.2);
    color: var(--near-black);
}
.contact-form-card-modern .captcha-refresh {
    border-color: rgba(0,0,0,0.1);
    color: var(--primary-cyan);
    background: transparent;
}
.contact-form-card-modern .captcha-input input {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.1);
    color: var(--near-black);
}
.contact-form-card-modern .captcha-input input::placeholder {
    color: rgba(0,0,0,0.4);
}
.contact-form-card-modern .captcha-input input:focus {
    border-color: var(--primary-cyan);
}
.newsletter-form .captcha-container {
    margin-bottom: 0.75rem;
}
.newsletter-form .captcha-row {
    gap: 0.5rem;
}
.newsletter-form .captcha-code {
    padding: 0.5rem 1rem;
    font-size: 1.1rem;
}
.newsletter-form .captcha-input input {
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
}
@media (max-width: 1200px) {
    .pricing-grid-3 {
        gap: 1.5rem;
    }
}
@media (max-width: 991px) {
    .service-detail-hero {
        padding: 100px 0 60px;
    }
    .service-detail-title {
        font-size: 2.5rem;
    }
    .service-quick-stats {
        gap: 2rem;
    }
    .faq-intro {
        position: static;
        margin-bottom: 2rem;
    }
    .features-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .pricing-grid-3 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
@media (max-width: 576px) {
    .service-detail-title {
        font-size: 2rem;
    }
    .service-quick-stats {
        flex-direction: column;
        gap: 1rem;
    }
    .hero-cta-buttons {
        flex-direction: column;
    }
    .features-grid-4 {
        grid-template-columns: 1fr;
    }
    .contact-form-card-modern {
        padding: 2rem;
    }
}
.bg-light .row:has(.sticky-sidebar) {
    align-items: flex-start;
}
.legal-content {
    background: var(--white);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}
.legal-section {
    margin-bottom: 2.5rem;
    scroll-margin-top: 100px;
}
.legal-section:last-child {
    margin-bottom: 0;
}
.legal-section h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--near-black);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(0, 180, 216, 0.2);
}
.legal-section h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--near-black);
    margin-bottom: 0.75rem;
}
.legal-card {
    background: #f8fafc;
    border-radius: 16px;
    padding: 1.5rem;
    border-left: 4px solid var(--primary-cyan);
}
.legal-card p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 0;
}
.legal-card p + p {
    margin-top: 0.75rem;
}
.legal-card strong {
    color: var(--near-black);
}
.legal-card a {
    color: var(--primary-cyan);
    text-decoration: underline;
}
.legal-card a:hover {
    color: var(--secondary-magenta);
}
.legal-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}
.legal-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: var(--dark-gray);
}
.legal-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    background: var(--primary-cyan);
    border-radius: 50%;
}
.text-primary {
    color: var(--primary-cyan) !important;
}
@media (max-width: 768px) {
    .legal-content {
        padding: 2rem;
    }
    .legal-section h2 {
        font-size: 1.25rem;
    }
    .legal-card {
        padding: 1.25rem;
    }
}
.cookie-consent-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 99999;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.cookie-consent-overlay.active {
    opacity: 1;
    visibility: visible;
}
.cookie-consent-overlay.hiding {
    opacity: 0;
}
.cookie-consent-banner {
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
    border-radius: 24px 24px 0 0;
    padding: 2rem;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -10px 60px rgba(0, 0, 0, 0.3);
}
.cookie-consent-overlay.active .cookie-consent-banner {
    transform: translateY(0);
}
.cookie-consent-banner.expanded {
    max-height: 90vh;
}
.cookie-consent-header {
    text-align: center;
    margin-bottom: 1.5rem;
}
.cookie-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.2) 0%, rgba(114, 9, 183, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(0, 180, 216, 0.3);
}
.cookie-icon i {
    font-size: 1.8rem;
    color: var(--primary-cyan);
}
.cookie-consent-header h3,
.cookie-consent-header .cookie-consent-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
    display: block;
}
.cookie-consent-header p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}
.cookie-categories {
    margin-bottom: 1.5rem;
}
.cookie-category {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}
.cookie-category:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 180, 216, 0.3);
}
.cookie-category:last-child {
    margin-bottom: 0;
}
.cookie-category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.cookie-category-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}
.cookie-category-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}
.cookie-category-icon.essential {
    background: rgba(16, 185, 129, 0.15);
    color: #10B981;
}
.cookie-category-icon.statistics {
    background: rgba(59, 130, 246, 0.15);
    color: #3B82F6;
}
.cookie-category-icon.marketing {
    background: rgba(249, 115, 22, 0.15);
    color: #F97316;
}
.cookie-category-icon.external {
    background: rgba(139, 92, 246, 0.15);
    color: #8B5CF6;
}
.cookie-category-info h4,
.cookie-category-info .cookie-category-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.25rem;
    display: block;
}
.cookie-category-info p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
    margin: 0;
}
.cookie-toggle {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}
.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}
.cookie-toggle-slider {
    width: 48px;
    height: 26px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 13px;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.cookie-toggle-slider::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--white);
    top: 2px;
    left: 3px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.cookie-toggle input:checked + .cookie-toggle-slider {
    background: var(--primary-cyan);
    border-color: var(--primary-cyan);
}
.cookie-toggle input:checked + .cookie-toggle-slider::before {
    transform: translateX(22px);
}
.cookie-toggle.disabled {
    cursor: default;
}
.cookie-toggle.disabled .cookie-toggle-slider {
    opacity: 0;
    width: 0;
}
.cookie-always-on {
    font-size: 0.75rem;
    color: #10B981;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.cookie-consent-buttons {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}
.cookie-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    flex: 1;
    min-width: 140px;
}
.cookie-btn-settings {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.cookie-btn-settings:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}
.cookie-btn-reject {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.15);
}
.cookie-btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}
.cookie-btn-accept {
    background: linear-gradient(135deg, var(--primary-cyan) 0%, #00a3c4 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 180, 216, 0.3);
}
.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 180, 216, 0.4);
}
.cookie-btn-back {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.cookie-btn-back:hover {
    background: rgba(255, 255, 255, 0.15);
}
.cookie-btn-save {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}
.cookie-btn-save:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}
.cookie-consent-footer {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.cookie-consent-footer a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.3s ease;
}
.cookie-consent-footer a:hover {
    color: var(--primary-cyan);
}
.landing-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 100px;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #0d0d15 100%);
    overflow: hidden;
}
.landing-hero-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}
.landing-hero .hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}
.landing-hero .orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-cyan) 0%, transparent 70%);
    top: -200px;
    right: -100px;
}
.landing-hero .orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #6366f1 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
}
.landing-hero-content {
    position: relative;
    z-index: 2;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 180, 216, 0.1);
    border: 1px solid rgba(0, 180, 216, 0.3);
    border-radius: 50px;
    color: var(--primary-cyan);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}
.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-cyan);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}
.landing-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--white);
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.15;
}
.landing-hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-transform: none;
    letter-spacing: 0;
}
.hero-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}
.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-cyan) 0%, #0891b2 100%);
    color: var(--white);
    font-weight: 600;
    border-radius: 50px;
    border: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 180, 216, 0.3);
}
.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 180, 216, 0.4);
    color: var(--white);
}
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--white);
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-size: 1rem;
    transition: all 0.3s ease;
}
.btn-hero-secondary:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}
.btn-play-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 0.75rem;
}
.landing-trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}
.trust-item i {
    color: var(--primary-cyan);
}
.landing-hero-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, var(--light-gray), transparent);
}
.section-header-center {
    text-align: center;
    margin-bottom: 4rem;
}
.section-header-center h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}
.section-header-center p {
    font-size: 1.1rem;
    color: var(--dark-gray);
    max-width: 600px;
    margin: 0 auto;
}
.problem-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.problem-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}
.problem-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}
.problem-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}
.problem-icon.negative {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}
.problem-content h4,
.problem-content .problem-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    text-transform: none;
    display: block;
    font-weight: 700;
    color: var(--near-black);
}
.problem-content p {
    color: var(--dark-gray);
    margin: 0;
    font-size: 0.95rem;
}
.solution-card {
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
    padding: 3rem;
    border-radius: 24px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.2) 0%, transparent 70%);
    pointer-events: none;
}
.solution-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-cyan) 0%, #0891b2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}
.solution-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    text-transform: none;
}
.solution-card > p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.7;
}
.solution-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}
.solution-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
}
.solution-benefits li:last-child {
    border-bottom: none;
}
.solution-benefits li i {
    color: var(--primary-cyan);
}
.btn-modern-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: transparent;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid var(--primary-cyan);
    transition: all 0.3s ease;
}
.btn-modern-outline:hover {
    background: var(--primary-cyan);
    color: var(--white);
}
.landing-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
@media (max-width: 991px) {
    .landing-services-grid {
        grid-template-columns: 1fr;
    }
}
.landing-service-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}
.landing-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}
.service-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.landing-service-card:hover .service-card-image img {
    transform: scale(1.05);
}
.service-card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, var(--primary-cyan) 0%, #0891b2 100%);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 50px;
}
.service-card-content {
    padding: 2rem;
}
.service-card-icon {
    width: 56px;
    height: 56px;
    background: rgba(0, 180, 216, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-cyan);
    margin-bottom: 1.25rem;
}
.service-card-content h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    text-transform: none;
    line-height: 1.3;
}
.service-card-content > p {
    color: var(--dark-gray);
    margin-bottom: 1.25rem;
    line-height: 1.7;
}
.service-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}
.service-card-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    color: var(--near-black);
    font-size: 0.95rem;
}
.service-card-features li i {
    color: #10b981;
    font-size: 0.8rem;
}
.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-cyan);
    font-weight: 600;
    transition: all 0.3s ease;
}
.service-card-link:hover {
    gap: 0.75rem;
    color: #0891b2;
}
.landing-stats-section {
    background: linear-gradient(135deg, var(--primary-cyan) 0%, #0891b2 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}
.landing-stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.landing-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    position: relative;
    z-index: 1;
}
@media (max-width: 991px) {
    .landing-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}
@media (max-width: 576px) {
    .landing-stats-grid {
        grid-template-columns: 1fr;
    }
}
.landing-stat-item {
    text-align: center;
    color: var(--white);
}
.stat-number {
    font-family: var(--font-headings);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1;
}
.stat-number span {
    font-size: 0.6em;
    opacity: 0.8;
}
.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}
.advantage-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}
.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 180, 216, 0.2);
}
.advantage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.1) 0%, rgba(0, 180, 216, 0.05) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--primary-cyan);
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}
.advantage-card:hover .advantage-icon {
    background: linear-gradient(135deg, var(--primary-cyan) 0%, #0891b2 100%);
    color: var(--white);
    transform: scale(1.1);
}
.advantage-card h3,
.advantage-card .advantage-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    text-transform: none;
    display: block;
    font-weight: 700;
    color: var(--near-black);
}
.advantage-card p {
    color: var(--dark-gray);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.faq-item {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}
.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}
.faq-question:hover {
    background: rgba(0, 180, 216, 0.03);
}
.faq-question h3,
.faq-question .faq-question-text {
    font-size: 1.1rem;
    margin: 0;
    text-transform: none;
    font-weight: 600;
    color: var(--near-black);
    line-height: 1.4;
}
.faq-question i {
    color: var(--primary-cyan);
    font-size: 1rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}
.faq-question[aria-expanded="true"] i {
    transform: rotate(180deg);
}
.faq-answer {
    padding: 0 2rem 1.5rem;
}
.faq-answer p {
    color: var(--dark-gray);
    line-height: 1.7;
    margin: 0;
}
.faq-answer strong {
    color: var(--near-black);
}
.landing-cta-section {
    position: relative;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
    padding: 6rem 0;
    overflow: hidden;
}
.landing-cta-background {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.cta-gradient-orb {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.15) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(60px);
}
.landing-cta-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    padding-right: 3rem;
}
.landing-cta-content h2,
.landing-cta-content .landing-cta-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 1rem;
    text-transform: none;
    display: block;
    font-weight: 800;
    color: var(--white);
}
.landing-cta-content > p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    line-height: 1.7;
}
.cta-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.cta-benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
}
.cta-benefit-item i {
    color: var(--primary-cyan);
    font-size: 1.1rem;
}
.contact-form-card-modern {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}
.form-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-transform: none;
    text-align: center;
    color: var(--near-black);
    display: block;
    font-weight: 700;
}
.form-group-modern {
    position: relative;
}
.form-group-modern input,
.form-group-modern select,
.form-group-modern textarea {
    width: 100%;
    padding: 1rem 1rem 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    font-family: var(--font-body);
    background: var(--white);
    transition: all 0.3s ease;
    color: var(--near-black);
}
.form-group-modern input:focus,
.form-group-modern select:focus,
.form-group-modern textarea:focus {
    outline: none;
    border-color: var(--primary-cyan);
    box-shadow: 0 0 0 4px rgba(0, 180, 216, 0.1);
}
.form-group-modern label {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--dark-gray);
    font-size: 1rem;
    transition: all 0.3s ease;
    pointer-events: none;
    background: var(--white);
    padding: 0 0.25rem;
}
.form-group-modern textarea ~ label {
    top: 1.25rem;
    transform: none;
}
.form-group-modern input:focus ~ label,
.form-group-modern input:not(:placeholder-shown) ~ label,
.form-group-modern select:focus ~ label,
.form-group-modern select:not([value=""]) ~ label,
.form-group-modern textarea:focus ~ label,
.form-group-modern textarea:not(:placeholder-shown) ~ label {
    top: 0;
    transform: translateY(-50%);
    font-size: 0.8rem;
    color: var(--primary-cyan);
}
.form-group-modern select ~ label {
    top: 0;
    transform: translateY(-50%);
    font-size: 0.8rem;
    color: var(--primary-cyan);
}
.contact-form-card-modern .captcha-container {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1rem;
}
.contact-form-card-modern .captcha-display {
    background: var(--white);
    color: var(--near-black);
    border-color: #e5e7eb;
}
.contact-form-card-modern .captcha-input-wrapper input {
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    color: var(--near-black);
}
.contact-form-card-modern .captcha-input-wrapper input:focus {
    border-color: var(--primary-cyan);
    box-shadow: 0 0 0 4px rgba(0, 180, 216, 0.1);
}
.contact-form-card-modern .captcha-refresh {
    color: var(--primary-cyan);
    border-color: #e5e7eb;
    background: var(--white);
}
.contact-form-card-modern .captcha-refresh:hover {
    background: var(--primary-cyan);
    color: var(--white);
    border-color: var(--primary-cyan);
}
.contact-form-card-modern .form-check-label {
    color: var(--dark-gray);
    font-size: 0.9rem;
}
.contact-form-card-modern .form-check-label a {
    color: var(--primary-cyan);
}
@media (max-width: 991px) {
    .landing-hero {
        padding: 120px 0 80px;
    }
    .landing-cta-content {
        padding-right: 0;
        margin-bottom: 3rem;
        text-align: center;
    }
    .cta-benefits {
        align-items: center;
    }
    .hero-cta-buttons {
        justify-content: center;
    }
}
@media (max-width: 767px) {
    .landing-hero {
        min-height: auto;
        padding: 100px 0 60px;
    }
    .landing-trust-badges {
        flex-direction: column;
        gap: 1rem;
    }
    .landing-hero-shape {
        height: 60px;
    }
    .section-header-center {
        margin-bottom: 3rem;
    }
    .solution-card {
        padding: 2rem;
    }
    .contact-form-card-modern {
        padding: 1.5rem;
    }
    .landing-stats-section {
        padding: 3rem 0;
    }
}
.cookie-divider {
    color: rgba(255, 255, 255, 0.3);
    margin: 0 0.75rem;
}
.seo-section-header {
    margin-bottom: 2.5rem;
    max-width: 900px;
}
.seo-section-header h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 1rem;
    text-transform: none;
    line-height: 1.2;
}
.seo-section-header .section-label {
    margin-bottom: 1rem;
}
.seo-section-header .lead-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 0;
    margin-top: 1rem;
}
.seo-text-block {
    padding-right: 2rem;
}
.seo-text-block h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 1.5rem;
    text-transform: none;
}
.seo-text-block .lead-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--near-black);
    margin-bottom: 1.5rem;
}
.seo-text-block p {
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}
.seo-text-block p strong {
    color: var(--near-black);
}
.seo-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--near-black);
    font-weight: 500;
}
.highlight-item i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 180, 216, 0.1);
    color: var(--primary-cyan);
    border-radius: 10px;
    font-size: 1rem;
}
.seo-image-block {
    position: relative;
}
.seo-image-block img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}
.seo-image-block .image-badge {
    position: absolute;
    bottom: -20px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary-cyan) 0%, #0891b2 100%);
    color: var(--white);
    padding: 1.25rem 1.75rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 180, 216, 0.3);
}
.image-badge .badge-number {
    display: block;
    font-family: var(--font-headings);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}
.image-badge .badge-text {
    font-size: 0.85rem;
    opacity: 0.9;
}
.seo-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}
@media (max-width: 991px) {
    .seo-content-grid {
        grid-template-columns: 1fr;
    }
}
.seo-content-main h3 {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    text-transform: none;
    color: var(--near-black);
}
.seo-content-main h4 {
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    text-transform: none;
    color: var(--near-black);
}
.seo-content-main p.lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--near-black);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.seo-content-main p {
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}
.seo-content-main ul,
.seo-content-main ol {
    margin: 1.5rem 0;
    padding-left: 0;
}
.seo-content-main ul {
    list-style: none;
}
.seo-content-main ul li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.875rem;
    line-height: 1.7;
    font-size: 1.1rem;
    color: var(--dark-gray);
}
.seo-content-main ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--primary-cyan), var(--accent-violet));
    border-radius: 50%;
}
.seo-content-main ol {
    padding-left: 1.5rem;
}
.seo-content-main ol li {
    margin-bottom: 0.875rem;
    line-height: 1.7;
    font-size: 1.1rem;
    color: var(--dark-gray);
}
.seo-content-main p strong {
    color: var(--near-black);
}
.seo-content-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.sidebar-box {
    background: var(--white);
    padding: 1.75rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}
.sidebar-box.highlight {
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
    color: var(--white);
    border: none;
}
.sidebar-box h4,
.sidebar-box .sidebar-box-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-transform: none;
    font-weight: 700;
    color: var(--near-black);
}
.sidebar-box h4 i,
.sidebar-box .sidebar-box-title i {
    color: var(--primary-cyan);
}
.sidebar-box.highlight h4 i,
.sidebar-box.highlight .sidebar-box-title i {
    color: var(--primary-cyan);
}
.sidebar-box p {
    color: var(--dark-gray);
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}
.sidebar-box.highlight p {
    color: rgba(255, 255, 255, 0.8);
}
.sidebar-box p strong {
    color: var(--near-black);
}
.sidebar-box.highlight p strong {
    color: var(--white);
}
.sidebar-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: var(--primary-cyan);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}
.sidebar-cta:hover {
    gap: 0.75rem;
    color: #0dd9ff;
}
.location-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.location-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--near-black);
    font-size: 0.95rem;
}
.location-list li i {
    color: var(--primary-cyan);
    width: 20px;
    text-align: center;
}
@media (max-width: 991px) {
    .seo-section-header {
        margin-bottom: 2rem;
    }
    .seo-text-block {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    .seo-image-block .image-badge {
        right: 20px;
        bottom: -15px;
        padding: 1rem 1.25rem;
    }
    .image-badge .badge-number {
        font-size: 1.5rem;
    }
}
@media (max-width: 576px) {
    .seo-highlights {
        flex-direction: column;
        gap: 1rem;
    }
}
.btn-roi-calculator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem 1.5rem;
    margin-top: 1.25rem;
    background: linear-gradient(135deg, var(--primary-cyan) 0%, #0891b2 100%);
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 180, 216, 0.3);
}
.btn-roi-calculator:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 180, 216, 0.4);
}
.btn-roi-calculator i {
    font-size: 1.1rem;
}
.roi-modal {
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
    border: 1px solid rgba(0, 180, 216, 0.2);
    border-radius: 24px;
    overflow: hidden;
}
.roi-modal .modal-header {
    padding: 1.75rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.modal-title-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.modal-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-cyan) 0%, #0891b2 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--white);
}
.roi-modal .modal-title {
    color: var(--white);
    font-size: 1.35rem;
    margin: 0;
    text-transform: none;
    display: block;
    font-weight: 700;
}
.modal-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0.25rem 0 0 0;
}
.btn-close-modal {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-close-modal:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}
.roi-modal .modal-body {
    padding: 2rem;
    max-height: 70vh;
    overflow-y: auto;
}
.roi-input-section {
    margin-bottom: 2rem;
}
.roi-input-section h6,
.roi-input-section .roi-section-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    text-transform: none;
}
.roi-input-section h6 i,
.roi-input-section .roi-section-title i {
    color: var(--primary-cyan);
}
.roi-input-group {
    margin-bottom: 1rem;
}
.roi-input-group label {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}
.roi-input-group small {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    margin-top: 0.4rem;
}
.input-with-unit {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.input-with-unit:focus-within {
    border-color: var(--primary-cyan);
    box-shadow: 0 0 0 4px rgba(0, 180, 216, 0.1);
}
.input-with-unit input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0.875rem 1rem;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    font-family: var(--font-body);
}
.input-with-unit input:focus {
    outline: none;
}
.input-with-unit .unit {
    padding: 0.875rem 1rem;
    background: rgba(0, 180, 216, 0.1);
    color: var(--primary-cyan);
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
}
.range-slider-wrapper {
    padding: 0.5rem 0;
}
.range-slider-wrapper input[type="range"] {
    width: 100%;
    height: 8px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    outline: none;
}
.range-slider-wrapper input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--primary-cyan) 0%, #0891b2 100%);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 180, 216, 0.4);
    transition: transform 0.2s ease;
}
.range-slider-wrapper input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}
.range-slider-wrapper input[type="range"]::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--primary-cyan) 0%, #0891b2 100%);
    border-radius: 50%;
    cursor: pointer;
    border: none;
}
.range-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}
.range-value {
    color: var(--primary-cyan);
    font-weight: 600;
    font-size: 1rem;
}
.btn-calculate-roi {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, var(--primary-cyan) 0%, #0891b2 100%);
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}
.btn-calculate-roi:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 180, 216, 0.4);
}
.roi-results {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInUp 0.5s ease;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.roi-results-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}
.roi-results-header i {
    font-size: 1.5rem;
    color: var(--primary-cyan);
}
.roi-results-header h6,
.roi-results-header .roi-results-title {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    text-transform: none;
}
.roi-results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
@media (max-width: 576px) {
    .roi-results-grid {
        grid-template-columns: 1fr;
    }
}
.roi-result-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.roi-result-card.highlight {
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.15) 0%, rgba(0, 180, 216, 0.05) 100%);
    border-color: rgba(0, 180, 216, 0.3);
}
.result-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}
.result-icon.green {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
}
.result-icon.cyan {
    background: rgba(0, 180, 216, 0.15);
    color: var(--primary-cyan);
}
.result-icon.gold {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
}
.result-icon.purple {
    background: rgba(139, 92, 246, 0.15);
    color: #8b5cf6;
}
.result-content {
    flex: 1;
}
.result-label {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    margin-bottom: 0.25rem;
}
.result-value {
    display: block;
    color: var(--white);
    font-family: var(--font-headings);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}
.result-unit {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
}
.roi-summary {
    margin-top: 1.5rem;
}
.roi-summary .summary-positive {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
    padding: 1.25rem;
    border-radius: 12px;
    font-size: 0.95rem;
    line-height: 1.6;
}
.roi-summary .summary-positive i {
    margin-right: 0.5rem;
}
.roi-summary .summary-positive strong {
    color: #10b981;
}
.roi-summary .summary-neutral {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: #f59e0b;
    padding: 1.25rem;
    border-radius: 12px;
    font-size: 0.95rem;
    line-height: 1.6;
}
.roi-summary .summary-neutral i {
    margin-right: 0.5rem;
}
.roi-cta {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}
.roi-cta p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}
.roi-cta .btn-hero-primary {
    display: inline-flex;
}
@media (max-width: 767px) {
    .roi-modal .modal-header {
        padding: 1.25rem 1.5rem;
    }
    .modal-title-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    .roi-modal .modal-body {
        padding: 1.5rem;
    }
    .roi-modal .modal-title {
        font-size: 1.15rem;
    }
    .result-value {
        font-size: 1.25rem;
    }
}
.cookie-settings-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
    border: 2px solid rgba(0, 180, 216, 0.3);
    color: var(--primary-cyan);
    font-size: 1.25rem;
    cursor: pointer;
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}
.cookie-settings-btn:hover {
    transform: scale(1.1);
    border-color: var(--primary-cyan);
    box-shadow: 0 6px 25px rgba(0, 180, 216, 0.3);
}
.cookie-settings-btn:focus {
    outline: 3px solid #fff;
    outline-offset: 2px;
}
.cookie-settings-label {
    position: absolute;
    right: 60px;
    background: #333;
    color: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}
.cookie-settings-label::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent transparent #333;
}
.cookie-settings-btn:hover .cookie-settings-label,
.cookie-settings-btn:focus .cookie-settings-label {
    opacity: 1;
    visibility: visible;
}
@media (max-width: 576px) {
    .cookie-consent-banner {
        padding: 1.25rem;
        border-radius: 16px 16px 0 0;
        max-height: 85vh;
    }
    .cookie-consent-header h3,
    .cookie-consent-header .cookie-consent-title {
        font-size: 1.15rem;
    }
    .cookie-consent-header p {
        font-size: 0.85rem;
    }
    .cookie-icon {
        width: 50px;
        height: 50px;
    }
    .cookie-category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    .cookie-toggle {
        align-self: flex-end;
    }
    .cookie-consent-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    .cookie-btn {
        min-width: 100%;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    .cookie-settings-btn {
        width: 40px;
        height: 40px;
        bottom: 10px;
        right: 10px;
        font-size: 1rem;
    }
    .cookie-settings-label {
        display: none;
    }
}
.job-detail-hero .page-hero-content {
    text-align: center;
}
.job-hero-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 1.5rem;
}
.job-detail-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 180, 216, 0.15);
    border: 1px solid rgba(0, 180, 216, 0.3);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-cyan);
    text-decoration: none;
    transition: all 0.3s ease;
}
.job-detail-hero .hero-badge:hover {
    background: rgba(0, 180, 216, 0.25);
    transform: translateY(-2px);
}
.job-detail-hero .hero-badge-featured {
    background: rgba(255, 193, 7, 0.2);
    border-color: rgba(255, 193, 7, 0.4);
    color: #ffc107;
}
.job-detail-hero .hero-badge-featured:hover {
    background: rgba(255, 193, 7, 0.3);
}
.job-detail-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}
.job-detail-hero .hero-subtitle {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-bottom: 2rem;
}
.job-detail-hero .hero-subtitle .badge {
    font-size: 0.85rem;
    padding: 6px 14px;
    font-weight: 500;
}
.job-detail-hero .job-location {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.7);
}
.job-detail-hero .hero-breadcrumb {
    margin-top: 1rem;
}
.job-detail-hero .breadcrumb-light {
    justify-content: center;
}
.job-detail-hero .breadcrumb-light .breadcrumb-item,
.job-detail-hero .breadcrumb-light .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}
.job-detail-hero .breadcrumb-light .breadcrumb-item a:hover {
    color: var(--primary-cyan);
}
.job-detail-hero .breadcrumb-light .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.4);
}
.job-detail-hero .breadcrumb-light .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.3);
}
@media (max-width: 768px) {
    .job-detail-hero .hero-subtitle {
        flex-direction: column;
        gap: 8px;
    }
    .job-hero-meta {
        flex-direction: column;
        align-items: center;
    }
}
.breadcrumb-section {
    padding: 1.5rem 0;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.03), rgba(139, 92, 246, 0.03));
}
.breadcrumb-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--card-bg, #fff);
    border-radius: 1rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 180, 216, 0.1);
}
.breadcrumb-card .breadcrumb {
    margin: 0;
    padding: 0;
    background: none;
    font-size: 0.9rem;
    flex-wrap: wrap;
}
.breadcrumb-card .breadcrumb-item {
    display: flex;
    align-items: center;
}
.breadcrumb-card .breadcrumb-item a {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-color, #1a1a2e);
    text-decoration: none;
    padding: 0.35rem 0.75rem;
    border-radius: 2rem;
    transition: all 0.2s;
    font-weight: 500;
}
.breadcrumb-card .breadcrumb-item a:hover {
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.1), rgba(139, 92, 246, 0.1));
    color: var(--primary-cyan, #00b4d8);
}
.breadcrumb-card .breadcrumb-item.active {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--primary-cyan, #00b4d8);
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 2rem;
}
.breadcrumb-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    font-size: 0.7rem;
    color: var(--primary-cyan, #00b4d8);
}
.breadcrumb-card .breadcrumb-item + .breadcrumb-item::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    margin: 0 0.5rem;
    border-right: 2px solid var(--primary-cyan, #00b4d8);
    border-top: 2px solid var(--primary-cyan, #00b4d8);
    transform: rotate(45deg);
    opacity: 0.5;
}
.breadcrumb-back {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    color: var(--text-muted, #64748b);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 2rem;
    transition: all 0.2s;
}
.breadcrumb-back:hover {
    color: var(--primary-cyan, #00b4d8);
    background: rgba(0, 180, 216, 0.08);
}
@media (max-width: 768px) {
    .breadcrumb-card {
        flex-direction: column;
        align-items: flex-start;
    }
    .breadcrumb-card .breadcrumb-item span:not(.breadcrumb-icon) {
        display: none;
    }
    .breadcrumb-card .breadcrumb-item.active span:not(.breadcrumb-icon) {
        display: inline;
    }
    .breadcrumb-icon {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
}
[data-theme="dark"] .breadcrumb-section,
.dark-mode .breadcrumb-section {
    background: rgba(0, 180, 216, 0.03);
}
[data-theme="dark"] .breadcrumb-card,
.dark-mode .breadcrumb-card {
    background: rgba(30, 30, 50, 0.6);
    border-color: rgba(0, 180, 216, 0.15);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}
[data-theme="dark"] .breadcrumb-card .breadcrumb-item a,
.dark-mode .breadcrumb-card .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
}
[data-theme="dark"] .breadcrumb-card .breadcrumb-item a:hover,
.dark-mode .breadcrumb-card .breadcrumb-item a:hover {
    background: rgba(0, 180, 216, 0.15);
    color: var(--primary-cyan, #00b4d8);
}
[data-theme="dark"] .breadcrumb-card .breadcrumb-item.active,
.dark-mode .breadcrumb-card .breadcrumb-item.active {
    color: #fff;
    background: rgba(0, 180, 216, 0.2);
}
[data-theme="dark"] .breadcrumb-back,
.dark-mode .breadcrumb-back {
    color: rgba(255, 255, 255, 0.6);
}
.a11y-toggle {
    position: fixed;
    right: 20px;
    bottom: 100px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 99998;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 102, 204, 0.4);
    transition: all 0.3s ease;
}
.a11y-toggle:hover,
.a11y-toggle:focus {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 102, 204, 0.5);
    outline: 3px solid #fff;
    outline-offset: 2px;
}
.a11y-toggle svg {
    width: 28px;
    height: 28px;
    fill: #fff;
}
.a11y-toggle .a11y-label {
    position: absolute;
    right: 70px;
    background: #333;
    color: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.a11y-toggle:hover .a11y-label,
.a11y-toggle:focus .a11y-label {
    opacity: 1;
    visibility: visible;
}
.a11y-panel {
    position: fixed;
    right: 20px;
    bottom: 170px;
    width: 340px;
    max-height: calc(100vh - 200px);
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.2);
    z-index: 99999;
    overflow: hidden;
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.a11y-panel.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}
.a11y-panel-header {
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    color: #fff;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.a11y-panel-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}
.a11y-panel-header h3 svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}
.a11y-panel-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}
.a11y-panel-close:hover,
.a11y-panel-close:focus {
    background: rgba(255, 255, 255, 0.3);
    outline: 2px solid #fff;
}
.a11y-panel-close svg {
    width: 16px;
    height: 16px;
    fill: #fff;
}
.a11y-panel-body {
    padding: 20px;
    max-height: calc(100vh - 250px);
    overflow-y: auto;
}
.a11y-group {
    margin-bottom: 20px;
}
.a11y-group:last-child {
    margin-bottom: 0;
}
.a11y-group-title {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #666;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
}
.a11y-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 8px;
    transition: all 0.2s ease;
}
.a11y-option:hover {
    background: #e9ecef;
}
.a11y-option:last-child {
    margin-bottom: 0;
}
.a11y-option-info {
    display: flex;
    align-items: center;
    gap: 12px;
}
.a11y-option-icon {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.a11y-option-icon svg {
    width: 20px;
    height: 20px;
    fill: #0066cc;
}
.a11y-option-text h4 {
    margin: 0 0 2px 0;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}
.a11y-option-text p {
    margin: 0;
    font-size: 11px;
    color: #888;
}
.a11y-switch {
    position: relative;
    width: 48px;
    height: 26px;
}
.a11y-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.a11y-switch-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ccc;
    border-radius: 26px;
    transition: all 0.3s ease;
}
.a11y-switch-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background: #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.a11y-switch input:checked + .a11y-switch-slider {
    background: #0066cc;
}
.a11y-switch input:checked + .a11y-switch-slider:before {
    transform: translateX(22px);
}
.a11y-switch input:focus + .a11y-switch-slider {
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.3);
}
.a11y-slider-control {
    display: flex;
    align-items: center;
    gap: 8px;
}
.a11y-slider-control button {
    width: 28px;
    height: 28px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    transition: all 0.2s ease;
}
.a11y-slider-control button:hover {
    background: #0066cc;
    border-color: #0066cc;
    color: #fff;
}
.a11y-slider-control button:focus {
    outline: 2px solid #0066cc;
    outline-offset: 2px;
}
.a11y-slider-value {
    min-width: 40px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}
.a11y-reset {
    width: 100%;
    padding: 14px;
    background: #f8f9fa;
    border: 2px dashed #ddd;
    border-radius: 10px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}
.a11y-reset:hover {
    background: #fff3cd;
    border-color: #ffc107;
    color: #856404;
}
.a11y-reset:focus {
    outline: 2px solid #0066cc;
    outline-offset: 2px;
}
.a11y-reset svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}
html.a11y-font-size-1 { font-size: 100%; }
html.a11y-font-size-2 { font-size: 112.5%; }
html.a11y-font-size-3 { font-size: 125%; }
html.a11y-font-size-4 { font-size: 137.5%; }
html.a11y-font-size-5 { font-size: 150%; }
body.a11y-high-contrast {
    filter: contrast(1.25);
}
body.a11y-high-contrast * {
    border-color: #000 !important;
}
body.a11y-invert-colors {
    filter: invert(1) hue-rotate(180deg);
}
body.a11y-invert-colors img,
body.a11y-invert-colors video,
body.a11y-invert-colors iframe {
    filter: invert(1) hue-rotate(180deg);
}
body.a11y-grayscale {
    filter: grayscale(1);
}
body.a11y-highlight-links a {
    background: #ff0 !important;
    color: #000 !important;
    padding: 2px 4px !important;
    text-decoration: underline !important;
    font-weight: bold !important;
}
body.a11y-highlight-headings h1,
body.a11y-highlight-headings h2,
body.a11y-highlight-headings h3,
body.a11y-highlight-headings h4,
body.a11y-highlight-headings h5,
body.a11y-highlight-headings h6 {
    background: #0ff !important;
    color: #000 !important;
    padding: 4px 8px !important;
}
body.a11y-big-cursor,
body.a11y-big-cursor * {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' stroke='%23fff' stroke-width='1' d='M5 3l14 9-7 2-4 7-3-18z'/%3E%3C/svg%3E"), auto !important;
}
body.a11y-reading-guide .a11y-reading-line {
    display: block !important;
}
.a11y-reading-line {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    height: 40px;
    background: rgba(255, 255, 0, 0.3);
    border-top: 2px solid #ff0;
    border-bottom: 2px solid #ff0;
    pointer-events: none;
    z-index: 99990;
    transition: top 0.05s ease;
}
body.a11y-stop-animations,
body.a11y-stop-animations * {
    animation: none !important;
    transition: none !important;
}
body.a11y-dyslexia-font {
    font-family: 'OpenDyslexic', 'Comic Sans MS', sans-serif !important;
}
body.a11y-dyslexia-font * {
    font-family: inherit !important;
    letter-spacing: 0.05em !important;
    word-spacing: 0.1em !important;
    line-height: 1.8 !important;
}
body.a11y-line-height * {
    line-height: 2 !important;
}
body.a11y-word-spacing * {
    word-spacing: 0.2em !important;
}
body.a11y-text-align-left * {
    text-align: left !important;
}
body.a11y-focus-indicator *:focus {
    outline: 4px solid #ff0 !important;
    outline-offset: 4px !important;
    box-shadow: 0 0 0 6px rgba(0, 0, 0, 0.8) !important;
}
body.a11y-keyboard-nav *:focus {
    outline: 3px dashed #0066cc !important;
    outline-offset: 3px !important;
}
@media (max-width: 768px) {
    .a11y-toggle {
        right: 10px;
        bottom: 60px;
        width: 40px;
        height: 40px;
    }
    .a11y-toggle svg {
        width: 20px;
        height: 20px;
    }
    .a11y-panel {
        left: 8px;
        right: 8px;
        bottom: 110px;
        width: auto;
        max-height: calc(100vh - 130px);
        border-radius: 16px;
    }
    .a11y-panel-header {
        padding: 15px;
    }
    .a11y-panel-header h3 {
        font-size: 16px;
    }
    .a11y-panel-body {
        padding: 15px;
        max-height: calc(100vh - 200px);
    }
    .a11y-toggle .a11y-label {
        display: none;
    }
}
@media print {
    .a11y-toggle,
    .a11y-panel,
    .a11y-reading-line {
        display: none !important;
    }
}
@media (prefers-reduced-motion: reduce) {
    .a11y-toggle,
    .a11y-panel,
    .a11y-switch-slider,
    .a11y-switch-slider:before {
        transition: none;
    }
}
@media (prefers-contrast: high) {
    .a11y-panel {
        border: 3px solid #000;
    }
    .a11y-option {
        border: 1px solid #333;
    }
}
.a11y-panel-body::-webkit-scrollbar {
    width: 6px;
}
.a11y-panel-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}
.a11y-panel-body::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}
.a11y-panel-body::-webkit-scrollbar-thumb:hover {
    background: #999;
}
.wa-survey-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(26, 26, 46, 0.9) 100%);
    backdrop-filter: blur(12px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 1rem;
}
.wa-survey-overlay.active {
    opacity: 1;
    visibility: visible;
}
.wa-survey-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0, 180, 216, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    animation: bgPulse 8s ease-in-out infinite alternate;
}
@keyframes bgPulse {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}
.wa-survey-modal {
    background: var(--survey-bg, #ffffff);
    color: var(--survey-text, #1a1a2e);
    border-radius: 28px;
    max-width: 560px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
    transform: scale(0.9) translateY(30px);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 
        0 30px 100px rgba(0, 0, 0, 0.5),
        0 15px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.wa-survey-overlay.active .wa-survey-modal {
    transform: scale(1) translateY(0);
}
.wa-survey-modal.animation-slide {
    transform: translateY(100%);
}
.wa-survey-overlay.active .wa-survey-modal.animation-slide {
    transform: translateY(0);
}
.wa-survey-modal.animation-zoom {
    transform: scale(0);
}
.wa-survey-overlay.active .wa-survey-modal.animation-zoom {
    transform: scale(1);
}
.wa-survey-modal.animation-bounce {
    animation: surveyBounce 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}
@keyframes surveyBounce {
    0% { transform: scale(0.3) translateY(100px); opacity: 0; }
    50% { transform: scale(1.05) translateY(-10px); }
    70% { transform: scale(0.95) translateY(5px); }
    100% { transform: scale(1) translateY(0); opacity: 1; }
}
.wa-survey-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--survey-text, #1a1a2e);
    font-size: 1.25rem;
    transition: all 0.3s ease;
    z-index: 10;
}
.wa-survey-close:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: rotate(90deg);
}
.wa-survey-header {
    padding: 2.5rem 2rem 1.5rem;
    text-align: center;
    position: relative;
    background: linear-gradient(180deg, rgba(0, 180, 216, 0.08) 0%, transparent 100%);
}
.wa-survey-header::before {
    content: '✨';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 1.5rem;
    animation: sparkle 2s ease-in-out infinite;
    opacity: 0.6;
}
.wa-survey-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 2rem;
    right: 2rem;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--survey-primary, #00B4D8), transparent);
    opacity: 0.3;
}
@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.6; }
    50% { transform: scale(1.2) rotate(15deg); opacity: 1; }
}
.wa-survey-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--survey-primary, #00B4D8) 0%, var(--survey-secondary, #0077B6) 50%, #8B5CF6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 2.25rem;
    color: white;
    box-shadow: 
        0 15px 40px rgba(0, 180, 216, 0.4),
        0 0 60px rgba(0, 180, 216, 0.2);
    animation: iconFloat 3s ease-in-out infinite;
    position: relative;
}
.wa-survey-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--survey-primary, #00B4D8), #8B5CF6, var(--survey-primary, #00B4D8));
    z-index: -1;
    animation: iconGlow 2s ease-in-out infinite;
}
@keyframes iconFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(3deg); }
}
@keyframes iconGlow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}
@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
.wa-survey-title {
    font-size: 1.625rem;
    font-weight: 800;
    margin: 0 0 0.5rem;
    background: linear-gradient(135deg, var(--survey-primary, #00B4D8) 0%, #0077B6 50%, #8B5CF6 100%);
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
.wa-survey-description {
    font-size: 1rem;
    opacity: 0.7;
    margin: 0;
    line-height: 1.6;
}
.wa-survey-progress {
    height: 6px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.05));
    overflow: hidden;
    position: relative;
}
.wa-survey-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--survey-primary, #00B4D8), #8B5CF6, var(--survey-primary, #00B4D8));
    background-size: 200% 100%;
    animation: progressGradient 2s linear infinite;
    width: 0%;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border-radius: 0 3px 3px 0;
}
@keyframes progressGradient {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}
.wa-survey-progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
    animation: progressShine 1.2s infinite;
}
@keyframes progressShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}
.wa-survey-content {
    padding: 1.5rem 2rem;
    max-height: 50vh;
    overflow-y: auto;
}
.wa-survey-content::-webkit-scrollbar {
    width: 6px;
}
.wa-survey-content::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
}
.wa-survey-content::-webkit-scrollbar-thumb {
    background: var(--survey-primary, #00B4D8);
    border-radius: 3px;
}
.wa-survey-question {
    animation: questionFadeIn 0.5s ease forwards;
}
@keyframes questionFadeIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}
.wa-question-number {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--survey-primary, #00B4D8);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}
.wa-question-text {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    line-height: 1.4;
}
.wa-question-required {
    color: #EF4444;
    margin-left: 4px;
}
.wa-emoji-rating {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 1rem 0;
}
.wa-emoji-option {
    width: 72px;
    height: 72px;
    border: 3px solid transparent;
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.06));
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    position: relative;
    overflow: hidden;
}
.wa-emoji-option::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.2), rgba(139, 92, 246, 0.2));
    opacity: 0;
    transition: opacity 0.3s;
}
.wa-emoji-option:hover {
    transform: scale(1.2) translateY(-8px) rotate(5deg);
    background: rgba(0, 180, 216, 0.12);
    box-shadow: 0 15px 40px rgba(0, 180, 216, 0.25);
}
.wa-emoji-option:hover::before {
    opacity: 1;
}
.wa-emoji-option.selected {
    border-color: var(--survey-primary, #00B4D8);
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.2), rgba(139, 92, 246, 0.15));
    transform: scale(1.15);
    box-shadow: 
        0 10px 30px rgba(0, 180, 216, 0.4),
        0 0 40px rgba(0, 180, 216, 0.2);
    animation: emojiPop 0.5s ease;
}
@keyframes emojiPop {
    0% { transform: scale(1); }
    30% { transform: scale(1.3) rotate(-10deg); }
    60% { transform: scale(1.1) rotate(5deg); }
    100% { transform: scale(1.15) rotate(0deg); }
}
.wa-star-rating {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    font-size: 3rem;
    padding: 1rem 0;
}
.wa-star {
    color: rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}
.wa-star:hover,
.wa-star.hovered {
    color: #FCD34D;
    transform: scale(1.25) rotate(-10deg);
    filter: drop-shadow(0 5px 15px rgba(252, 211, 77, 0.5));
}
.wa-star.selected {
    color: #FBBF24;
    filter: drop-shadow(0 5px 20px rgba(251, 191, 36, 0.6));
    animation: starPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes starPop {
    0% { transform: scale(1); }
    40% { transform: scale(1.5) rotate(15deg); }
    60% { transform: scale(1.1) rotate(-5deg); }
    100% { transform: scale(1.2); }
}
.wa-nps-scale {
    display: flex;
    justify-content: center;
    gap: 0.4rem;
    flex-wrap: wrap;
    padding: 0.5rem 0;
}
.wa-nps-option {
    width: 44px;
    height: 44px;
    border: 2px solid rgba(0, 0, 0, 0.12);
    background: linear-gradient(145deg, rgba(255,255,255,0.9), rgba(0,0,0,0.02));
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-weight: 700;
    font-size: 0.95rem;
    position: relative;
}
.wa-nps-option:hover {
    border-color: var(--survey-primary, #00B4D8);
    background: rgba(0, 180, 216, 0.1);
    transform: scale(1.12) translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 180, 216, 0.2);
}
.wa-nps-option.selected {
    background: linear-gradient(135deg, var(--survey-primary, #00B4D8), var(--survey-secondary, #0077B6));
    color: white;
    border-color: transparent;
    transform: scale(1.15);
    box-shadow: 
        0 8px 25px rgba(0, 180, 216, 0.45),
        0 0 30px rgba(0, 180, 216, 0.2);
    animation: npsPop 0.4s ease;
}
@keyframes npsPop {
    0% { transform: scale(1); }
    50% { transform: scale(1.25); }
    100% { transform: scale(1.15); }
}
.wa-nps-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    opacity: 0.6;
    margin-top: 0.5rem;
}
.wa-choice-options {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}
.wa-choice-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.125rem 1.5rem;
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    background: linear-gradient(145deg, rgba(255,255,255,0.9), rgba(0,0,0,0.01));
    position: relative;
    overflow: hidden;
}
.wa-choice-option::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.1), rgba(139, 92, 246, 0.05));
    opacity: 0;
    transition: opacity 0.3s;
}
.wa-choice-option:hover {
    border-color: var(--survey-primary, #00B4D8);
    transform: translateX(8px) scale(1.01);
    box-shadow: 0 8px 25px rgba(0, 180, 216, 0.12);
}
.wa-choice-option:hover::before {
    opacity: 1;
}
.wa-choice-option.selected {
    border-color: var(--survey-primary, #00B4D8);
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.12), rgba(139, 92, 246, 0.08));
    box-shadow: 
        0 6px 20px rgba(0, 180, 216, 0.2),
        inset 0 0 0 1px rgba(0, 180, 216, 0.1);
    animation: choicePop 0.4s ease;
}
@keyframes choicePop {
    0% { transform: scale(1); }
    30% { transform: scale(1.03) translateX(4px); }
    100% { transform: scale(1); }
}
.wa-choice-indicator {
    width: 26px;
    height: 26px;
    border: 2px solid rgba(0, 0, 0, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}
.wa-choice-option.multi .wa-choice-indicator {
    border-radius: 6px;
}
.wa-choice-option.selected .wa-choice-indicator {
    border-color: var(--survey-primary, #00B4D8);
    background: var(--survey-primary, #00B4D8);
    color: white;
}
.wa-choice-indicator i {
    opacity: 0;
    transform: scale(0);
    transition: all 0.2s ease;
}
.wa-choice-option.selected .wa-choice-indicator i {
    opacity: 1;
    transform: scale(1);
}
.wa-choice-emoji {
    font-size: 1.5rem;
}
.wa-choice-text {
    flex: 1;
    font-weight: 500;
}
.wa-survey-select {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 14px;
    font-size: 1rem;
    background: transparent;
    color: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2300B4D8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.5rem;
}
.wa-survey-select:focus {
    outline: none;
    border-color: var(--survey-primary, #00B4D8);
    box-shadow: 0 0 0 4px rgba(0, 180, 216, 0.15);
}
.wa-survey-input,
.wa-survey-textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 14px;
    font-size: 1rem;
    background: transparent;
    color: inherit;
    transition: all 0.3s ease;
    font-family: inherit;
}
.wa-survey-input:focus,
.wa-survey-textarea:focus {
    outline: none;
    border-color: var(--survey-primary, #00B4D8);
    box-shadow: 0 0 0 4px rgba(0, 180, 216, 0.15);
}
.wa-survey-textarea {
    min-height: 120px;
    resize: vertical;
}
.wa-survey-input::placeholder,
.wa-survey-textarea::placeholder {
    opacity: 0.5;
}
.wa-scale-container {
    padding: 1rem 0;
}
.wa-scale-slider {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.1);
    appearance: none;
    outline: none;
}
.wa-scale-slider::-webkit-slider-thumb {
    appearance: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--survey-primary, #00B4D8), var(--survey-secondary, #0077B6));
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 180, 216, 0.4);
    transition: transform 0.2s ease;
}
.wa-scale-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}
.wa-scale-value {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--survey-primary, #00B4D8);
    margin-top: 1rem;
}
.wa-scale-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    opacity: 0.6;
    margin-top: 0.5rem;
}
.wa-yesno-options {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    padding: 1rem 0;
}
.wa-yesno-option {
    flex: 1;
    max-width: 160px;
    padding: 1.5rem 2rem;
    border: 3px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    cursor: pointer;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    background: linear-gradient(145deg, rgba(255,255,255,0.8), rgba(0,0,0,0.02));
    position: relative;
    overflow: hidden;
}
.wa-yesno-option::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--survey-primary, #00B4D8), #8B5CF6);
    opacity: 0;
    transition: opacity 0.3s;
}
.wa-yesno-option:hover {
    border-color: var(--survey-primary, #00B4D8);
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 180, 216, 0.2);
}
.wa-yesno-option.selected {
    background: linear-gradient(135deg, var(--survey-primary, #00B4D8), #0077B6);
    color: white;
    border-color: transparent;
    box-shadow: 
        0 12px 35px rgba(0, 180, 216, 0.45),
        0 0 60px rgba(0, 180, 216, 0.15);
    animation: yesnoPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes yesnoPop {
    0% { transform: scale(1); }
    40% { transform: scale(1.1) rotate(3deg); }
    100% { transform: scale(1); }
}
.wa-yesno-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    transition: transform 0.3s;
}
.wa-yesno-option:hover .wa-yesno-icon {
    transform: scale(1.2) rotate(10deg);
}
.wa-yesno-option.selected .wa-yesno-icon {
    animation: iconBounce 0.5s ease;
}
@keyframes iconBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}
.wa-yesno-text {
    font-weight: 700;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}
.wa-image-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1rem;
}
.wa-image-option {
    border: 3px solid transparent;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.05);
}
.wa-image-option:hover {
    transform: scale(1.05);
    border-color: rgba(0, 180, 216, 0.5);
}
.wa-image-option.selected {
    border-color: var(--survey-primary, #00B4D8);
    box-shadow: 0 8px 25px rgba(0, 180, 216, 0.35);
}
.wa-image-option img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}
.wa-image-option-text {
    padding: 0.5rem;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 500;
}
.wa-survey-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.wa-survey-contact-title {
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0.5rem;
}
.wa-survey-contact-subtitle {
    text-align: center;
    opacity: 0.7;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}
.wa-contact-field {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}
.wa-contact-field:focus-within {
    border-color: var(--survey-primary, #00B4D8);
}
.wa-contact-field i {
    color: var(--survey-primary, #00B4D8);
    width: 20px;
    text-align: center;
}
.wa-contact-field input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 1rem;
    color: inherit;
    outline: none;
}
.wa-survey-footer {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.04));
}
.wa-survey-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    position: relative;
    overflow: hidden;
}
.wa-survey-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}
.wa-survey-btn:hover::before {
    opacity: 1;
}
.wa-survey-btn-prev {
    background: transparent;
    color: inherit;
    opacity: 0.7;
}
.wa-survey-btn-prev:hover {
    opacity: 1;
    transform: translateX(-5px);
}
.wa-survey-btn-next,
.wa-survey-btn-submit {
    background: linear-gradient(135deg, var(--survey-primary, #00B4D8) 0%, var(--survey-secondary, #0077B6) 50%, #8B5CF6 100%);
    background-size: 200% 200%;
    animation: btnGlow 3s ease infinite;
    color: white;
    box-shadow: 
        0 8px 25px rgba(0, 180, 216, 0.4),
        0 0 50px rgba(0, 180, 216, 0.1);
}
@keyframes btnGlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
.wa-survey-btn-next:hover,
.wa-survey-btn-submit:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 
        0 12px 35px rgba(0, 180, 216, 0.5),
        0 0 80px rgba(0, 180, 216, 0.2);
}
.wa-survey-btn-next:active,
.wa-survey-btn-submit:active {
    transform: translateY(-1px) scale(0.98);
}
.wa-survey-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}
.wa-survey-btn-skip {
    background: transparent;
    color: inherit;
    opacity: 0.5;
    font-size: 0.9rem;
}
.wa-survey-btn-skip:hover {
    opacity: 0.8;
}
.wa-survey-btn.style-rounded { border-radius: 25px; }
.wa-survey-btn.style-square { border-radius: 4px; }
.wa-survey-btn.style-pill { border-radius: 50px; }
.wa-survey-thankyou {
    padding: 3.5rem 2rem;
    text-align: center;
    animation: thankYouPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    position: relative;
    overflow: hidden;
}
.wa-survey-thankyou::before,
.wa-survey-thankyou::after {
    content: '🎉';
    position: absolute;
    font-size: 2rem;
    animation: confettiFall 2s ease-out forwards;
    opacity: 0;
}
.wa-survey-thankyou::before {
    left: 15%;
    top: -20px;
    animation-delay: 0.2s;
}
.wa-survey-thankyou::after {
    right: 15%;
    top: -20px;
    content: '🎊';
    animation-delay: 0.4s;
}
@keyframes confettiFall {
    0% { opacity: 0; transform: translateY(0) rotate(0deg) scale(0.5); }
    20% { opacity: 1; }
    100% { opacity: 0; transform: translateY(150px) rotate(360deg) scale(1); }
}
@keyframes thankYouPop {
    from { opacity: 0; transform: scale(0.8) rotate(-5deg); }
    to { opacity: 1; transform: scale(1) rotate(0deg); }
}
.wa-thankyou-icon {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10B981, #059669, #34D399);
    background-size: 200% 200%;
    animation: checkBounce 0.6s ease 0.3s both, gradientShift 3s ease infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.75rem;
    font-size: 3.5rem;
    color: white;
    box-shadow: 
        0 15px 50px rgba(16, 185, 129, 0.5),
        0 0 80px rgba(16, 185, 129, 0.2);
    position: relative;
}
.wa-thankyou-icon::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10B981, #34D399, #10B981);
    z-index: -1;
    animation: iconGlow 1.5s ease-in-out infinite;
}
@keyframes checkBounce {
    0% { transform: scale(0) rotate(-180deg); }
    50% { transform: scale(1.2) rotate(15deg); }
    70% { transform: scale(0.9) rotate(-5deg); }
    100% { transform: scale(1) rotate(0deg); }
}
.wa-thankyou-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #10B981, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleSlide 0.5s ease 0.5s both;
}
@keyframes titleSlide {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.wa-thankyou-message {
    font-size: 1.1rem;
    opacity: 0.75;
    line-height: 1.7;
    max-width: 320px;
    margin: 0 auto;
    animation: titleSlide 0.5s ease 0.7s both;
}
.wa-thankyou-close {
    margin-top: 2.5rem;
    animation: titleSlide 0.5s ease 0.9s both;
}
.wa-survey-modal.dark {
    --survey-bg: #1a1a2e;
    --survey-text: #ffffff;
}
.wa-survey-modal.dark .wa-choice-option,
.wa-survey-modal.dark .wa-emoji-option,
.wa-survey-modal.dark .wa-yesno-option,
.wa-survey-modal.dark .wa-nps-option {
    border-color: rgba(255, 255, 255, 0.15);
}
.wa-survey-modal.dark .wa-survey-input,
.wa-survey-modal.dark .wa-survey-textarea,
.wa-survey-modal.dark .wa-survey-select,
.wa-survey-modal.dark .wa-contact-field {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
}
.wa-survey-modal.dark .wa-survey-close {
    background: rgba(255, 255, 255, 0.1);
}
.wa-survey-modal.dark .wa-survey-footer {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.1);
}
.wa-survey-modal.dark .wa-survey-header::after {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}
.wa-survey-modal.dark .wa-star {
    color: rgba(255, 255, 255, 0.2);
}
@media (max-width: 576px) {
    .wa-survey-modal {
        border-radius: 20px 20px 0 0;
        max-height: 90vh;
        width: 100%;
        margin: 0;
    }
    .wa-survey-overlay {
        align-items: flex-end;
        padding: 0;
    }
    .wa-survey-header {
        padding: 1.25rem 1rem 0.75rem;
    }
    .wa-survey-header::before {
        display: none;
    }
    .wa-survey-icon {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
    .wa-survey-content {
        padding: 0.75rem 1rem;
        max-height: calc(90vh - 200px);
        overflow-y: auto;
    }
    .wa-survey-footer {
        padding: 0.75rem 1rem 1rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    .wa-survey-footer .wa-survey-btn {
        width: 100%;
        justify-content: center;
    }
    .wa-emoji-option {
        width: 44px;
        height: 44px;
        font-size: 1.35rem;
    }
    .wa-emoji-options {
        gap: 0.35rem;
    }
    .wa-nps-option {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }
    .wa-nps-options {
        gap: 0.25rem;
    }
    .wa-survey-title {
        font-size: 1.15rem;
    }
    .wa-question-text {
        font-size: 0.95rem;
    }
    .wa-survey-close {
        width: 32px;
        height: 32px;
        top: 0.75rem;
        right: 0.75rem;
        font-size: 1rem;
    }
    .wa-choice-option {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    .wa-rating-options {
        gap: 0.25rem;
    }
    .wa-rating-option {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }
    .wa-text-input {
        font-size: 16px; 
        min-height: 100px;
    }
}
.wa-survey-overlay.popup-mode {
    align-items: flex-end;
    justify-content: flex-end;
    background: transparent;
    pointer-events: none;
    padding: 1rem;
}
.wa-survey-overlay.popup-mode .wa-survey-modal {
    pointer-events: all;
    max-width: 380px;
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.3),
        0 5px 20px rgba(0, 0, 0, 0.15);
}
.wa-survey-inline {
    margin: 2rem 0;
    background: var(--survey-bg, #ffffff);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}
.wa-survey-inline .wa-survey-close {
    display: none;
}
.wa-survey-welcome {
    text-align: center;
    padding: 2rem 1.5rem;
}
.wa-welcome-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: waveHand 1.5s ease-in-out infinite;
    display: inline-block;
}
@keyframes waveHand {
    0%, 100% { transform: rotate(0deg); }
    20% { transform: rotate(20deg); }
    40% { transform: rotate(-10deg); }
    60% { transform: rotate(15deg); }
    80% { transform: rotate(-5deg); }
}
.wa-welcome-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, var(--survey-primary, #00B4D8) 0%, var(--survey-secondary, #0077B6) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.wa-welcome-text {
    color: var(--survey-text, #1a1a2e);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.85;
}
.wa-welcome-meta {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: var(--survey-primary, #00B4D8);
    opacity: 0.9;
}
.wa-welcome-meta i {
    margin-right: 0.25rem;
}
.wa-welcome-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 280px;
    margin: 0 auto;
}
.wa-welcome-btn-yes {
    background: linear-gradient(135deg, var(--survey-primary, #00B4D8) 0%, var(--survey-secondary, #0077B6) 100%);
    color: #fff !important;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 180, 216, 0.35);
}
.wa-welcome-btn-yes:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 180, 216, 0.45);
}
.wa-welcome-btn-yes i {
    margin-right: 0.5rem;
}
.wa-welcome-btn-no {
    background: transparent;
    color: var(--survey-text, #1a1a2e);
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    border: 1px solid rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.7;
}
.wa-welcome-btn-no:hover {
    opacity: 1;
    border-color: rgba(0, 0, 0, 0.3);
    background: rgba(0, 0, 0, 0.03);
}
.wa-survey-modal.dark .wa-welcome-btn-no {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
}
.wa-survey-modal.dark .wa-welcome-btn-no:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
}
@media (max-width: 480px) {
    .wa-welcome-icon {
        font-size: 3rem;
    }
    .wa-welcome-title {
        font-size: 1.25rem;
    }
    .wa-welcome-text {
        font-size: 0.9rem;
    }
    .wa-welcome-buttons {
        max-width: 100%;
    }
}
.konfigurator-wrapper {
    max-width: 900px;
    margin: 0 auto;
}
.konfigurator-container {
    background: var(--white);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.1);
    position: relative;
}
@media (max-width: 768px) {
    .konfigurator-container {
        padding: 30px 20px;
    }
}
.konfigurator-progress {
    margin-bottom: 50px;
}
.progress-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
}
.step-number {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--light-gray);
    color: var(--dark-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-headings);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s ease;
    border: 3px solid transparent;
}
.progress-step.active .step-number,
.progress-step.completed .step-number {
    background: var(--primary-cyan);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(0, 180, 216, 0.35);
}
.progress-step.completed .step-number {
    background: linear-gradient(135deg, var(--primary-cyan), var(--accent-violet));
}
.step-label {
    font-size: 0.85rem;
    color: var(--dark-gray);
    font-weight: 500;
    transition: color 0.3s ease;
}
.progress-step.active .step-label,
.progress-step.completed .step-label {
    color: var(--near-black);
    font-weight: 600;
}
.progress-line {
    flex: 1;
    height: 3px;
    background: var(--light-gray);
    margin: 0 -10px;
    margin-top: -25px;
    position: relative;
    z-index: 0;
}
@media (max-width: 576px) {
    .step-label {
        display: none;
    }
    .step-number {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }
}
.progress-bar-container {
    width: 100%;
    height: 6px;
    background: var(--light-gray);
    border-radius: 10px;
    overflow: hidden;
}
.progress-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary-cyan), var(--accent-violet));
    border-radius: 10px;
    transition: width 0.5s ease;
}
.konfigurator-step {
    display: none;
    animation: fadeIn 0.4s ease;
}
.konfigurator-step.active {
    display: block;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.step-header {
    text-align: center;
    margin-bottom: 40px;
}
.step-header h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--near-black);
}
.step-header p {
    color: var(--dark-gray);
    font-size: 1.05rem;
}
.option-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
@media (max-width: 576px) {
    .option-grid {
        grid-template-columns: 1fr;
    }
}
.option-card {
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 16px;
    padding: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    user-select: none;
}
.option-card:hover {
    border-color: var(--primary-cyan);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 180, 216, 0.15);
}
.option-card.selected {
    border-color: var(--primary-cyan);
    border-width: 3px;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.08), rgba(139, 92, 246, 0.08));
    box-shadow: 0 10px 35px rgba(0, 180, 216, 0.25);
    transform: translateY(-2px);
}
.option-card.selected .option-content h4 {
    color: var(--primary-cyan);
}
.option-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-cyan), var(--accent-violet));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}
.option-card:hover .option-icon,
.option-card.selected .option-icon {
    transform: scale(1.1);
}
.option-content h4 {
    font-family: var(--font-headings);
    font-size: 1.1rem;
    color: var(--near-black);
    margin-bottom: 5px;
    text-transform: none;
}
.option-content p {
    font-size: 0.9rem;
    color: var(--dark-gray);
    margin: 0;
}
.option-check {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--primary-cyan);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s ease;
}
.option-card.selected .option-check {
    opacity: 1;
    transform: scale(1);
}
.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}
.contact-form-grid .full-width {
    grid-column: span 2;
}
@media (max-width: 576px) {
    .contact-form-grid {
        grid-template-columns: 1fr;
    }
    .contact-form-grid .full-width {
        grid-column: span 1;
    }
}
.konfigurator-step .form-group-modern {
    position: relative;
}
.konfigurator-step .form-group-modern input,
.konfigurator-step .form-group-modern textarea {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    font-size: 1rem;
    font-family: var(--font-body);
    color: var(--near-black);
    background: var(--white);
    transition: all 0.3s ease;
}
.konfigurator-step .form-group-modern input:focus,
.konfigurator-step .form-group-modern textarea:focus {
    outline: none;
    border-color: var(--primary-cyan);
    box-shadow: 0 0 0 4px rgba(0, 180, 216, 0.15);
}
.konfigurator-step .form-group-modern label {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--dark-gray);
    font-size: 1rem;
    pointer-events: none;
    transition: all 0.3s ease;
    background: var(--white);
    padding: 0 5px;
}
.konfigurator-step .form-group-modern textarea ~ label {
    top: 25px;
}
.konfigurator-step .form-group-modern input:focus ~ label,
.konfigurator-step .form-group-modern input:not(:placeholder-shown) ~ label,
.konfigurator-step .form-group-modern textarea:focus ~ label,
.konfigurator-step .form-group-modern textarea:not(:placeholder-shown) ~ label {
    top: 0;
    font-size: 0.8rem;
    color: var(--primary-cyan);
}
.step-error {
    display: none;
    align-items: center;
    gap: 10px;
    background: #FEE2E2;
    border: 1px solid #FECACA;
    color: #DC2626;
    padding: 12px 20px;
    border-radius: 10px;
    margin-top: 25px;
    font-size: 0.95rem;
}
.step-error i {
    font-size: 1.2rem;
    flex-shrink: 0;
}
.step-error span {
    flex: 1;
}
.step-error.shake {
    animation: shake 0.5s ease;
}
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}
.success-message {
    text-align: center;
    padding: 30px 0;
}
.success-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-cyan), var(--accent-violet));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    animation: successPulse 2s ease infinite;
}
.success-icon i {
    font-size: 3rem;
    color: var(--white);
}
@keyframes successPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0, 180, 216, 0.4);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(0, 180, 216, 0);
    }
}
.success-message h2 {
    font-size: 2rem;
    color: var(--near-black);
    margin-bottom: 15px;
}
.success-message > p {
    color: var(--dark-gray);
    font-size: 1.1rem;
    line-height: 1.7;
}
.success-summary {
    background: var(--light-gray);
    border-radius: 12px;
    padding: 25px;
    margin-top: 30px;
    text-align: left;
}
.success-summary h4 {
    font-family: var(--font-headings);
    font-size: 1rem;
    color: var(--near-black);
    margin-bottom: 15px;
    text-transform: none;
}
.summary-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.summary-item:last-child {
    border-bottom: none;
}
.summary-item .label {
    color: var(--dark-gray);
    font-size: 0.9rem;
}
.summary-item .value {
    color: var(--near-black);
    font-weight: 600;
}
.konfigurator-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--light-gray);
}
.konfigurator-navigation .btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    font-family: var(--font-headings);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}
.konfigurator-navigation .btn-primary {
    background: linear-gradient(135deg, var(--primary-cyan), var(--accent-violet));
    color: var(--white);
    margin-left: auto;
}
.konfigurator-navigation .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 180, 216, 0.35);
}
.konfigurator-navigation .btn-outline {
    background: transparent;
    color: var(--near-black);
    border: 2px solid var(--light-gray);
}
.konfigurator-navigation .btn-outline:hover {
    border-color: var(--primary-cyan);
    color: var(--primary-cyan);
}
.konfigurator-navigation .btn-modern.loading {
    pointer-events: none;
    opacity: 0.7;
}
.konfigurator-navigation .btn-modern.loading span {
    visibility: hidden;
}
.konfigurator-navigation .btn-modern.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
@media (max-width: 768px) {
    .konfigurator-navigation {
        flex-wrap: wrap;
        gap: 15px;
    }
    .konfigurator-navigation .btn-modern {
        flex: 1;
        justify-content: center;
        min-width: 140px;
    }
    .step-header h2 {
        font-size: 1.5rem;
    }
}
.konfigurator-cta-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    overflow: hidden;
}
.konfigurator-cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}
.konfigurator-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}
.konfigurator-orb.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--primary-cyan);
    top: -150px;
    left: -100px;
    animation: orbFloat1 15s ease-in-out infinite;
}
.konfigurator-orb.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--accent-violet);
    bottom: -100px;
    right: -50px;
    animation: orbFloat2 18s ease-in-out infinite;
}
.konfigurator-orb.orb-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-cyan), var(--accent-violet));
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: orbFloat3 12s ease-in-out infinite;
}
@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, 30px) scale(1.1); }
}
@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-40px, -20px) scale(1.15); }
}
@keyframes orbFloat3 {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    50% { transform: translate(-50%, -55%) scale(1.2); opacity: 0.5; }
}
.konfigurator-cta-wrapper {
    position: relative;
    z-index: 2;
}
.konfigurator-cta-content {
    color: var(--white);
}
.konfigurator-badge-wrapper {
    margin-bottom: 25px;
}
.konfigurator-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(0, 180, 216, 0.2));
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    backdrop-filter: blur(10px);
}
.konfigurator-badge i {
    color: #fbbf24;
    font-size: 1rem;
}
.konfigurator-cta-content h2,
.konfigurator-cta-content .konfigurator-cta-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--white);
    display: block;
}
.text-gradient-glow {
    background: linear-gradient(90deg, var(--primary-cyan), var(--accent-violet));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    text-shadow: 0 0 40px rgba(0, 180, 216, 0.5);
}
.konfigurator-lead {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
}
.konfigurator-lead strong {
    color: var(--primary-cyan);
}
.konfigurator-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}
.konfigurator-benefit {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}
.konfigurator-benefit .benefit-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, var(--primary-cyan), var(--accent-violet));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
}
.konfigurator-benefit .benefit-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.konfigurator-benefit .benefit-text strong {
    font-size: 1rem;
    color: var(--white);
}
.konfigurator-benefit .benefit-text span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
}
.konfigurator-testimonial {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 25px;
    position: relative;
    backdrop-filter: blur(10px);
}
.konfigurator-testimonial .testimonial-quote {
    position: absolute;
    top: -12px;
    left: 25px;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--primary-cyan), var(--accent-violet));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.9rem;
}
.konfigurator-testimonial p {
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 0.95rem;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-author img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid var(--primary-cyan);
}
.testimonial-author strong {
    display: block;
    color: var(--white);
    font-size: 0.95rem;
}
.testimonial-author span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}
.konfigurator-card-wrapper {
    position: relative;
}
.konfigurator-card {
    background: var(--white);
    border-radius: 24px;
    padding: 40px 35px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}
.konfigurator-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        var(--primary-cyan) 60deg,
        var(--accent-violet) 120deg,
        transparent 180deg
    );
    animation: glowRotate 8s linear infinite;
    opacity: 0.1;
}
@keyframes glowRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.konfigurator-card-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}
.konfigurator-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}
.konfigurator-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-cyan), var(--accent-violet));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    position: relative;
    z-index: 2;
}
.konfigurator-icon-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-cyan), var(--accent-violet));
    border-radius: 20px;
    animation: iconPulse 2s ease-in-out infinite;
    z-index: 1;
}
@keyframes iconPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.3); opacity: 0; }
}
.konfigurator-card-header h3,
.konfigurator-card-header .konfigurator-card-title {
    font-size: 1.5rem;
    color: var(--near-black);
    margin-bottom: 8px;
    display: block;
    font-weight: 700;
}
.konfigurator-card-header p {
    color: var(--dark-gray);
    font-size: 0.95rem;
}
.konfigurator-steps-preview {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}
.step-preview {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    background: var(--light-gray);
    border-radius: 12px;
    transition: all 0.3s ease;
}
.step-preview:hover {
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.1), rgba(139, 92, 246, 0.1));
    transform: translateX(5px);
}
.step-preview .step-num {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--primary-cyan), var(--accent-violet));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
}
.step-preview .step-text {
    color: var(--near-black);
    font-weight: 500;
    font-size: 0.95rem;
}
.konfigurator-start-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(135deg, var(--primary-cyan), var(--accent-violet));
    color: var(--white);
    border: none;
    border-radius: 14px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 2;
    cursor: pointer;
}
.konfigurator-start-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 180, 216, 0.4);
    color: var(--white);
}
.konfigurator-start-btn .btn-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.konfigurator-start-btn:hover .btn-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(5px);
}
.konfigurator-start-btn .btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    animation: btnShine 3s ease-in-out infinite;
}
@keyframes btnShine {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}
.konfigurator-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    color: var(--dark-gray);
    font-size: 0.85rem;
    position: relative;
    z-index: 2;
}
.konfigurator-trust i {
    color: #22c55e;
    font-size: 1rem;
}
@media (max-width: 991px) {
    .konfigurator-cta-section {
        padding: 70px 0;
    }
    .konfigurator-cta-content h2,
    .konfigurator-cta-content .konfigurator-cta-title {
        font-size: 2.2rem;
    }
    .konfigurator-benefits {
        grid-template-columns: 1fr;
    }
    .konfigurator-card-wrapper {
        margin-top: 50px;
    }
}
@media (max-width: 576px) {
    .konfigurator-cta-section {
        padding: 50px 0;
    }
    .konfigurator-cta-content h2,
    .konfigurator-cta-content .konfigurator-cta-title {
        font-size: 1.8rem;
    }
    .konfigurator-card {
        padding: 30px 25px;
    }
    .konfigurator-lead {
        font-size: 1rem;
    }
}
.konfigurator-banner-section {
    padding: 60px 0;
    background: var(--light-gray);
}
.konfigurator-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border-radius: 24px;
    padding: 40px 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}
.konfigurator-banner::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-cyan), var(--accent-violet));
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}
.konfigurator-banner::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    background: var(--accent-violet);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}
.konfigurator-banner-content {
    display: flex;
    align-items: center;
    gap: 25px;
    position: relative;
    z-index: 2;
}
.konfigurator-banner-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    background: linear-gradient(135deg, var(--primary-cyan), var(--accent-violet));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
}
.konfigurator-banner-text h3 {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 8px;
    font-weight: 700;
}
.konfigurator-banner-text p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    margin: 0;
    max-width: 500px;
}
.konfigurator-banner-cta {
    position: relative;
    z-index: 2;
}
.konfigurator-banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary-cyan), var(--accent-violet));
    color: var(--white);
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.konfigurator-banner-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 180, 216, 0.4);
    color: var(--white);
}
.konfigurator-banner-btn i {
    transition: transform 0.3s ease;
}
.konfigurator-banner-btn:hover i {
    transform: translateX(5px);
}
@media (max-width: 991px) {
    .konfigurator-banner {
        flex-direction: column;
        text-align: center;
        padding: 35px 30px;
        gap: 25px;
    }
    .konfigurator-banner-content {
        flex-direction: column;
    }
    .konfigurator-banner-text p {
        max-width: 100%;
    }
}
@media (max-width: 576px) {
    .konfigurator-banner-section {
        padding: 40px 0;
    }
    .konfigurator-banner {
        padding: 30px 25px;
    }
    .konfigurator-banner-icon {
        width: 60px;
        height: 60px;
        min-width: 60px;
        font-size: 1.5rem;
    }
    .konfigurator-banner-text h3 {
        font-size: 1.2rem;
    }
    .konfigurator-banner-text p {
        font-size: 0.9rem;
    }
    .konfigurator-banner-btn {
        width: 100%;
        justify-content: center;
    }
}
.konfigurator-teaser-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border-radius: 20px;
    padding: 30px;
    margin-top: 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.konfigurator-teaser-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--primary-cyan), var(--accent-violet));
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
}
.konfigurator-teaser-card::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 120px;
    height: 120px;
    background: var(--accent-violet);
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.4;
}
.konfigurator-teaser-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-cyan), var(--accent-violet));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 1.5rem;
    position: relative;
    z-index: 2;
}
.konfigurator-teaser-card h4 {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}
.konfigurator-teaser-card p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}
.konfigurator-teaser-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-cyan), var(--accent-violet));
    color: var(--white);
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}
.konfigurator-teaser-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 180, 216, 0.4);
    color: var(--white);
}
.konfigurator-teaser-btn i {
    transition: transform 0.3s ease;
}
.konfigurator-teaser-btn:hover i {
    transform: translateX(4px);
}
.cart-float {
    position: fixed;
    bottom: 90px;
    left: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-cyan, #00b4d8) 0%, var(--primary-magenta, #9d4edd) 100%);
    color: #fff;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9997;
    box-shadow: 0 4px 20px rgba(0, 180, 216, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
}
.cart-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 180, 216, 0.6);
    color: #fff;
}
.cart-float:focus {
    outline: 3px solid #fff;
    outline-offset: 2px;
}
.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ef4444;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    min-width: 20px;
    height: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.cart-tooltip {
    position: absolute;
    left: 60px;
    background: linear-gradient(135deg, #1F2937 0%, #111827 100%);
    color: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    border: 1px solid rgba(0, 180, 216, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
.cart-tooltip::after {
    content: '';
    position: absolute;
    left: -7px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 7px;
    border-style: solid;
    border-color: transparent #1F2937 transparent transparent;
}
.cart-float:hover .cart-tooltip,
.cart-float:focus .cart-tooltip {
    opacity: 1;
    visibility: visible;
}
@media (max-width: 576px) {
    .cart-float {
        width: 44px;
        height: 44px;
        bottom: 75px;
        left: 15px;
        font-size: 1.2rem;
    }
    .cart-tooltip {
        display: none;
    }
    .cart-badge {
        min-width: 18px;
        height: 18px;
        font-size: 0.65rem;
    }
}
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9998;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    color: #fff;
}
.whatsapp-float:focus {
    outline: 3px solid #fff;
    outline-offset: 2px;
}
.whatsapp-tooltip {
    position: absolute;
    left: 70px;
    background: linear-gradient(135deg, #1F2937 0%, #111827 100%);
    color: #fff;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    border: 1px solid rgba(37, 211, 102, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    left: -7px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 7px;
    border-style: solid;
    border-color: transparent #1F2937 transparent transparent;
}
.whatsapp-float:hover .whatsapp-tooltip,
.whatsapp-float:focus .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}
.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.4);
    animation: whatsapp-pulse 2s infinite;
    z-index: -1;
}
@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}
@media (max-width: 576px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        left: 15px;
        font-size: 1.5rem;
    }
    .whatsapp-tooltip {
        display: none;
    }
}
.automation-check-btn {
    position: fixed;
    bottom: 170px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00B4D8 0%, #8B5CF6 100%);
    border: none;
    color: #fff;
    font-size: 1.25rem;
    cursor: pointer;
    z-index: 9997;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 180, 216, 0.4);
    transition: all 0.3s ease;
}
.automation-check-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(139, 92, 246, 0.5);
}
.automation-check-btn:focus {
    outline: 3px solid #fff;
    outline-offset: 2px;
}
.automation-check-label {
    position: absolute;
    right: 60px;
    background: linear-gradient(135deg, #1F2937 0%, #111827 100%);
    color: #fff;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    border: 1px solid rgba(0, 180, 216, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
.automation-check-label::after {
    content: '';
    position: absolute;
    right: -7px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 7px;
    border-style: solid;
    border-color: transparent transparent transparent #1F2937;
}
.automation-check-btn:hover .automation-check-label,
.automation-check-btn:focus .automation-check-label {
    opacity: 1;
    visibility: visible;
}
@media (max-width: 576px) {
    .automation-check-btn {
        width: 40px;
        height: 40px;
        bottom: 110px;
        right: 10px;
        font-size: 1rem;
    }
    .automation-check-label {
        display: none;
    }
}