* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2C3E50;
    background: linear-gradient(135deg, #E8F4F8 0%, #D1E7DD 25%, #E8F4F8 50%, #D1E7DD 75%, #E8F4F8 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    overflow-x: hidden;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.page-wrapper {
    display: flex;
    min-height: 100vh;
}

.side-navigation {
    position: fixed;
    left: 0;
    top: 0;
    width: 280px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border-right: 1px solid rgba(255, 255, 255, 0.4);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    padding: 2rem 0;
    box-shadow: 4px 0 30px rgba(0, 0, 0, 0.05);
}

.nav-logo-area {
    padding: 0 2rem;
    margin-bottom: 3rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.logo-icon i {
    font-size: 2rem;
    color: #3498DB;
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 1.5rem;
    font-weight: 800;
    color: #2C3E50;
    line-height: 1.2;
}

.logo-sub {
    font-size: 1rem;
    font-weight: 600;
    color: #3498DB;
    letter-spacing: 2px;
}

.vertical-nav {
    flex: 1;
    padding: 0 1.5rem;
}

.nav-menu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nav-menu-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    text-decoration: none;
    color: #5A6C7D;
    font-weight: 500;
    border-radius: 15px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.nav-menu-item:hover,
.nav-menu-item.active {
    background: rgba(255, 255, 255, 0.5);
    color: #2C3E50;
    transform: translateX(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-menu-item i {
    font-size: 1.3rem;
    color: #3498DB;
    width: 24px;
    text-align: center;
}

.nav-menu-item.active i {
    color: #2C3E50;
}

.nav-demo-badge {
    margin: 2rem 1.5rem 0;
    padding: 1rem 1.5rem;
    background: rgba(52, 152, 219, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(52, 152, 219, 0.3);
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #2C3E50;
}

.nav-demo-badge i {
    color: #3498DB;
    font-size: 1.1rem;
}

.main-content-area {
    margin-left: 280px;
    width: calc(100% - 280px);
    min-height: 100vh;
}

.intro-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2rem;
    overflow: hidden;
}

.hero-background-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.bg-element {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    animation: floatElement 25s infinite ease-in-out;
}

.bg-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.bg-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    right: -50px;
    animation-delay: 3s;
}

.bg-3 {
    width: 250px;
    height: 250px;
    top: 50%;
    right: 10%;
    animation-delay: 6s;
}

@keyframes floatElement {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0.2;
    }
    33% {
        transform: translate(50px, -50px) rotate(120deg) scale(1.1);
        opacity: 0.3;
    }
    66% {
        transform: translate(-30px, 30px) rotate(240deg) scale(0.9);
        opacity: 0.25;
    }
}

.hero-main-content {
    max-width: 1400px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-badge-item {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(30px);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    padding: 1rem 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 0.9rem;
    color: #2C3E50;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
    width: fit-content;
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1); }
    50% { transform: scale(1.03); box-shadow: 0 12px 50px rgba(0, 0, 0, 0.15); }
}

.hero-badge-item i {
    color: #3498DB;
    font-size: 1.2rem;
}

