:root {
    --primary-color: rgb(252, 191, 0);
    --primary-dark: rgb(220, 165, 0);
    --primary-light: rgba(252, 191, 0, 0.1);
    --text-color: #1a1a2e;
    --text-light: #4a4a68;
    --text-muted: #6b6b8a;
    --bg-color: #ffffff;
    --bg-light: #f8f9fc;
    --bg-dark: #1a1a2e;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;
    --transition: all 0.3s ease;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-color);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: var(--bg-dark);
    color: white;
}

.btn-secondary:hover {
    background-color: #2a2a4e;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--text-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 9998;
    box-shadow: var(--shadow-sm);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo img {
    height: 50px;
    width: auto;
}

.main-nav {
    display: flex !important;
    align-items: center;
}

@media (max-width: 992px) {
    .main-nav {
        display: none !important;
    }
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 10px 16px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-color);
    border-radius: var(--radius-md);
}

.nav-link:hover {
    background-color: var(--primary-light);
    color: var(--text-color);
}

.nav-link.active {
    background-color: var(--primary-color);
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: var(--transition);
}

.nav-item:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 10px 16px;
    font-size: 0.9rem;
    color: var(--text-light);
    border-radius: var(--radius-md);
}

.dropdown-item:hover {
    background-color: var(--primary-light);
    color: var(--text-color);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-color);
    transition: var(--transition);
}

main {
    padding-top: 80px;
    position: relative;
    z-index: 1;
}

body.menu-open .main-nav {
    display: block !important;
}

body.menu-open main,
body.menu-open .hero-wow,
body.menu-open section {
    z-index: 1 !important;
}

.hero {
    position: relative;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-text h1 span {
    color: var(--primary-color);
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section {
    padding: 100px 0;
}

.section-light {
    background-color: var(--bg-light);
}

.section-dark {
    background-color: var(--bg-dark);
    color: white;
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
    color: white;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.section-dark .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.solution-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.solution-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: var(--primary-light);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary-color);
}

.solution-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.solution-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
}

.feature-card:hover {
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-color);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    color: var(--text-color);
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.stats-section {
    background: var(--bg-dark);
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-item {
    color: white;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.about-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.about-images img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.about-content h2 {
    margin-bottom: 24px;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 16px;
}

.team-slider {
    margin-top: 40px;
}

.team-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.team-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 16px;
    border: 4px solid var(--primary-color);
}

.team-card h4 {
    margin-bottom: 4px;
}

.team-card .role {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 100px 0;
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.cta-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition);
}

