﻿html {
        scroll-behavior: smooth;
        scroll-padding-top: 80px;
    }
    
    * {
        box-sizing: border-box;
    }
    body {
        margin: 0;
        padding: 0;
        font-family: 'Inter', sans-serif;
        background-color: #FFFFFF;
        color: #1E293B;
        overflow-x: hidden;
    }
    
    /* Navigation Menu */
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid #E2E8F0;
        z-index: 1000;
        padding: 1rem 5vw;
        display: flex;
        align-items: center;
        gap: 2rem;
        transition: all 0.3s ease;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }
    
    .navbar-container {
        max-width: 1440px;
        width: 100%;
        margin: 0 auto;
        display: flex;
        align-items: center;
        gap: 2rem;
    }
    
    
    .navbar-left {
        display: flex;
        align-items: center;
        gap: 2rem;
        flex: 1;
    }
    
    .navbar-right {
        display: flex;
        align-items: center;
        gap: 1rem;
    }
    
    .language-switcher {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.5rem 1rem;
        border-radius: 8px;
        text-decoration: none;
        color: #475569;
        font-weight: 500;
        font-size: 0.95rem;
        transition: all 0.3s ease;
        border: 1px solid transparent;
    }
    
    .language-switcher:hover {
        color: #14B8A6;
        border-color: #14B8A6;
        background: rgba(20, 184, 166, 0.05);
    }
    
    .language-switcher i {
        font-size: 1rem;
    }
    
    .navbar-logo {
        display: flex;
        align-items: center;
        text-decoration: none;
        transition: opacity 0.3s ease;
    }
    
    .navbar-logo:hover {
        opacity: 0.8;
    }
    
    .navbar-logo img {
        height: 40px;
        width: auto;
    }
    
    .navbar-menu {
        display: flex;
        align-items: center;
        gap: 2.5rem;
        list-style: none;
        margin: 0;
        padding: 0;
    }
    
    .navbar-menu a {
        color: #475569;
        text-decoration: none;
        font-weight: 500;
        font-size: 0.95rem;
        transition: color 0.3s ease;
        position: relative;
    }
    
    .navbar-menu a:hover {
        color: #14B8A6;
    }
    
    .navbar-menu a::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 2px;
        background-color: #14B8A6;
        transition: width 0.3s ease;
    }
    
    .navbar-menu a:hover::after {
        width: 100%;
    }
    
    .navbar-cta {
        background: linear-gradient(135deg, #14B8A6 0%, #0D9488 100%);
        color: white;
        padding: 0.75rem 1.5rem;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
        font-size: 0.95rem;
        transition: all 0.3s ease;
        box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3);
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    .navbar-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(20, 184, 166, 0.4);
        background: linear-gradient(135deg, #0D9488 0%, #0F766E 100%);
    }
    
    .navbar-cta i {
        font-size: 1rem;
    }
    
    .navbar-cta-text {
        display: inline;
    }
    
    /* Hamburger Menu Button */
    .navbar-toggle {
        display: none;
        flex-direction: column;
        justify-content: space-around;
        width: 30px;
        height: 30px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
        position: relative;
    }
    
    .navbar-toggle span {
        width: 100%;
        height: 3px;
        background-color: #475569;
        border-radius: 3px;
        transition: all 0.3s ease;
        transform-origin: center;
    }
    
    .navbar-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .navbar-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .navbar-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .navbar-toggle:hover span {
        background-color: #14B8A6;
    }
    
    /* Mobile Menu Styles */
    @media (max-width: 768px) {
        .navbar {
            padding: 1rem 1.5rem;
            gap: 1rem;
        }
        
        .navbar-container {
            position: relative;
        }
        
        .navbar-left {
            gap: 1rem;
            width: 100%;
            justify-content: space-between;
        }
        
        .navbar-toggle {
            display: flex;
        }
        
        .navbar-menu {
            position: fixed;
            top: 70px;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            flex-direction: column;
            align-items: flex-start;
            padding: 2rem 1.5rem;
            gap: 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            transform: translateX(-100%);
            transition: transform 0.3s ease;
            z-index: 1000;
            max-height: calc(100vh - 70px);
            overflow-y: auto;
        }
        
        .navbar-menu.active {
            transform: translateX(0);
        }
        
        .navbar-menu li {
            width: 100%;
            border-bottom: 1px solid #E2E8F0;
        }
        
        .navbar-menu li:last-child {
            border-bottom: none;
        }
        
        .navbar-menu a {
            display: block;
            padding: 1rem 0;
            font-size: 1rem;
            width: 100%;
        }
        
        .navbar-menu a::after {
            display: none;
        }
        
        .navbar-right {
            gap: 0.5rem;
        }
        
        .navbar-cta {
            padding: 0.6rem 1rem;
            font-size: 0.85rem;
        }
        
        .navbar-cta-text {
            display: none;
        }
        
        .navbar-logo img {
            height: 32px;
        }
    }
    
    @media (max-width: 480px) {
        .navbar {
            padding: 0.75rem 1rem;
        }
        
        .navbar-menu {
            top: 60px;
            padding: 1.5rem 1rem;
        }
        
        .navbar-cta {
            padding: 0.5rem 0.75rem;
            font-size: 0.8rem;
        }
        
        .navbar-logo img {
            height: 28px;
        }
    }
    
    /* Hero Section */
    .hero-section {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 4rem 5vw;
        padding-top: 6rem;
        position: relative;
        overflow: hidden;
    }
    
    .hero-section-wrapper {
        max-width: 1440px;
        width: 100%;
        margin: 0 auto;
    }
    
    .hero-video-bg {
        position: absolute;
        top: 50%;
        left: 50%;
        min-width: 100%;
        min-height: 100%;
        width: auto;
        height: auto;
        transform: translate(-50%, -50%);
        z-index: 0;
        object-fit: cover;
    }
    
    .hero-video-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.75) 50%, rgba(248, 250, 252, 0.9) 100%);
        z-index: 1;
    }
    
    .hero-container {
        position: relative;
        z-index: 2;
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }
    
    .hero-content {
        position: relative;
        z-index: 1;
    }
    
    .bar-decoration {
        width: 100px;
        height: 4px;
        background: linear-gradient(90deg, #14B8A6 0%, #10B981 100%);
        margin-bottom: 2rem;
        border-radius: 2px;
        box-shadow: 0 0 10px rgba(20, 184, 166, 0.5);
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
        font-weight: 800;
        color: #0F172A;
        margin-bottom: 1.5rem;
        letter-spacing: -0.01em;
    }
    
    @media (min-width: 768px) {
        .hero-title {
            font-size: 3.5rem;
        }
    }
    
    @media (min-width: 1024px) {
        .hero-title {
            font-size: 4rem;
        }
    }
    
    .accent-text {
        color: #14B8A6;
        position: relative;
        display: inline-block;
    }
    
    .accent-text::after {
        content: '';
        position: absolute;
        bottom: 0.2em;
        left: 0;
        right: 0;
        height: 0.2em;
        background: linear-gradient(90deg, rgba(20, 184, 166, 0.3) 0%, transparent 100%);
        border-radius: 2px;
    }
    
    .hero-description {
        font-size: 1.1rem;
        line-height: 1.6;
        color: #64748B;
        margin-bottom: 2.5rem;
        max-width: 600px;
    }
    
    @media (min-width: 768px) {
        .hero-description {
            font-size: 1.25rem;
        }
    }
    
    .hero-cta-buttons {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        margin-bottom: 3rem;
    }
    
    .hero-cta-primary {
        background: linear-gradient(135deg, #14B8A6 0%, #0D9488 100%);
        color: white;
        padding: 0.875rem 1.75rem;
        border-radius: 12px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1rem;
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 8px 24px rgba(20, 184, 166, 0.3);
        position: relative;
        overflow: hidden;
    }
    
    .hero-cta-primary::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;
    }
    
    .hero-cta-primary:hover::before {
        left: 100%;
    }
    
    .hero-cta-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 32px rgba(20, 184, 166, 0.4);
        background: linear-gradient(135deg, #0D9488 0%, #0F766E 100%);
    }
    
    .hero-cta-primary i:first-child {
        font-size: 1.2rem;
    }
    
    .hero-cta-primary i:last-child {
        font-size: 0.9rem;
        transition: transform 0.3s ease;
    }
    
    .hero-cta-primary:hover i:last-child {
        transform: translateX(4px);
    }
    
    .hero-cta-secondary {
        background: white;
        color: #0F172A;
        padding: 0.875rem 1.75rem;
        border-radius: 12px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1rem;
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        transition: all 0.3s ease;
        border: 2px solid #E2E8F0;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }
    
    .hero-cta-secondary:hover {
        border-color: #14B8A6;
        color: #14B8A6;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(20, 184, 166, 0.15);
    }
    
    .hero-cta-secondary i {
        font-size: 1.2rem;
        transition: transform 0.3s ease;
    }
    
    .hero-cta-secondary:hover i {
        transform: scale(1.1);
    }
    
    .hero-trust {
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .trust-item {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        color: #64748B;
        font-size: 0.95rem;
        font-weight: 500;
    }
    
    .trust-item i {
        color: #14B8A6;
        font-size: 1.1rem;
    }
    
    .hero-modules {
        position: relative;
        z-index: 1;
    }
    
    .modules-card {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 24px;
        padding: 2rem;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        transition: all 0.3s ease;
    }
    
    .modules-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 24px 72px rgba(0, 0, 0, 0.4);
    }
    
    .modules-header {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
        border-bottom: 2px solid rgba(20, 184, 166, 0.2);
    }
    
    .modules-header i {
        font-size: 1.5rem;
        color: #14B8A6;
        background: rgba(20, 184, 166, 0.1);
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
    }
    
    .modules-title {
        font-size: 1.5rem;
        font-weight: 700;
        color: #0F172A;
        margin: 0;
    }
    
    .modules-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .module-item {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.875rem;
        background: rgba(248, 250, 252, 0.8);
        border: 1px solid rgba(226, 232, 240, 0.5);
        border-radius: 12px;
        transition: all 0.3s ease;
    }
    
    .module-item.clickable {
        cursor: pointer;
    }
    
    .module-item:hover {
        background: rgba(20, 184, 166, 0.1);
        border-color: #14B8A6;
        transform: translateX(4px);
    }
    
    .module-icon {
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(20, 184, 166, 0.15);
        border-radius: 10px;
        color: #14B8A6;
        font-size: 1rem;
        flex-shrink: 0;
    }
    
    .module-item:hover .module-icon {
        background: #14B8A6;
        color: white;
        transform: scale(1.1);
    }
    
    .module-name {
        font-size: 0.95rem;
        font-weight: 600;
        color: #0F172A;
    }
    
    .module-item:hover .module-name {
        color: #14B8A6;
    }
    
    
    .module-badge {
        background: #F1F5F9;
        border: 1px solid #E2E8F0;
        padding: 8px 16px;
        border-radius: 9999px;
        font-size: 0.9rem;
        color: #475569;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: all 0.3s ease;
    }
    
    .module-badge:hover {
        background: #E2E8F0;
        border-color: #14B8A6;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(20, 184, 166, 0.15);
    }
    
    .module-badge i {
        color: #14B8A6;
    }
    
    /* Process Section */
    .process-section {
        padding: 6rem 3vw;
        background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
    }
    
    .process-section-wrapper {
        max-width: 1440px;
        margin: 0 auto;
        width: 100%;
    }
    
    .process-header {
        text-align: center;
        margin-bottom: 4rem;
    }
    
    .process-title {
        font-size: 2.5rem;
        font-weight: 800;
        color: #0F172A;
        margin: 0;
        line-height: 1.2;
    }
    
    .process-asterisk {
        color: #14B8A6;
        font-size: 1.5rem;
    }
    
    .process-timeline {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        margin-bottom: 3rem;
        position: relative;
    }
    
    @media (min-width: 1024px) {
        .process-timeline {
            grid-template-columns: repeat(4, 1fr);
        }
        
        .process-timeline::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, #14B8A6 0%, #10B981 25%, #0D9488 50%, #0F766E 75%, #0F766E 100%);
            z-index: 0;
            opacity: 0.3;
        }
        
        .process-day {
            position: relative;
            z-index: 1;
        }
    }
    
    .process-day {
        background: #FFFFFF;
        border: 1px solid #E2E8F0;
        border-radius: 20px;
        padding: 2rem;
        position: relative;
        transition: all 0.3s ease;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
        overflow: hidden;
    }
    
    .process-day::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #14B8A6 0%, #10B981 100%);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }
    
    .process-day:hover::before {
        transform: scaleX(1);
    }
    
    .process-day:nth-child(1)::before {
        background: linear-gradient(90deg, #14B8A6 0%, #0D9488 100%);
    }
    
    .process-day:nth-child(2)::before {
        background: linear-gradient(90deg, #10B981 0%, #059669 100%);
    }
    
    .process-day:nth-child(3)::before {
        background: linear-gradient(90deg, #0D9488 0%, #0F766E 100%);
    }
    
    .process-day:nth-child(4)::before {
        background: linear-gradient(90deg, #14B8A6 0%, #10B981 100%);
    }
    
    .process-day:hover {
        transform: translateY(-8px);
        border-color: #14B8A6;
        box-shadow: 0 20px 40px rgba(20, 184, 166, 0.15);
    }
    
    .process-day-header {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
        border-bottom: 2px solid #E2E8F0;
    }
    
    .process-day-number {
        font-size: 2.5rem;
        font-weight: 800;
        color: #14B8A6;
        line-height: 1;
        transition: all 0.3s ease;
    }
    
    .process-day:nth-child(1) .process-day-number {
        color: #14B8A6;
    }
    
    .process-day:nth-child(2) .process-day-number {
        color: #10B981;
    }
    
    .process-day:nth-child(3) .process-day-number {
        color: #0D9488;
    }
    
    .process-day:nth-child(4) .process-day-number {
        color: #0F766E;
    }
    
    .process-day:hover .process-day-number {
        transform: scale(1.1);
    }
    
    .process-day-label {
        font-size: 0.75rem;
        font-weight: 600;
        color: #64748B;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }
    
    .process-day-content {
        text-align: center;
    }
    
    .process-day-icon {
        width: 72px;
        height: 72px;
        margin: 0 auto 1.5rem;
        background: rgba(20, 184, 166, 0.1);
        border-radius: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        color: #14B8A6;
        transition: all 0.3s ease;
        position: relative;
        border: 2px solid rgba(20, 184, 166, 0.2);
    }
    
    .process-day:nth-child(1) .process-day-icon {
        background: rgba(20, 184, 166, 0.1);
        color: #14B8A6;
        border-color: rgba(20, 184, 166, 0.3);
    }
    
    .process-day:nth-child(2) .process-day-icon {
        background: rgba(16, 185, 129, 0.1);
        color: #10B981;
        border-color: rgba(16, 185, 129, 0.3);
    }
    
    .process-day:nth-child(3) .process-day-icon {
        background: rgba(13, 148, 136, 0.1);
        color: #0D9488;
        border-color: rgba(13, 148, 136, 0.3);
    }
    
    .process-day:nth-child(4) .process-day-icon {
        background: rgba(15, 118, 110, 0.1);
        color: #0F766E;
        border-color: rgba(15, 118, 110, 0.3);
    }
    
    .process-day:hover .process-day-icon {
        transform: scale(1.1) rotate(5deg);
        border-width: 3px;
    }
    
    .process-day:nth-child(1):hover .process-day-icon {
        background: #14B8A6;
        color: #FFFFFF;
        border-color: #14B8A6;
        box-shadow: 0 8px 24px rgba(20, 184, 166, 0.3);
    }
    
    .process-day:nth-child(2):hover .process-day-icon {
        background: #10B981;
        color: #FFFFFF;
        border-color: #10B981;
        box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
    }
    
    .process-day:nth-child(3):hover .process-day-icon {
        background: #0D9488;
        color: #FFFFFF;
        border-color: #0D9488;
        box-shadow: 0 8px 24px rgba(13, 148, 136, 0.3);
    }
    
    .process-day:nth-child(4):hover .process-day-icon {
        background: #0F766E;
        color: #FFFFFF;
        border-color: #0F766E;
        box-shadow: 0 8px 24px rgba(15, 118, 110, 0.3);
    }
    
    .process-day-title {
        font-size: 1.5rem;
        font-weight: 700;
        color: #0F172A;
        margin: 0 0 0.5rem 0;
    }
    
    .process-day-subtitle {
        font-size: 0.95rem;
        color: #64748B;
        margin: 0 0 1rem 0;
        line-height: 1.5;
    }
    
    .process-day-tasks {
        list-style: none;
        padding: 0;
        margin: 1rem 0 0 0;
        text-align: left;
    }
    
    .process-day-tasks li {
        font-size: 0.9rem;
        color: #475569;
        padding: 0.5rem 0;
        padding-left: 1.5rem;
        position: relative;
    }
    
    .process-day-tasks li:before {
        content: '✓';
        position: absolute;
        left: 0;
        color: #14B8A6;
        font-weight: bold;
        font-size: 1rem;
    }
    
    .process-day:nth-child(1) .process-day-tasks li:before {
        color: #14B8A6;
    }
    
    .process-day:nth-child(2) .process-day-tasks li:before {
        color: #10B981;
    }
    
    .process-day:nth-child(3) .process-day-tasks li:before {
        color: #0D9488;
    }
    
    .process-day:nth-child(4) .process-day-tasks li:before {
        color: #0F766E;
    }
    
    .process-cta {
        text-align: center;
        margin-top: 3rem;
    }
    
    .process-cta-button {
        background: linear-gradient(135deg, #14B8A6 0%, #0D9488 100%);
        color: white;
        padding: 1rem 2rem;
        border-radius: 12px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        transition: all 0.3s ease;
        box-shadow: 0 8px 24px rgba(20, 184, 166, 0.3);
    }
    
    .process-cta-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 32px rgba(20, 184, 166, 0.4);
        background: linear-gradient(135deg, #0D9488 0%, #0F766E 100%);
    }
    
    .process-cta-button i {
        font-size: 1.2rem;
    }
    
    @media (max-width: 768px) {
        .process-section {
            padding: 3rem 1.5rem;
        }
        
        .process-title {
            font-size: 1.75rem;
        }
        
        .process-timeline {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        
        .process-day {
            padding: 1.5rem;
        }
    }
    
    /* Instruments Section */
    .instruments-section {
        padding: 6rem 3vw;
        background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
    }
    
    .instruments-section-wrapper {
        max-width: 1440px;
        margin: 0 auto;
        width: 100%;
    }
    
    .instruments-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
        margin-bottom: 3rem;
    }
    
    @media (min-width: 1024px) {
        .instruments-content {
            gap: 5rem;
        }
    }
    
    .instruments-description {
        text-align: left;
    }
    
    .instruments-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: rgba(20, 184, 166, 0.1);
        border: 1px solid rgba(20, 184, 166, 0.2);
        color: #14B8A6;
        padding: 0.5rem 1rem;
        border-radius: 9999px;
        font-size: 0.85rem;
        font-weight: 600;
        margin-bottom: 1.5rem;
    }
    
    .instruments-badge i {
        font-size: 0.9rem;
    }
    
    .instruments-title {
        font-size: 3.5rem;
        font-weight: 800;
        color: #0F172A;
        margin: 0 0 1rem 0;
        line-height: 1.1;
    }
    
    .instruments-highlight {
        color: #14B8A6;
        position: relative;
        display: inline-block;
    }
    
    .instruments-highlight::after {
        content: '';
        position: absolute;
        bottom: 0.15em;
        left: 0;
        right: 0;
        height: 0.25em;
        background: linear-gradient(90deg, rgba(20, 184, 166, 0.3) 0%, transparent 100%);
        border-radius: 2px;
    }
    
    .instruments-subtitle {
        font-size: 1.25rem;
        color: #64748B;
        font-weight: 400;
        display: block;
        margin-bottom: 2.5rem;
        line-height: 1.6;
        max-width: 600px;
    }
    
    .instruments-list {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        margin-top: 2rem;
        align-items: center;
    }
    
    .instrument-item {
        background: rgba(20, 184, 166, 0.1);
        border: 1px solid rgba(20, 184, 166, 0.2);
        border-radius: 12px;
        padding: 0.75rem 1.5rem;
        display: flex;
        align-items: center;
        gap: 0.75rem;
        white-space: nowrap;
    }
    
    .instrument-icon {
        width: 32px;
        height: 32px;
        background: rgba(20, 184, 166, 0.15);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #14B8A6;
        font-size: 1rem;
        flex-shrink: 0;
    }
    
    .instrument-name {
        font-size: 1rem;
        font-weight: 600;
        color: #14B8A6;
    }
    
    .instruments-image {
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }
    
    .instruments-image::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 120%;
        height: 120%;
        background: radial-gradient(circle, rgba(20, 184, 166, 0.1) 0%, transparent 70%);
        border-radius: 50%;
        z-index: 0;
    }
    
    .instruments-image img {
        max-width: 100%;
        width: 100%;
        height: auto;
        border-radius: 16px;
        position: relative;
        z-index: 1;
        filter: drop-shadow(0 20px 40px rgba(20, 184, 166, 0.15));
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        display: block;
    }
    
    .instruments-image:hover img {
        transform: scale(1.03) translateY(-5px);
        filter: drop-shadow(0 30px 60px rgba(20, 184, 166, 0.25));
    }
    
    @media (min-width: 1024px) {
        .instruments-image img {
            max-width: 600px;
            margin: 0 auto;
        }
    }
    
    .instruments-cta {
        text-align: center;
    }
    
    .instruments-button {
        background: linear-gradient(135deg, #14B8A6 0%, #0D9488 100%);
        color: white;
        padding: 1rem 2rem;
        border-radius: 12px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        transition: all 0.3s ease;
        box-shadow: 0 8px 24px rgba(20, 184, 166, 0.3);
    }
    
    .instruments-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 32px rgba(20, 184, 166, 0.4);
        background: linear-gradient(135deg, #0D9488 0%, #0F766E 100%);
    }
    
    .instruments-button i {
        font-size: 1.2rem;
    }
    
    @media (max-width: 1024px) {
        .instruments-content {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        
        .instruments-image {
            order: -1;
        }
        
        .instruments-title {
            font-size: 2.5rem;
        }
    }
    
    @media (max-width: 768px) {
        .instruments-section {
            padding: 3rem 1.5rem;
        }
        
        .instruments-title {
            font-size: 2rem;
        }
        
        .instruments-subtitle {
            font-size: 1.25rem;
        }
        
        .instruments-list {
            gap: 0.75rem;
        }
        
        .instrument-item {
            padding: 0.625rem 1.25rem;
            font-size: 0.9rem;
        }
    }
    
    /* Services Section */
    .services-section {
        padding: 6rem 3vw;
        background-color: #FFFFFF;
    }
    
    .services-section-wrapper {
        max-width: 1440px;
        margin: 0 auto;
        width: 100%;
    }
    
    .services-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    @media (min-width: 640px) {
        .services-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    
    @media (min-width: 1024px) {
        .services-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }
    
    .service-box {
        background: #FFFFFF;
        border: 1px solid #E2E8F0;
        border-radius: 16px;
        padding: 2rem;
        transition: all 0.3s ease;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
        height: 100%;
        display: flex;
        flex-direction: column;
    }
    
    .service-box:hover {
        transform: translateY(-4px);
        border-color: #14B8A6;
        box-shadow: 0 10px 30px rgba(20, 184, 166, 0.15);
    }
    
    .service-box-header {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 1rem;
    }
    
    .service-box-icon {
        width: 56px;
        height: 56px;
        background: rgba(20, 184, 166, 0.1);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        color: #14B8A6;
        flex-shrink: 0;
        transition: all 0.3s ease;
    }
    
    .service-box:hover .service-box-icon {
        background: #14B8A6;
        color: #FFFFFF;
        transform: scale(1.1) rotate(5deg);
    }
    
    .service-box-title {
        font-size: 1.25rem;
        font-weight: 700;
        color: #0F172A;
        margin: 0;
        line-height: 1.4;
        flex: 1;
    }
    
    .service-box-text {
        font-size: 0.95rem;
        color: #64748B;
        line-height: 1.6;
        margin: 0;
        flex-grow: 1;
    }
    
    @media (max-width: 768px) {
        .services-section {
            padding: 3rem 1.5rem;
        }
        
        .service-box {
            padding: 1.5rem;
        }
        
        .service-box-icon {
            width: 48px;
            height: 48px;
            font-size: 1.25rem;
        }
        
        .service-box-title {
            font-size: 1.1rem;
        }
        
        .service-box-text {
            font-size: 0.9rem;
        }
    }
    
    /* Modules Section */
    .modules-section {
        padding: 6rem 3vw;
        background-color: #FFFFFF;
    }
    
    .modules-section-wrapper {
        max-width: 1440px;
        margin: 0 auto;
        width: 100%;
    }
    
    .modules-section > * {
        max-width: 1440px;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
    }
    
    .header-bar {
        margin-bottom: 3rem;
        border-bottom: 2px solid #E2E8F0;
        padding-bottom: 1.5rem;
        display: flex;
        justify-content: space-between;
        align-items: end;
        max-width: 1440px;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
    }
    
    .card {
        background-color: #FFFFFF;
        border: 1px solid #E2E8F0;
        border-radius: 12px;
        padding: 24px;
        transition: all 0.2s ease;
        display: flex;
        flex-direction: column;
        height: 100%;
        position: relative;
        overflow: hidden;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    }
    
    .card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 100%;
        background-color: #14B8A6;
        opacity: 0;
        transition: opacity 0.2s ease;
    }
    
    .card:hover {
        transform: translateY(-4px);
        border-color: #14B8A6;
        box-shadow: 0 10px 30px rgba(20, 184, 166, 0.15);
    }
    
    .card:hover::before {
        opacity: 1;
    }
    
    .icon-box {
        width: 48px;
        height: 48px;
        background-color: rgba(20, 184, 166, 0.1);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 12px;
        color: #14B8A6;
        font-size: 1.25rem;
    }
    
    .card-title {
        font-weight: 600;
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
        color: #0F172A;
    }
    
    .card-desc {
        font-size: 0.85rem;
        color: #64748B;
        line-height: 1.4;
        flex-grow: 1;
        margin-bottom: 1rem;
    }
    
    .card-more-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        color: #14B8A6;
        text-decoration: none;
        font-weight: 600;
        font-size: 0.9rem;
        margin-top: auto;
        padding-top: 1rem;
        border-top: 1px solid #E2E8F0;
        transition: all 0.3s ease;
    }
    
    .card-more-btn:hover {
        color: #0D9488;
        gap: 0.75rem;
    }
    
    .card-more-btn i {
        font-size: 0.85rem;
        transition: transform 0.3s ease;
    }
    
    .card-more-btn:hover i {
        transform: translateX(4px);
    }
    
    .grid-container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 1440px;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
    }
    
    @media (min-width: 640px) {
        .grid-container {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    
    @media (min-width: 1024px) {
        .grid-container {
            grid-template-columns: repeat(4, 1fr) !important;
        }
    }
    
    .card.clickable {
        cursor: pointer;
    }
    
    /* Benefits Section */
    .benefits-section {
        padding: 6rem 4vw;
        background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
        position: relative;
        overflow: hidden;
    }
    
    .benefits-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent 0%, rgba(20, 184, 166, 0.2) 50%, transparent 100%);
    }
    
    @media (max-width: 768px) {
        .benefits-section {
            padding: 4rem 2vw;
        }
    }
    
    @media (max-width: 480px) {
        .benefits-section {
            padding: 3rem 1rem;
        }
    }
    
    .benefits-section-wrapper {
        max-width: 1440px;
        margin: 0 auto;
        width: 100%;
        padding: 0 1rem;
        box-sizing: border-box;
    }
    
    .benefits-header {
        text-align: center;
        margin-bottom: 4rem;
        width: 100%;
        position: relative;
        padding: 2rem 0;
    }
    
    .benefits-header-badge {
        display: inline-block;
        margin-bottom: 1rem;
    }
    
    .benefits-header-badge span {
        display: inline-block;
        background: linear-gradient(135deg, rgba(20, 184, 166, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
        color: #14B8A6;
        padding: 0.5rem 1.25rem;
        border-radius: 50px;
        font-size: 0.875rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        border: 1px solid rgba(20, 184, 166, 0.2);
    }
    
    .benefits-title {
        font-size: 3rem;
        font-weight: 800;
        color: #0F172A;
        margin: 0 0 1rem 0;
        line-height: 1.2;
        background: linear-gradient(135deg, #0F172A 0%, #14B8A6 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        position: relative;
    }
    
    .benefits-subtitle {
        font-size: 1.25rem;
        color: #64748B;
        margin: 0;
        line-height: 1.6;
        font-weight: 400;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    @media (max-width: 768px) {
        .benefits-section-wrapper {
            padding: 0 1.5rem;
        }
        
        .benefits-header {
            margin-bottom: 3rem;
            padding: 1.5rem 0;
        }
        
        .benefits-title {
            font-size: 2rem;
        }
        
        .benefits-subtitle {
            font-size: 1.125rem;
        }
        
        .benefits-header-badge span {
            font-size: 0.75rem;
            padding: 0.4rem 1rem;
        }
    }
    
    @media (max-width: 480px) {
        .benefits-section-wrapper {
            padding: 0 1rem;
        }
        
        .benefits-header {
            margin-bottom: 2.5rem;
            padding: 1rem 0;
        }
        
        .benefits-title {
            font-size: 1.75rem;
        }
        
        .benefits-subtitle {
            font-size: 1rem;
        }
    }
    
    .benefits-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
        width: 100%;
    }
    
    @media (min-width: 640px) {
        .benefits-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    
    @media (min-width: 1024px) {
        .benefits-grid {
            grid-template-columns: repeat(3, 1fr) !important;
        }
    }
    
    .benefit-card {
        background: #FFFFFF;
        border: 1px solid #E2E8F0;
        border-radius: 20px;
        padding: 2rem;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
        min-height: 200px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    }
    
    .benefit-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 0;
        background: linear-gradient(180deg, #14B8A6 0%, #10B981 100%);
        transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .benefit-card:hover {
        transform: translateY(-8px) scale(1.02);
        border-color: #14B8A6;
        box-shadow: 0 20px 40px rgba(20, 184, 166, 0.15);
    }
    
    .benefit-card:hover::before {
        height: 100%;
    }
    
    .benefit-icon-box {
        width: 56px;
        height: 56px;
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        margin-bottom: 0.5rem;
        transition: transform 0.3s ease;
        position: relative;
        z-index: 1;
    }
    
    .benefit-card:hover .benefit-icon-box {
        transform: scale(1.1) rotate(5deg);
    }
    
    .benefit-title {
        font-size: 1.25rem;
        font-weight: 700;
        color: #0F172A;
        margin: 0;
        line-height: 1.3;
        position: relative;
        z-index: 1;
    }
    
    .benefit-desc {
        font-size: 0.95rem;
        color: #64748B;
        line-height: 1.6;
        margin: 0;
        position: relative;
        z-index: 1;
    }
    
    .blue-theme .benefit-icon-box { 
        background: rgba(20, 184, 166, 0.1);
        color: #14B8A6;
        border: 1px solid rgba(20, 184, 166, 0.2);
    }
    .purple-theme .benefit-icon-box { 
        background: rgba(139, 92, 246, 0.1);
        color: #8B5CF6;
        border: 1px solid rgba(139, 92, 246, 0.2);
    }
    .green-theme .benefit-icon-box { 
        background: rgba(16, 185, 129, 0.1);
        color: #10B981;
        border: 1px solid rgba(16, 185, 129, 0.2);
    }
    .orange-theme .benefit-icon-box { 
        background: rgba(245, 158, 11, 0.1);
        color: #F59E0B;
        border: 1px solid rgba(245, 158, 11, 0.2);
    }
    .red-theme .benefit-icon-box { 
        background: rgba(239, 68, 68, 0.1);
        color: #EF4444;
        border: 1px solid rgba(239, 68, 68, 0.2);
    }
    .cyan-theme .benefit-icon-box { 
        background: rgba(6, 182, 212, 0.1);
        color: #06B6D4;
        border: 1px solid rgba(6, 182, 212, 0.2);
    }
    
    /* Pricing Section */
    .pricing-container {
        max-width: 1200px;
        margin: 0 auto;
        width: 100%;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 3rem;
        box-sizing: border-box;
        overflow: visible;
    }
    
    .pricing-top-row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
        width: 100%;
        margin: 0;
        padding: 0;
    }
    
    @media (min-width: 768px) {
        .pricing-top-row {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    
    .pricing-packages-row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
        width: 100%;
        align-items: stretch;
        margin: 0;
        padding: 1rem 0 0 0;
        overflow: visible;
    }
    
    @media (min-width: 768px) {
        .pricing-packages-row {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    
    @media (min-width: 1024px) {
        .pricing-packages-row {
            grid-template-columns: repeat(3, 1fr);
        }
    }
    
    .pricing-secondary-box {
        background: #FFFFFF;
        border: 2px solid #E2E8F0;
        border-radius: 20px;
        padding: 2rem;
        width: 100%;
        box-sizing: border-box;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
        align-self: stretch;
    }
    
    .pricing-secondary-box::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, #14B8A6 0%, #10B981 100%);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .pricing-secondary-box:hover {
        border-color: #14B8A6;
        box-shadow: 0 8px 24px rgba(20, 184, 166, 0.12);
        transform: translateY(-4px);
    }
    
    .pricing-secondary-box:hover::before {
        transform: scaleX(1);
    }
    
    @media (max-width: 767px) {
        .pricing-secondary-box {
            padding: 1.5rem;
        }
    }
    
    .pricing-box-header {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .pricing-box-header.reversed {
        flex-direction: row-reverse;
        justify-content: space-between;
    }
    
    .pricing-box-icon {
        width: 56px;
        height: 56px;
        background: rgba(20, 184, 166, 0.1);
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #14B8A6;
        font-size: 1.5rem;
        flex-shrink: 0;
        border: 2px solid rgba(20, 184, 166, 0.2);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .pricing-secondary-box:hover .pricing-box-icon,
    .pricing-main-box:hover .pricing-box-icon {
        background: rgba(20, 184, 166, 0.15);
        border-color: rgba(20, 184, 166, 0.3);
        transform: scale(1.05);
    }
    
    @media (max-width: 767px) {
        .pricing-box-icon {
            width: 48px;
            height: 48px;
            font-size: 1.25rem;
            border-radius: 12px;
        }
    }
    
    @media (max-width: 480px) {
        .pricing-box-icon {
            width: 44px;
            height: 44px;
            font-size: 1.125rem;
            border-radius: 10px;
        }
    }
    
    .pricing-box-title {
        font-size: 1.75rem;
        font-weight: 700;
        color: #0F172A;
        margin: 0;
        line-height: 1.3;
    }
    
    @media (max-width: 767px) {
        .pricing-box-title {
            font-size: 1.5rem;
        }
    }
    
    @media (max-width: 480px) {
        .pricing-box-title {
            font-size: 1.25rem;
        }
    }
    
    .pricing-box-text {
        font-size: 1rem;
        color: #64748B;
        line-height: 1.6;
        margin: 0;
    }
    
    @media (max-width: 767px) {
        .pricing-box-text {
            font-size: 0.9375rem;
        }
    }
    
    @media (max-width: 480px) {
        .pricing-box-text {
            font-size: 0.875rem;
            line-height: 1.5;
        }
    }
    
    .pricing-highlight {
        color: #14B8A6;
        font-weight: 700;
        font-size: 1.1em;
    }
    
    .pricing-main-box {
        background: #FFFFFF;
        border: 2px solid #E2E8F0;
        border-radius: 20px;
        padding: 2.5rem;
        display: flex;
        flex-direction: column;
        position: relative;
        width: 100%;
        box-sizing: border-box;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        align-self: stretch;
        overflow: hidden;
    }
    
    .pricing-main-box::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, #14B8A6 0%, #10B981 100%);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border-radius: 20px 20px 0 0;
        z-index: 1;
    }
    
    .pricing-main-box:hover {
        border-color: #14B8A6;
        box-shadow: 0 12px 32px rgba(20, 184, 166, 0.15);
        transform: translateY(-6px);
    }
    
    .pricing-main-box:hover::before {
        transform: scaleX(1);
    }
    
    .pricing-main-box.featured::before {
        transform: scaleX(1);
        background: linear-gradient(90deg, #14B8A6 0%, #10B981 100%);
        border-radius: 17px 17px 0 0;
    }
    
    .pricing-main-box.featured {
        border-color: #14B8A6;
        border-width: 3px;
        box-shadow: 0 8px 32px rgba(20, 184, 166, 0.15);
        background: linear-gradient(180deg, #FFFFFF 0%, rgba(20, 184, 166, 0.02) 100%);
        overflow: hidden;
    }
    
    .pricing-main-box.featured::after {
        content: 'Популярный';
        position: absolute;
        top: -12px;
        right: 1.5rem;
        background: linear-gradient(135deg, #14B8A6 0%, #10B981 100%);
        color: white;
        padding: 0.75rem 1.75rem;
        border-radius: 12px;
        font-size: 0.7rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        box-shadow: 0 4px 16px rgba(20, 184, 166, 0.4), 0 2px 8px rgba(20, 184, 166, 0.2);
        z-index: 10;
        white-space: nowrap;
        border: 2px solid rgba(255, 255, 255, 0.3);
        backdrop-filter: blur(10px);
        transform: translateY(0);
        transition: all 0.3s ease;
    }
    
    .pricing-main-box.featured:hover::after {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(20, 184, 166, 0.5), 0 4px 12px rgba(20, 184, 166, 0.3);
    }
    
    @media (max-width: 767px) {
        .pricing-main-box {
            padding: 2rem;
        }
        
        .pricing-main-box.featured::after {
            top: -10px;
            right: 1rem;
            font-size: 0.65rem;
            padding: 0.6rem 1.25rem;
            border-radius: 10px;
        }
    }
    
    .pricing-features-list {
        list-style: none;
        padding: 0;
        margin: 2rem 0;
        flex-grow: 1;
        min-height: 0;
    }
    
    .pricing-features-list li {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.875rem 0;
        font-size: 1rem;
        color: #475569;
        border-bottom: 1px solid #F1F5F9;
        line-height: 1.5;
    }
    
    .pricing-features-list li span {
        flex: 1;
    }
    
    @media (max-width: 767px) {
        .pricing-features-list li {
            font-size: 0.9375rem;
            padding: 0.75rem 0;
        }
    }
    
    @media (max-width: 480px) {
        .pricing-features-list li {
            font-size: 0.875rem;
            padding: 0.625rem 0;
            gap: 0.625rem;
        }
    }

    .pricing-features-list li:last-child {
        border-bottom: none;
    }
    
    .pricing-feature-icon {
        color: #14B8A6;
        font-size: 0.875rem;
        width: 20px;
        flex-shrink: 0;
    }
    
    .pricing-price {
        font-size: 2.5rem;
        font-weight: 800;
        color: #14B8A6;
        margin-top: 0.5rem;
        text-align: center;
        line-height: 1.2;
    }
    
    .pricing-note {
        font-size: 0.75rem;
        color: #94A3B8;
        font-style: italic;
        text-align: center;
        margin-top: 0.75rem;
        line-height: 1.5;
    }
    
    @media (max-width: 767px) {
        .pricing-price {
            font-size: 2rem;
        }
        
        .pricing-note {
            font-size: 0.7rem;
        }
    }
    
    @media (max-width: 480px) {
        .pricing-price {
            font-size: 1.75rem;
        }
    }
    
    @media (max-width: 767px) {
        .pricing-container {
            padding: 0 1rem;
            gap: 2rem;
        }
        
        .pricing-top-row {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        
        .pricing-packages-row {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        
        .pricing-main-box {
            padding: 2rem;
        }
        
        .pricing-box-title {
            font-size: 1.5rem;
        }
        
        .pricing-price {
            font-size: 2rem;
        }
    }
    
    /* Site Footer */
    .site-footer {
        background: #0F172A;
        color: #FFFFFF;
        padding: 3rem 3vw;
        margin-top: 4rem;
    }
    
    .footer-wrapper {
        max-width: 1440px;
        margin: 0 auto;
        width: 100%;
    }
    
    .footer-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 2rem;
    }
    
    .footer-brand {
        display: flex;
        align-items: center;
        gap: 1rem;
    }
    
    .footer-logo {
        height: 40px;
        width: auto;
    }
    
    .footer-text {
        font-size: 1.25rem;
        font-weight: 700;
        color: #FFFFFF;
        margin: 0;
    }
    
    .footer-info {
        display: flex;
        align-items: center;
    }
    
    .footer-copyright {
        font-size: 0.9rem;
        color: #94A3B8;
        margin: 0;
    }
    
    @media (max-width: 768px) {
        .site-footer {
            padding: 2rem 1.5rem;
        }
        
        .footer-content {
            flex-direction: column;
            text-align: center;
            gap: 1.5rem;
        }
        
        .footer-brand {
            flex-direction: column;
            gap: 0.75rem;
        }
        
        .footer-text {
            font-size: 1.1rem;
        }
    }
    
    /* Modal Styles */
    .modal-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(15, 23, 42, 0.75);
        z-index: 1000;
        backdrop-filter: blur(8px);
        overflow-y: auto;
        padding: 2rem;
    }
    
    .modal-overlay.active {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .modal-content {
        background: #FFFFFF;
        border: 1px solid #E2E8F0;
        border-radius: 16px;
        max-width: 95%;
        width: 100%;
        max-width: 1440px;
        max-height: 95vh;
        overflow-y: auto;
        position: relative;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    }
    
    .modal-header {
        padding: 1.5rem 2rem;
        border-bottom: 1px solid #E2E8F0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: sticky;
        top: 0;
        background: #FFFFFF;
        z-index: 10;
    }
    
    .modal-title {
        font-size: 1.5rem;
        font-weight: 600;
        color: #0F172A;
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }
    
    .modal-close {
        background: transparent;
        border: 1px solid #E2E8F0;
        color: #64748B;
        width: 36px;
        height: 36px;
        border-radius: 8px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s ease;
    }
    
    .modal-close:hover {
        border-color: #14B8A6;
        color: #14B8A6;
        background: rgba(20, 184, 166, 0.1);
    }
    
    .modal-body {
        padding: 2rem;
    }
    
    .screenshot-container {
        position: relative;
        width: 100%;
        margin-bottom: 2rem;
        border-radius: 12px;
        overflow: hidden;
        border: 1px solid #E2E8F0;
        background: #F8FAFC;
    }
    
    .screenshot-image {
        width: 100%;
        height: auto;
        display: block;
        background: #F8FAFC;
        position: relative;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .screenshot-image:hover {
        opacity: 0.9;
        transform: scale(1.01);
        box-shadow: 0 8px 24px rgba(20, 184, 166, 0.2);
    }
    
    /* Fullscreen image modal */
    .fullscreen-image-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.95);
        z-index: 2000;
        cursor: pointer;
        align-items: center;
        justify-content: center;
        padding: 2rem;
    }
    
    .fullscreen-image-overlay.active {
        display: flex;
    }
    
    .fullscreen-image-container {
        position: relative;
        max-width: 95%;
        max-height: 95%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .fullscreen-image {
        max-width: 100%;
        max-height: 95vh;
        object-fit: contain;
        border-radius: 8px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    }
    
    .fullscreen-close {
        position: absolute;
        top: 20px;
        right: 20px;
        background: rgba(255, 255, 255, 0.9);
        border: 1px solid #E2E8F0;
        color: #0F172A;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        transition: all 0.3s ease;
        z-index: 10;
    }
    
    .fullscreen-close:hover {
        background: #FFFFFF;
        border-color: #14B8A6;
        color: #14B8A6;
        transform: scale(1.1);
    }
    
    .annotation-block {
        position: absolute;
        border: 2px solid;
        border-radius: 8px;
        padding: 12px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(8px);
        min-width: 200px;
        max-width: 300px;
        z-index: 20;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .annotation-block:hover {
        transform: scale(1.05);
        box-shadow: 0 8px 24px rgba(20, 184, 166, 0.3);
    }
    
    .annotation-block.block-1 {
        top: 5%;
        left: 2%;
        border-color: #14B8A6;
    }
    
    .annotation-block.block-2 {
        top: 25%;
        left: 2%;
        border-color: #10B981;
    }
    
    .annotation-block.block-3 {
        top: 50%;
        left: 2%;
        border-color: #F59E0B;
    }
    
    .annotation-block.block-4 {
        top: 5%;
        right: 2%;
        border-color: #8B5CF6;
    }
    
    .annotation-number {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        font-weight: bold;
        font-size: 0.75rem;
        margin-right: 8px;
    }
    
    .annotation-block.block-1 .annotation-number {
        background: #14B8A6;
        color: white;
    }
    
    .annotation-block.block-2 .annotation-number {
        background: #10B981;
        color: white;
    }
    
    .annotation-block.block-3 .annotation-number {
        background: #F59E0B;
        color: white;
    }
    
    .annotation-block.block-4 .annotation-number {
        background: #8B5CF6;
        color: white;
    }
    
    .annotation-title {
        font-weight: 600;
        font-size: 0.9rem;
        color: #0F172A;
        margin-bottom: 4px;
    }
    
    .annotation-desc {
        font-size: 0.8rem;
        color: #64748B;
        line-height: 1.4;
    }
    
    .blocks-description {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .description-card {
        background: #F8FAFC;
        border: 1px solid #E2E8F0;
        border-radius: 12px;
        padding: 1.5rem;
        transition: all 0.2s ease;
    }
    
    .description-card:hover {
        border-color: #14B8A6;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(20, 184, 166, 0.1);
    }
    
    .description-card-header {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 1rem;
        padding-bottom: 0.75rem;
        border-bottom: 1px solid #E2E8F0;
    }
    
    .description-icon {
        width: 40px;
        height: 40px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
    }
    
    .description-card.block-1 .description-icon {
        background: rgba(20, 184, 166, 0.1);
        color: #14B8A6;
    }
    
    .description-card.block-2 .description-icon {
        background: rgba(16, 185, 129, 0.1);
        color: #10B981;
    }
    
    .description-card.block-3 .description-icon {
        background: rgba(245, 158, 11, 0.1);
        color: #F59E0B;
    }
    
    .description-card.block-4 .description-icon {
        background: rgba(139, 92, 246, 0.1);
        color: #8B5CF6;
    }
    
    .description-title {
        font-weight: 600;
        font-size: 1.1rem;
        color: #0F172A;
    }
    
    .description-text {
        font-size: 0.9rem;
        color: #475569;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    
    .description-features {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .description-features li {
        font-size: 0.85rem;
        color: #64748B;
        padding: 0.5rem 0;
        padding-left: 1.5rem;
        position: relative;
    }
    
    .description-features li:before {
        content: '•';
        position: absolute;
        left: 0;
        color: #14B8A6;
        font-weight: bold;
        font-size: 1.2em;
    }
    
    @media (max-width: 1024px) {
        .hero-container {
            grid-template-columns: 1fr;
            gap: 3rem;
        }
        .modules-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }
    
    @media (max-width: 768px) {
        .hero-section {
            padding: 2rem 1.5rem;
            padding-top: 5rem;
        }
        .hero-container {
            gap: 2rem;
            display: flex;
            flex-direction: column;
        }
        .hero-title {
            font-size: 2rem !important;
            line-height: 1.2;
        }
        .hero-description {
            font-size: 1rem !important;
        }
        .hero-cta-primary,
        .hero-cta-secondary {
            padding: 0.875rem 1.5rem;
            font-size: 1rem;
            width: 100%;
            justify-content: center;
        }
        .hero-cta-buttons {
            flex-direction: column;
        }
        .hero-trust {
            flex-direction: column;
            gap: 1rem;
        }
        .modules-card {
            padding: 1.5rem;
        }
        .modules-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 0.75rem;
        }
        .module-item {
            padding: 0.75rem;
        }
        .module-icon {
            width: 32px;
            height: 32px;
            font-size: 0.9rem;
        }
        .module-name {
            font-size: 0.85rem;
        }
    }
    
    @media (max-width: 768px) {
        .modules-section, .benefits-section {
            padding: 3rem 1.5rem;
        }
        .header-bar {
            flex-direction: column;
            align-items: flex-start;
            gap: 1rem;
        }
        .grid-container {
            grid-template-columns: 1fr;
        }
        
        .benefits-grid {
            grid-template-columns: 1fr;
        }
        .card, .benefit-card {
            min-height: 200px;
        }
        .modal-content {
            max-width: 100%;
            margin: 1rem;
        }
        .modal-body {
            padding: 1rem;
        }
        .annotation-block {
            position: relative;
            top: auto;
            left: auto;
            right: auto;
            margin: 1rem;
            max-width: 100%;
        }
        .blocks-description {
            grid-template-columns: 1fr;
        }
        .text-2xl {
            font-size: 1.25rem !important;
        }
        .module-badge {
            font-size: 0.75rem;
            padding: 6px 12px;
        }
    }