.hero-main-heading {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.heading-line-1 {
    font-size: 6rem;
    font-weight: 900;
    color: #2C3E50;
    line-height: 1;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    animation: slideInLeft 1s ease-out;
}

.heading-line-2 {
    font-size: 6rem;
    font-weight: 900;
    color: #3498DB;
    line-height: 1;
    text-shadow: 0 4px 30px rgba(52, 152, 219, 0.2);
    animation: slideInRight 1.2s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-description-paragraph {
    font-size: 1.3rem;
    color: #5A6C7D;
    line-height: 1.9;
    animation: fadeInUp 1.4s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-features-showcase {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.showcase-item {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.showcase-item:hover {
    transform: translateX(15px);
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.showcase-icon {
    width: 60px;
    height: 60px;
    background: rgba(52, 152, 219, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.showcase-icon i {
    font-size: 1.8rem;
    color: #3498DB;
}

.showcase-content {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.showcase-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2C3E50;
}

.showcase-desc {
    font-size: 0.95rem;
    color: #7F8C9A;
}

.hero-warning-container {
    background: rgba(231, 76, 60, 0.1);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(231, 76, 60, 0.3);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    box-shadow: 0 4px 20px rgba(231, 76, 60, 0.1);
}

.hero-warning-container i {
    font-size: 1.8rem;
    color: #E74C3C;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.warning-text-content {
    font-size: 1rem;
    color: #2C3E50;
    line-height: 1.8;
}

.hero-action-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.4rem 3.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: #FFFFFF;
    background: linear-gradient(135deg, #3498DB 0%, #2980B9 100%);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(52, 152, 219, 0.3);
    width: fit-content;
}

.hero-action-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(52, 152, 219, 0.4);
    background: linear-gradient(135deg, #5DADE2 0%, #3498DB 100%);
}

.hero-visual-section {
    position: relative;
    height: 600px;
}

.visual-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(30px);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 25px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.card-float-1 {
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    animation: floatCard1 4s ease-in-out infinite;
}

.card-float-2 {
    bottom: 150px;
    right: 50px;
    width: 180px;
    height: 180px;
    animation: floatCard2 5s ease-in-out infinite;
}

.card-float-3 {
    bottom: 0;
    right: 100px;
    width: 160px;
    height: 160px;
    animation: floatCard3 6s ease-in-out infinite;
}

@keyframes floatCard1 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes floatCard2 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(15px) rotate(-5deg); }
}

@keyframes floatCard3 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(3deg); }
}

.visual-card:hover {
    transform: scale(1.1) translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.card-visual-icon {
    width: 80px;
    height: 80px;
    background: rgba(52, 152, 219, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-visual-icon i {
    font-size: 2.5rem;
    color: #3498DB;
}

.card-visual-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2C3E50;
    text-align: center;
}

.content-section-modern {
    padding: 6rem 2rem;
    position: relative;
}

.content-section-modern:nth-child(even) {
    background: rgba(241, 245, 249, 0.3);
}

.section-inner-container {
    max-width: 1200px;
    margin: 0 auto;
}

.content-block-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 40px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.content-block-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.4);
}

.block-style-2 .block-visual-area,
.block-style-4 .block-visual-area,
.block-style-6 .block-visual-area,
.block-style-8 .block-visual-area,
.block-style-10 .block-visual-area,
.block-style-12 .block-visual-area,
.block-style-14 .block-visual-area {
    order: -1;
}

.block-visual-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    position: relative;
}

.visual-icon-large {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.content-block-modern:hover .visual-icon-large {
    transform: rotate(360deg) scale(1.1);
}

.visual-icon-large i {
    font-size: 3.5rem;
    color: #3498DB;
}

.block-svg {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 20px rgba(52, 152, 219, 0.4));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.content-block-modern:hover .block-svg {
    transform: scale(1.05);
    filter: drop-shadow(0 8px 40px rgba(52, 152, 219, 0.5));
}

.block-svg * {
    fill: rgba(52, 152, 219, 0.25) !important;
    stroke: rgba(52, 152, 219, 0.5) !important;
}

.block-svg rect[width="400"][height="400"] {
    fill: rgba(52, 152, 219, 0.05) !important;
    stroke: none !important;
}

.block-svg rect:not([width="400"]):not([height="400"]),
.block-svg circle:not([fill="none"]),
.block-svg path:not([fill="none"]),
.block-svg polygon:not([fill="none"]),
.block-svg polyline:not([fill="none"]) {
    fill: rgba(52, 152, 219, 0.3) !important;
}

.block-svg circle[fill="none"],
.block-svg path[fill="none"],
.block-svg polygon[fill="none"],
.block-svg line {
    fill: none !important;
    stroke: rgba(52, 152, 219, 0.6) !important;
}

.block-svg defs linearGradient stop[offset="0%"],
.block-svg defs linearGradient stop[offset="0"] {
    stop-color: rgba(52, 152, 219, 0.5) !important;
}

.block-svg defs linearGradient stop[offset="100%"],
.block-svg defs linearGradient stop[offset="1"],
.block-svg defs linearGradient stop:last-child {
    stop-color: rgba(52, 152, 219, 0.2) !important;
}

.block-svg text {
    fill: rgba(52, 152, 219, 0.7) !important;
    font-weight: 600;
    stroke: none !important;
}

.block-text-area {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.block-modern-title {
    font-size: 3rem;
    font-weight: 900;
    color: #2C3E50;
    line-height: 1.2;
}

.block-modern-text {
    font-size: 1.15rem;
    color: #5A6C7D;
    line-height: 1.9;
}

.block-demo-notice {
    background: rgba(52, 152, 219, 0.12);
    backdrop-filter: blur(10px);
    border-left: 5px solid #3498DB;
    border-radius: 15px;
    padding: 1.2rem 1.5rem;
    margin-top: 0.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.block-demo-notice i {
    font-size: 1.4rem;
    color: #3498DB;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.block-demo-notice p {
    font-size: 1rem;
    color: #2C3E50;
    line-height: 1.8;
}

.block-demo-warning {
    background: rgba(231, 76, 60, 0.12);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(231, 76, 60, 0.3);
    border-radius: 18px;
    padding: 1.5rem 2rem;
    margin-top: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
}

.block-demo-warning i {
    font-size: 1.6rem;
    color: #E74C3C;
    flex-shrink: 0;
}

.block-demo-warning p {
    font-size: 1rem;
    color: #2C3E50;
    line-height: 1.8;
}

.demo-section-special {
    background: linear-gradient(135deg, rgba(241, 245, 249, 0.5) 0%, rgba(255, 255, 255, 0.3) 100%);
}

.modern-footer {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(40px);
    border-top: 2px solid rgba(255, 255, 255, 0.5);
    padding: 5rem 2rem 2rem;
    margin-top: 4rem;
    margin-left: 280px;
    width: calc(100% - 280px);
}

.footer-content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-mobile-menu {
    display: none;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(30px);
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 25px;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.mobile-menu-header {
    margin-bottom: 1.5rem;
}

.mobile-menu-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #2C3E50;
    text-align: center;
}

.mobile-menu-nav {
    width: 100%;
}

.mobile-menu-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 0;
    padding: 0;
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    text-decoration: none;
    color: #2C3E50;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.mobile-menu-link:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    color: #3498DB;
}

.mobile-menu-link i {
    font-size: 1.2rem;
    color: #3498DB;
    width: 24px;
    text-align: center;
}

.footer-top-section {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-brand-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    width: fit-content;
}

.footer-logo-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.footer-logo-icon i {
    font-size: 2.2rem;
    color: #3498DB;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
}

.footer-logo-main {
    font-size: 1.8rem;
    font-weight: 800;
    color: #2C3E50;
    line-height: 1.2;
}

.footer-logo-sub {
    font-size: 1.2rem;
    font-weight: 600;
    color: #3498DB;
    letter-spacing: 2px;
}

.footer-brand-description {
    font-size: 1.05rem;
    color: #5A6C7D;
    line-height: 1.8;
}

.footer-demo-badge-large {
    background: rgba(52, 152, 219, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(52, 152, 219, 0.3);
    padding: 1.2rem 2rem;
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #2C3E50;
}

.footer-demo-badge-large i {
    color: #3498DB;
    font-size: 1.2rem;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer-link-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-link-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #2C3E50;
    margin-bottom: 0.5rem;
}

.footer-link-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-link-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-link-list a {
    color: #5A6C7D;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-link-list a:hover {
    color: #3498DB;
    transform: translateX(5px);
}

.footer-link-list i {
    color: #3498DB;
    font-size: 1.1rem;
    width: 20px;
}

.footer-link-list span {
    color: #5A6C7D;
    font-size: 1rem;
}

.footer-bottom-section {
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    padding-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-disclaimer-box {
    background: rgba(231, 76, 60, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(231, 76, 60, 0.2);
    border-radius: 20px;
    padding: 2rem 2.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.footer-disclaimer-box i {
    font-size: 1.8rem;
    color: #E74C3C;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.footer-disclaimer-box p {
    font-size: 0.95rem;
    color: #2C3E50;
    line-height: 1.8;
}

.footer-copyright-text {
    text-align: center;
    font-size: 0.95rem;
    color: #7F8C9A;
    padding-top: 1rem;
}

@media (max-width: 1400px) {
    .hero-main-content {
        grid-template-columns: 1.2fr 1fr;
        gap: 3rem;
    }

    .heading-line-1,
    .heading-line-2 {
        font-size: 5rem;
    }

    .modern-footer {
        margin-left: 280px;
        width: calc(100% - 280px);
    }
}

@media (max-width: 1200px) {
    .side-navigation {
        width: 240px;
    }

    .main-content-area {
        margin-left: 240px;
        width: calc(100% - 240px);
    }

    .modern-footer {
        margin-left: 240px;
        width: calc(100% - 240px);
    }

    .hero-main-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-visual-section {
        height: 400px;
    }

    .content-block-modern {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 3rem;
    }

    .block-style-2 .block-visual-area,
    .block-style-4 .block-visual-area,
    .block-style-6 .block-visual-area,
    .block-style-8 .block-visual-area,
    .block-style-10 .block-visual-area,
    .block-style-12 .block-visual-area,
    .block-style-14 .block-visual-area {
        order: 0;
    }

    .footer-top-section {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .heading-line-1,
    .heading-line-2 {
        font-size: 4rem;
    }

    .hero-description-paragraph {
        font-size: 1.1rem;
    }

    .block-modern-title {
        font-size: 2.5rem;
    }

    .block-modern-text {
        font-size: 1.05rem;
    }
}

.mobile-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 3000;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.mobile-header-content {
    max-width: 100%;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.mobile-header-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    flex-shrink: 0;
}

.mobile-logo-icon {
    width: 40px;
    height: 40px;
    background: rgba(52, 152, 219, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.2);
}

.mobile-logo-icon i {
    font-size: 1.5rem;
    color: #3498DB;
}

.mobile-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.mobile-logo-main {
    font-size: 1.3rem;
    font-weight: 800;
    color: #2C3E50;
    letter-spacing: -0.5px;
}

.mobile-logo-sub {
    font-size: 0.85rem;
    font-weight: 600;
    color: #3498DB;
    letter-spacing: 2px;
}

.mobile-hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 45px;
    height: 45px;
    padding: 12px 10px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 3001;
}

.mobile-hamburger:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.05);
}

.mobile-hamburger.active {
    background: rgba(52, 152, 219, 0.2);
    border-color: rgba(52, 152, 219, 0.4);
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: #2C3E50;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.mobile-hamburger.active .hamburger-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    background: #3498DB;
}

.mobile-hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-hamburger.active .hamburger-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    background: #3498DB;
}

.mobile-header-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    max-height: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
    transition: max-height 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), background 0.4s ease, backdrop-filter 0.4s ease, opacity 0.4s ease;
    opacity: 0;
    z-index: 2999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-header-nav.active {
    max-height: 100vh;
    height: 100vh;
    background: #ffffff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    opacity: 1;
}

.mobile-header-menu {
    list-style: none;
    margin: 0;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 500px;
}

.mobile-header-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    text-decoration: none;
    color: #2C3E50;
    font-size: 1rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.mobile-header-link i {
    font-size: 1.3rem;
    color: #3498DB;
    width: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.mobile-header-link span {
    font-size: 1rem;
    font-weight: 600;
}

.mobile-header-link:hover,
.mobile-header-link.active {
    background: rgba(52, 152, 219, 0.15);
    border-color: rgba(52, 152, 219, 0.3);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.2);
    color: #3498DB;
}

.mobile-header-link:hover i,
.mobile-header-link.active i {
    color: #3498DB;
    transform: scale(1.1);
}

.mobile-menu-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 3000;
    width: 50px;
    height: 50px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    padding: 12px 10px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: #2C3E50;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

@media (max-width: 768px) {
    .mobile-header {
        display: block;
    }

    .mobile-hamburger {
        display: flex;
    }

    .side-navigation {
        display: none;
    }

    .main-content-area {
        margin-left: 0;
        width: 100%;
        padding-top: 80px;
    }

    .intro-hero {
        padding-top: 2rem;
    }

    .modern-footer {
        margin-left: 0;
        width: 100%;
    }

    .footer-mobile-menu {
        display: block;
    }

    .mobile-menu-list {
        grid-template-columns: 1fr;
    }

    .mobile-header-content {
        padding: 0.75rem 1rem;
    }

    .mobile-logo-icon {
        width: 35px;
        height: 35px;
    }

    .mobile-logo-icon i {
        font-size: 1.3rem;
    }

    .mobile-logo-main {
        font-size: 1.1rem;
    }

    .mobile-logo-sub {
        font-size: 0.75rem;
    }

    .intro-hero {
        padding: 2rem 1.5rem;
        min-height: auto;
    }

    .hero-main-content {
        padding-top: 2rem;
    }

    .heading-line-1,
    .heading-line-2 {
        font-size: 3rem;
    }

    .hero-description-paragraph {
        font-size: 1rem;
    }

    .hero-visual-section {
        height: 300px;
    }

    .card-float-1,
    .card-float-2,
    .card-float-3 {
        width: 140px;
        height: 140px;
        padding: 1.5rem;
    }

    .card-visual-icon {
        width: 60px;
        height: 60px;
    }

    .card-visual-icon i {
        font-size: 2rem;
    }

    .card-visual-text {
        font-size: 0.95rem;
    }

    .content-section-modern {
        padding: 4rem 1.5rem;
    }

    .content-block-modern {
        padding: 2.5rem 2rem;
        gap: 2rem;
    }

    .block-modern-title {
        font-size: 2rem;
    }

    .block-modern-text {
        font-size: 1rem;
    }

    .visual-icon-large {
        width: 100px;
        height: 100px;
    }

    .visual-icon-large i {
        font-size: 3rem;
    }

    .footer-top-section {
        gap: 2.5rem;
    }

    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .side-navigation {
        width: 100%;
    }

    .intro-hero {
        padding: 1.5rem 1rem;
    }

    .heading-line-1,
    .heading-line-2 {
        font-size: 2.5rem;
    }

    .hero-description-paragraph {
        font-size: 0.95rem;
    }

    .hero-badge-item {
        font-size: 0.8rem;
        padding: 0.8rem 1.5rem;
    }

    .showcase-item {
        padding: 1.2rem 1.5rem;
    }

    .showcase-icon {
        width: 50px;
        height: 50px;
    }

    .showcase-icon i {
        font-size: 1.5rem;
    }

    .hero-action-button {
        padding: 1.2rem 2.5rem;
        font-size: 1rem;
    }

    .content-section-modern {
        padding: 3rem 1rem;
    }

    .content-block-modern {
        padding: 2rem 1.5rem;
    }

    .block-modern-title {
        font-size: 1.8rem;
    }

    .block-modern-text {
        font-size: 0.95rem;
    }

    .visual-icon-large {
        width: 80px;
        height: 80px;
    }

    .visual-icon-large i {
        font-size: 2.5rem;
    }

    .modern-footer {
        padding: 3rem 1rem 1.5rem;
    }

    .footer-brand-column {
        text-align: center;
        align-items: center;
    }

    .footer-brand-logo {
        margin: 0 auto;
    }

    .footer-link-column {
        text-align: center;
    }
}