.cta-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.cta-card h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.cta-card p {
    color: var(--text-light);
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.differences-section {
    padding: 100px 0;
}

.differences-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.difference-card {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.difference-card:hover {
    background: white;
    box-shadow: var(--shadow-md);
}

.difference-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.difference-icon svg {
    width: 24px;
    height: 24px;
}

.difference-content h4 {
    margin-bottom: 8px;
}

.difference-content p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.news-section {
    background: var(--bg-light);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.news-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.news-image {
    height: 200px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-image svg {
    width: 48px;
    height: 48px;
    color: var(--text-muted);
}

.news-content {
    padding: 24px;
}

.news-date {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 8px;
}

.news-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.news-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.main-footer {
    background: var(--bg-dark);
    color: white;
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 16px;
    font-size: 0.95rem;
}

.footer-logo img {
    height: 40px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--text-color);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-links h4,
.footer-contact h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.footer-contact a {
    color: var(--primary-color);
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

.page-header {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #2a2a4e 100%);
    padding: 120px 0 80px;
    text-align: center;
    color: white;
}

.page-header h1 {
    color: white;
    margin-bottom: 16px;
}

.page-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.breadcrumb span {
    color: var(--primary-color);
}

.module-detail {
    padding: 80px 0;
}

.module-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
}

.module-main h2 {
    margin-bottom: 24px;
}

.module-main p {
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.8;
}

.module-features {
    margin-top: 40px;
}

.module-features h3 {
    margin-bottom: 24px;
}

.feature-list {
    display: grid;
    gap: 16px;
}

.feature-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
}

.feature-check {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-check svg {
    width: 16px;
    height: 16px;
}

.feature-content h4 {
    margin-bottom: 4px;
    font-size: 1rem;
}

.feature-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.feature-item.has-ai {
    border-left: 3px solid #8b5cf6;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, var(--bg-light) 100%);
}

.ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    vertical-align: middle;
    margin-left: 8px;
}

.ai-badge svg {
    width: 12px;
    height: 12px;
}

.module-section {
    margin-bottom: 40px;
}

.module-section h3 {
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-color);
}

.module-section:last-child {
    margin-bottom: 0;
}

.module-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-bottom: 24px;
}

.sidebar-card h4 {
    margin-bottom: 20px;
}

.sidebar-nav {
    list-style: none;
}

.sidebar-nav li {
    margin-bottom: 8px;
}

.sidebar-nav a {
    display: block;
    padding: 12px 16px;
    color: var(--text-light);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
    background: white;
    color: var(--text-color);
    box-shadow: var(--shadow-sm);
}

.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-form {
    background: var(--bg-light);
    border-radius: var(--radius-xl);
    padding: 40px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-color);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-info h2 {
    margin-bottom: 24px;
}

.contact-info p {
    color: var(--text-light);
    margin-bottom: 32px;
}

.contact-details {
    display: grid;
    gap: 24px;
}

.contact-item {
    display: flex;
    gap: 16px;
}

.contact-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--primary-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
}

.contact-item h4 {
    margin-bottom: 4px;
    font-size: 1rem;
}

.contact-item p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.95rem;
}

.contact-item a {
    color: var(--primary-dark);
}

.references-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.reference-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.reference-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.reference-logo {
    height: 60px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.reference-logo img {
    max-height: 100%;
    max-width: 150px;
}

.reference-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.reference-card .type {
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 12px;
}

.reference-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.screenshot-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 40px 0;
}

.screenshot-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.screenshot-item img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 1200px) {
    .solutions-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        order: -1;
    }
    
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-grid {
        grid-template-columns: 1fr;
    }
    
    .differences-grid {
        grid-template-columns: 1fr;
    }
    
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .module-content {
        grid-template-columns: 1fr;
    }
    
    .module-main {
        order: 1;
    }
    
    .module-sidebar {
        position: static;
        order: 2;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .references-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mobile-nav-header {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
        z-index: 9999999 !important;
        position: relative;
    }
    
    .main-header {
        z-index: 9999998 !important;
        background: white !important;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
        background: #ffffff;
        width: 100%;
    }
    
    .nav-item {
        background: #ffffff;
        width: 100%;
    }
    
    .nav-link {
        padding: 16px;
        border-bottom: 1px solid var(--border-color);
        display: block;
        color: #1a1a2e;
        font-size: 1.1em;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0 0 0 24px;
        display: none;
    }
    
    .nav-item.open .dropdown-menu {
        display: block;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .header-actions .btn {
        display: none;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    
    .section {
        padding: 60px 0;
    }
    
    .hero {
        min-height: auto;
        padding: 60px 0;
    }
    
    .hero-text h1 {
        font-size: 2.25rem;
    }
    
    .hero-slider {
        height: 300px;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .references-grid {
        grid-template-columns: 1fr;
    }
    
    .screenshot-gallery {
        grid-template-columns: 1fr;
    }
    
    .page-header {
        padding: 100px 0 60px;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-card {
        padding: 24px;
    }
}

/* New Hero Section */
.hero-new {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #2d2d4a 100%);
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.floating-card svg {
    stroke: var(--primary-color);
}

.floating-card.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-card.card-2 {
    top: 30%;
    right: 15%;
    animation-delay: 1s;
}

.floating-card.card-3 {
    bottom: 35%;
    left: 15%;
    animation-delay: 2s;
}

.floating-card.card-4 {
    bottom: 25%;
    right: 10%;
    animation-delay: 3s;
}

.floating-card.card-5 {
    top: 50%;
    left: 5%;
    animation-delay: 4s;
}

.floating-card.card-6 {
    bottom: 15%;
    left: 15%;
    animation-delay: 5s;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

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

.pulse-circles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.pulse-circle {
    position: absolute;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    opacity: 0;
    animation: pulse-ring 4s ease-out infinite;
}

.pulse-circle.pulse-1 {
    width: 200px;
    height: 200px;
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.pulse-circle.pulse-2 {
    width: 400px;
    height: 400px;
    top: -200px;
    left: -200px;
    animation-delay: 1s;
}

.pulse-circle.pulse-3 {
    width: 600px;
    height: 600px;
    top: -300px;
    left: -300px;
    animation-delay: 2s;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.5);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.hero-center {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    background: rgba(252, 191, 0, 0.2);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    border: 1px solid rgba(252, 191, 0, 0.3);
}

.hero-new h1 {
    font-size: 5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
    letter-spacing: -2px;
    background: linear-gradient(135deg, #ffffff 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-new .hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Solution Coming Soon */
.solution-card.solution-coming {
    opacity: 0.7;
    cursor: default;
    position: relative;
}

.solution-card.solution-coming:hover {
    transform: none;
    box-shadow: var(--shadow-md);
}

.coming-badge {
    display: inline-block;
    background: var(--primary-color);
    color: var(--text-color);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    margin-top: 12px;
}

/* Integrations Section */
.integrations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.integration-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.integration-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.integration-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: var(--radius-lg);
}

.integration-logo svg {
    stroke: var(--primary-color);
}

.integration-card h4 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.integration-card p {
    color: var(--text-muted);
    font-size: 14px;
}

/* Footer text logo */
.footer-logo-text {
    display: inline-block;
    margin-bottom: 16px;
}

.footer-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    letter-spacing: -1px;
}

/* Responsive for new elements */
@media (max-width: 1024px) {
    .floating-card.card-1,
    .floating-card.card-5 {
        display: none;
    }
    
    .integrations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-new h1 {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .floating-elements {
        display: none;
    }
    
    .integrations-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .integration-card {
        padding: 24px 16px;
    }
}

@media (max-width: 480px) {
    .hero-new h1 {
        font-size: 2.5rem;
    }
    
    .integrations-grid {
        grid-template-columns: 1fr;
    }
}

/* Company Info Box */
.company-info-box {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #2d2d4a 100%);
    border-radius: var(--radius-xl);
    padding: 60px 40px;
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.company-info-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(252, 191, 0, 0.2);
    border-radius: var(--radius-lg);
}

.company-info-icon svg {
    stroke: var(--primary-color);
}

.company-info-box h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 16px;
}

.company-address {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
}

.company-ico {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

/* Support Box */
.support-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid var(--border-color);
}

.support-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    border-radius: 50%;
}

.support-icon svg {
    stroke: var(--bg-dark);
}

.support-box h2 {
    margin-bottom: 12px;
    font-size: 1.75rem;
}

.support-hours {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 4px;
}

.support-note {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.support-contacts {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.support-phone {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--bg-dark);
    text-decoration: none;
    transition: color 0.2s ease;
}

.support-phone:hover {
    color: var(--primary-color);
}

.support-email {
    font-size: 1rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.support-email:hover {
    text-decoration: underline;
}

/* Contact Page Layout */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
    align-items: start;
}

.contact-main {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.company-card-large {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #2d2d4a 100%);
    border-radius: var(--radius-xl);
    padding: 32px;
    color: white;
}

.company-card-header {
    display: flex;
    align-items: center;
    gap: 24px;
}

.company-logo-circle {
    width: 80px;
    height: 80px;
    min-width: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-logo-circle svg {
    stroke: var(--bg-dark);
}

.company-card-info h2 {
    color: white;
    margin-bottom: 8px;
    font-size: 1.75rem;
}

.company-card-info p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.95rem;
}

.company-ico-badge {
    display: inline-block;
    margin-top: 12px;
    padding: 6px 12px;
    background: rgba(252, 191, 0, 0.2);
    border: 1px solid rgba(252, 191, 0, 0.4);
    border-radius: var(--radius-full);
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 600;
}

.team-section {
    background: white;
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-md);
}

.team-title {
    font-size: 1.25rem;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--bg-light);
}

.team-member {
    display: flex;
    gap: 20px;
    padding: 20px;
    border-radius: var(--radius-lg);
    transition: background 0.2s ease;
}

.team-member:hover {
    background: var(--bg-light);
}

.team-member-primary {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border: 1px solid rgba(252, 191, 0, 0.3);
    margin-bottom: 16px;
}

.team-member-primary:hover {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.member-avatar {
    width: 64px;
    height: 64px;
    min-width: 64px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--bg-dark);
}

.member-avatar-sm {
    width: 52px;
    height: 52px;
    min-width: 52px;
    font-size: 1rem;
    background: var(--bg-light);
    color: var(--text-muted);
}

.member-info h4 {
    margin-bottom: 4px;
    font-size: 1.1rem;
}

.member-role {
    display: inline-block;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.member-contacts {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.member-contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.member-contact:hover {
    color: var(--primary-color);
}

.member-contact svg {
    stroke: var(--primary-color);
}

.team-members-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

/* Contact Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 100px;
}

.support-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, #e6ac00 100%);
    border-radius: var(--radius-xl);
    padding: 28px;
    text-align: center;
    color: var(--bg-dark);
}

.support-card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.support-card-icon svg {
    stroke: var(--bg-dark);
}

.support-card h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.support-card-hours {
    font-weight: 600;
    margin-bottom: 4px;
}

.support-card-note {
    font-size: 13px;
    opacity: 0.8;
    margin-bottom: 16px;
}

.support-card-phone {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bg-dark);
    text-decoration: none;
    margin-bottom: 8px;
}

.support-card-phone:hover {
    text-decoration: underline;
}

.support-card-email {
    display: block;
    font-size: 14px;
    color: var(--bg-dark);
    opacity: 0.9;
    text-decoration: none;
}

.support-card-email:hover {
    text-decoration: underline;
}

.quick-action-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.quick-action-card h4 {
    margin-bottom: 8px;
    font-size: 1rem;
}

.quick-action-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

@media (max-width: 1024px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .contact-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .company-card-header {
        flex-direction: column;
        text-align: center;
    }
    
    .team-members-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-sidebar {
        grid-template-columns: 1fr;
    }
    
    .team-member {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .member-contacts {
        align-items: center;
    }
}

/* Pricing Form */
.pricing-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    align-items: start;
}

.pricing-form-info {
    position: sticky;
    top: 100px;
}

.pricing-form-info h3 {
    margin-bottom: 24px;
}

.info-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.info-step {
    display: flex;
    gap: 16px;
}

.step-number {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: var(--primary-color);
    color: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.step-content h4 {
    margin-bottom: 4px;
    font-size: 1rem;
}

.step-content p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

.integration-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

.integration-link {
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}

.integration-link:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.integration-link:hover .integration-logo {
    background: var(--primary-color);
}

.integration-link:hover .integration-logo svg {
    stroke: var(--bg-dark);
}

.integration-arrow {
    position: absolute;
    top: 16px;
    right: 16px;
    opacity: 0;
    transform: translate(-4px, 4px);
    transition: all 0.3s ease;
}

.integration-arrow svg {
    stroke: var(--primary-color);
}

.integration-link:hover .integration-arrow {
    opacity: 1;
    transform: translate(0, 0);
}

.contact-box {
    background: var(--bg-light);
    padding: 24px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.contact-box h4 {
    margin-bottom: 8px;
}

.contact-box > p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.contact-person {
    font-size: 14px;
    line-height: 1.8;
}

.contact-person a {
    color: var(--primary-color);
}

.pricing-form {
    background: white;
    padding: 32px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.form-section {
    margin-bottom: 32px;
}

.form-section h3 {
    margin-bottom: 8px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-color);
}

.form-section-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.module-input {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    border: 1px solid var(--border-color);
    transition: border-color 0.2s ease;
}

.module-input:hover {
    border-color: var(--primary-color);
}

.module-input label {
    flex: 1;
}

.module-input label strong {
    display: block;
    margin-bottom: 2px;
}

.module-input label span {
    font-size: 13px;
    color: var(--text-muted);
}

.module-input input {
    width: 100px;
    text-align: center;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: 600;
}

.module-input input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(252, 191, 0, 0.2);
}

.checkbox-group {
    padding: 20px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-weight: 500;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 24px;
    height: 24px;
    min-width: 24px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '✓';
    color: var(--bg-dark);
    font-weight: 700;
}

.form-submit {
    text-align: center;
}

.form-note {
    margin-top: 12px;
    font-size: 14px;
    color: var(--text-muted);
}

.success-message {
    text-align: center;
    padding: 60px 40px;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    max-width: 600px;
    margin: 0 auto;
}

.success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    background: #e8f5e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-icon svg {
    stroke: #4caf50;
}

.success-message h2 {
    color: #4caf50;
    margin-bottom: 16px;
}

.success-message p {
    margin-bottom: 8px;
}

@media (max-width: 1024px) {
    .pricing-form-wrapper {
        grid-template-columns: 1fr;
    }
    
    .pricing-form-info {
        position: static;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .module-input {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .module-input input {
        width: 100%;
    }
}

/* Premium Hero Section */
.hero-premium {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--bg-dark);
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(252, 191, 0, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(252, 191, 0, 0.1) 0%, transparent 50%),
        linear-gradient(180deg, var(--bg-dark) 0%, #1e1e3a 100%);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.3;
    animation: particle-float 15s infinite ease-in-out;
}

.particle-1 { top: 20%; left: 10%; animation-delay: 0s; }
.particle-2 { top: 60%; left: 20%; animation-delay: 2s; }
.particle-3 { top: 30%; left: 70%; animation-delay: 4s; }
.particle-4 { top: 70%; left: 80%; animation-delay: 6s; }
.particle-5 { top: 40%; left: 50%; animation-delay: 8s; }
.particle-6 { top: 80%; left: 30%; animation-delay: 10s; }

@keyframes particle-float {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
    25% { transform: translate(30px, -50px) scale(1.5); opacity: 0.6; }
    50% { transform: translate(-20px, -100px) scale(1); opacity: 0.3; }
    75% { transform: translate(40px, -50px) scale(1.2); opacity: 0.5; }
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-content-left {
    animation: fadeInLeft 1s ease-out;
}

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

.hero-badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(252, 191, 0, 0.1);
    border: 1px solid rgba(252, 191, 0, 0.3);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
}

.hero-title-premium {
    margin-bottom: 24px;
}

.title-line {
    display: block;
    font-size: 1.25rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.title-highlight {
    display: block;
    font-size: 4.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -2px;
}

.hero-desc-premium {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 480px;
}

.hero-features-mini {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

.mini-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.mini-feature svg {
    stroke: var(--primary-color);
}

.hero-buttons-premium {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-glow {
    position: relative;
    overflow: hidden;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: btn-shine 3s infinite;
}

@keyframes btn-shine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.btn-glow svg {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-glow:hover svg {
    transform: translateX(4px);
}

/* Screenshot Visual */
.hero-visual-right {
    position: relative;
    animation: fadeInRight 1s ease-out 0.3s both;
}

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

.screenshot-wrapper {
    position: relative;
    perspective: 1000px;
}

.screenshot-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(252, 191, 0, 0.3) 0%, transparent 70%);
    filter: blur(60px);
    animation: glow-pulse 4s infinite ease-in-out;
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

.screenshot-frame {
    position: relative;
    background: #1a1a2e;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    animation: float-screen 6s infinite ease-in-out;
}

@keyframes float-screen {
    0%, 100% { transform: translateY(0) rotateX(2deg) rotateY(-2deg); }
    50% { transform: translateY(-15px) rotateX(0deg) rotateY(0deg); }
}

.frame-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.frame-dots {
    display: flex;
    gap: 6px;
}

.frame-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.frame-dots span:first-child { background: #ff5f56; }
.frame-dots span:nth-child(2) { background: #ffbd2e; }
.frame-dots span:last-child { background: #27ca40; }

.frame-title {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.frame-content {
    position: relative;
    overflow: hidden;
}

.screenshot-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Floating Stats */
.floating-stat {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 16px;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: float-stat 5s infinite ease-in-out;
}

.floating-stat.stat-1 {
    top: 10%;
    right: -20px;
    animation-delay: 0s;
}

.floating-stat.stat-2 {
    bottom: 30%;
    left: -30px;
    animation-delay: 1.5s;
}

.floating-stat.stat-3 {
    bottom: 10%;
    right: 10%;
    animation-delay: 3s;
}

@keyframes float-stat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.stat-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: var(--radius-md);
}

.stat-icon svg {
    stroke: var(--primary-color);
}

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

.stat-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-color);
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--primary-color), transparent);
    animation: scroll-bounce 2s infinite;
}

@keyframes scroll-bounce {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.5); opacity: 0.5; }
}

/* Responsive Premium Hero */
@media (max-width: 1024px) {
    .hero-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-visual-right {
        order: -1;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .floating-stat.stat-1 { right: 0; }
    .floating-stat.stat-2 { left: 0; }
    
    .title-highlight {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .hero-premium {
        padding: 100px 0 60px;
    }
    
    .title-highlight {
        font-size: 2.5rem;
    }
    
    .hero-features-mini {
        flex-direction: column;
        gap: 12px;
    }
    
    .floating-stat {
        display: none;
    }
    
    .hero-scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .title-highlight {
        font-size: 2rem;
    }
    
    .hero-buttons-premium {
        flex-direction: column;
    }
    
    .hero-buttons-premium .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   HERO WOW SECTION - Animations & Styles
   ======================================== */

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

@keyframes float1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-40px, 20px) scale(1.15); }
    66% { transform: translate(30px, -30px) scale(0.95); }
}

@keyframes float3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, -40px) scale(1.1); }
}

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

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

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

@keyframes scrollDown {
    0%, 100% { opacity: 1; top: 6px; }
    50% { opacity: 0.3; top: 20px; }
}

.hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(102,126,234,0.5);
}

.hero-wow {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    background: #0a0a0f;
    overflow: hidden;
    z-index: 1;
}

.hero-wow .floating-icons {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

/* Hero WOW Responsive */
@media (max-width: 1200px) {
    .hero-wow .floating-icons > div {
        transform: scale(0.85);
    }
}

@media (max-width: 992px) {
    .hero-wow .floating-icons {
        display: none;
    }
    
    .hero-wow .hero-glow {
        opacity: 0.5;
    }
}

@media (max-width: 768px) {
    .hero-wow h1 {
        font-size: 2.5em !important;
    }
    
    .hero-wow p {
        font-size: 1.1em !important;
        padding: 0 16px;
    }
    
    .hero-wow .container {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .hero-wow h1 {
        font-size: 2em !important;
    }
    
    .hero-wow .hero-btn-primary,
    .hero-wow a[href*="nacenenie"] {
        width: 100%;
        justify-content: center;
        padding: 16px 24px !important;
    }
}

/* ========================================
   ABOUT CARDIS SECTION - Responsive
   ======================================== */

.about-cardis {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-features {
    position: relative;
    z-index: 1;
}

@media (max-width: 992px) {
    .about-cardis {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-content h2 {
        font-size: 1.8em !important;
    }
}

@media (max-width: 768px) {
    .section-about-cardis {
        padding: 60px 0 !important;
    }
    
    .about-content h2 {
        font-size: 1.5em !important;
    }
    
    .about-content p {
        font-size: 1em !important;
    }
    
    .about-content > div:last-child {
        gap: 16px !important;
    }
    
    .about-content > div:last-child > div p:first-child {
        font-size: 1.8em !important;
    }
    
    .about-features > div {
        gap: 16px !important;
    }
    
    .about-features > div > div {
        padding: 16px !important;
        flex-direction: column;
        text-align: center;
    }
    
    .about-features > div > div > div:first-child {
        align-self: center;
    }
}

/* ========================================
   MODULE DETAIL - Responsive
   ======================================== */

.module-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
}

@media (max-width: 992px) {
    .module-content {
        grid-template-columns: 1fr;
    }
    
    .module-main {
        order: 1;
    }
    
    .module-sidebar {
        order: 2;
    }
}

/* Historia & Technicka podpora - Mobile */
@media (max-width: 768px) {
    /* Timeline */
    .timeline {
        padding-left: 24px !important;
    }
    
    .timeline-item > div:first-child {
        left: -24px !important;
        width: 20px !important;
        height: 20px !important;
    }
    
    .timeline > div:first-child {
        left: 6px !important;
    }
    
    /* Stats grid */
    .stats-section > div {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    /* Story intro box */
    .story-intro {
        padding: 24px !important;
    }
    
    .story-intro p {
        font-size: 1.1em !important;
    }
    
    /* Support boxes with flex */
    .support-warning > div,
    .support-training > div,
    .support-channel > div,
    .support-hours-box > div {
        flex-direction: column !important;
        text-align: center;
    }
    
    .support-warning > div > div:first-child,
    .support-training > div > div:first-child,
    .support-channel > div > div:first-child,
    .support-hours-box > div > div:first-child {
        align-self: center;
    }
    
    /* Support channels grid */
    .support-channels {
        gap: 16px !important;
    }
    
    /* Support tips grid */
    .support-tips > div:last-child {
        grid-template-columns: 1fr !important;
    }
}

/* ========================================
   STATS SECTION - Responsive
   ======================================== */

.stats-section {
    background: #1a1a2e;
    color: white;
    padding: 48px;
    border-radius: 20px;
}

.stats-section > div {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

@media (max-width: 768px) {
    .stats-section {
        padding: 32px 24px;
    }
    
    .stats-section > div {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .stats-section > div {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   TIMELINE - Responsive
   ======================================== */

.timeline {
    position: relative;
    padding-left: 40px;
}

@media (max-width: 768px) {
    .timeline {
        padding-left: 24px;
    }
    
    .timeline-item > div:first-child {
        left: -24px !important;
        width: 20px !important;
        height: 20px !important;
    }
}

/* ========================================
   IMPLEMENTATION STEPS - Responsive
   ======================================== */

.implementation-step > div {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

@media (max-width: 768px) {
    .implementation-step > div {
        flex-direction: column;
        gap: 16px;
    }
    
    .implementation-step > div > div:first-child {
        width: 48px !important;
        height: 48px !important;
        font-size: 1.2em !important;
    }
}

/* ========================================
   FORMS - Responsive
   ======================================== */

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   PRICE BOX - Responsive
   ======================================== */

.price-box {
    padding: 40px;
    border-radius: 16px;
    text-align: center;
}

@media (max-width: 768px) {
    .price-box {
        padding: 24px;
    }
    
    .price-box p:nth-child(2) {
        font-size: 2.5em !important;
    }
}

/* ========================================
   FEATURES GRID - Responsive
   ======================================== */

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   SOLUTIONS GRID - Responsive
   ======================================== */

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

@media (max-width: 480px) {
    .solutions-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   CTA BOX - Responsive
   ======================================== */

.cta-box {
    padding: 40px;
    border-radius: 16px;
    text-align: center;
}

@media (max-width: 768px) {
    .cta-box {
        padding: 32px 24px;
    }
    
    .cta-box h2 {
        font-size: 1.5em;
    }
}

/* ========================================
   VIDEO SECTION - Responsive
   ======================================== */

.video-section iframe {
    border-radius: 16px;
}

@media (max-width: 768px) {
    .video-section {
        margin: 0 -16px;
    }
    
    .video-section > div {
        border-radius: 0 !important;
    }
}
