/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ff6b35;
    --primary-dark: #e55a2b;
    --secondary-color: #f7931e;
    --text-light: #ffffff;
    --text-dark: #1a1a1a;
    --bg-dark: #1a1a1a;
    --bg-darker: #0f0f0f;
    --bg-card: #1a1a1a;
    --bg-card-light: #2a2a2a;
    --border-color: #444;
    --success-color: #4caf50;
    --error-color: #f44336;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(247, 147, 30, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.navbar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.nav-brand {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    position: absolute;
    left: 0;
}

.brand-name {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    opacity: 0.8;
}

.brand-main {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    letter-spacing: 2px;
    text-shadow: 0 0 8px rgba(255, 107, 53, 0.5), 0 0 15px rgba(255, 107, 53, 0.3), 0 0 25px rgba(255, 107, 53, 0.2);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
    position: absolute;
    right: 0;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
    position: relative;
}

.hero-title {
    margin-bottom: 2rem;
}

.hero-subtitle {
    display: block;
    font-size: 1.5rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.hero-main {
    display: block;
    font-size: 4rem;
    font-weight: bold;
    color: var(--primary-color);
    letter-spacing: 4px;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 8px rgba(255, 107, 53, 0.5), 0 0 15px rgba(255, 107, 53, 0.3), 0 0 25px rgba(255, 107, 53, 0.2), 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-tagline {
    display: block;
    font-size: 1.2rem;
    color: var(--text-light);
    opacity: 0.8;
    font-style: italic;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.8;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5), 0 0 20px rgba(255, 255, 255, 0.3), 0 0 30px rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.hero-description:first-of-type {
    margin-bottom: 1rem;
}

.hero-description:last-child {
    margin-bottom: 4rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Buttons */
.btn {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    text-align: center;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-light);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--text-light);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Section Styles */
section {
    padding: 4rem 0;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 8px rgba(255, 107, 53, 0.5), 0 0 15px rgba(255, 107, 53, 0.3), 0 0 25px rgba(255, 107, 53, 0.2);
}

.page-header {
    padding: 3rem 0;
    text-align: center;
    background: var(--bg-darker);
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 15, 0.4);
    z-index: 0;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-shadow: 0 0 8px rgba(255, 107, 53, 0.5), 0 0 15px rgba(255, 107, 53, 0.3), 0 0 25px rgba(255, 107, 53, 0.2);
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Problem & Solution */
.problem-solution {
    background: var(--bg-darker);
    position: relative;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed;
}

.problem-solution::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 15, 0.4);
    z-index: 0;
}

.problem-solution .container {
    position: relative;
    z-index: 1;
}

.ps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.ps-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.ps-card h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    text-shadow: 0 0 8px rgba(255, 107, 53, 0.5), 0 0 15px rgba(255, 107, 53, 0.3), 0 0 25px rgba(255, 107, 53, 0.2);
    background: rgba(0, 0, 0, 0.3);
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    display: inline-block;
    backdrop-filter: blur(5px);
}

.ps-card p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.solution-list {
    list-style: none;
    margin-top: 1rem;
}

.solution-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.solution-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Advantages */
.advantages {
    background: var(--bg-dark);
    position: relative;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-attachment: scroll;
}

.advantages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
    pointer-events: none;
}

.advantages .container {
    position: relative;
    z-index: 1;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.advantage-card {
    background: rgba(15, 15, 15, 0.6);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
    border: 1px solid var(--border-color);
}

.advantage-card:hover {
    border-color: var(--primary-color);
}

.advantage-icon {
    font-size: 3rem;
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 1rem;
}

.advantage-card h3 {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.advantage-card p {
    opacity: 0.8;
    line-height: 1.6;
}

/* Business Model */
.business-model {
    background: var(--bg-darker);
    position: relative;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed;
}

.business-model::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 15, 0.4);
    z-index: 0;
}

.business-model .container {
    position: relative;
    z-index: 1;
}

.model-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.model-item {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 10px;
    border-top: 4px solid var(--primary-color);
}

.model-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    text-shadow: 0 0 8px rgba(255, 107, 53, 0.5), 0 0 15px rgba(255, 107, 53, 0.3), 0 0 25px rgba(255, 107, 53, 0.2);
    background: rgba(0, 0, 0, 0.3);
    padding: 0.6rem 1rem;
    border-radius: 8px;
    display: inline-block;
    backdrop-filter: blur(5px);
}

.model-item ul {
    list-style: none;
}

.model-item li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    opacity: 0.9;
}

.model-item li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
    line-height: 1;
}

/* Products */
.products-section {
    background: var(--bg-dark);
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.products-section .container {
    position: relative;
    z-index: 1;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.product-card {
    background: var(--bg-card);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    height: 100%;
    min-height: 550px;
}

.product-card:hover {
    border-color: var(--primary-color);
}

.product-image {
    height: 200px;
    background: linear-gradient(135deg, var(--bg-card-light) 0%, var(--bg-card) 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-image::before {
    content: '🥓';
    font-size: 4rem;
    opacity: 0.3;
    position: absolute;
    z-index: 0;
    display: none; /* Скрываем placeholder, когда есть изображение */
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.product-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-height: 0;
    position: relative;
}

.product-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    text-shadow: 0 0 8px rgba(255, 107, 53, 0.5), 0 0 15px rgba(255, 107, 53, 0.3), 0 0 25px rgba(255, 107, 53, 0.2);
    background: rgba(0, 0, 0, 0.3);
    padding: 0.6rem 1rem;
    border-radius: 8px;
    display: inline-block;
    backdrop-filter: blur(5px);
    flex-shrink: 0;
    order: 0;
}

.product-description {
    opacity: 0.9;
    margin-bottom: 1rem;
    margin-top: 1rem;
    line-height: 1.6;
    flex-shrink: 1;
    order: 2;
    background: rgba(0, 0, 0, 0.15);
    padding: 1rem;
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

.product-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    margin-top: 0;
    padding: 1rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    flex-shrink: 0;
    flex-grow: 0;
    order: 1;
}

.product-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.product-weight {
    opacity: 0.7;
}

.product-composition {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.5;
    flex-shrink: 0;
    margin-top: 0;
    margin-bottom: 0;
    order: 3;
    font-style: italic;
}

.product-composition strong {
    color: var(--primary-color);
    text-shadow: 0 0 4px rgba(255, 107, 53, 0.3), 0 0 8px rgba(255, 107, 53, 0.2);
    font-size: 1.1rem;
    font-weight: bold;
    font-style: normal;
}

/* Comparison Table */
.comparison-section {
    background: var(--bg-darker);
    padding: 4rem 0;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.comparison-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 15, 0.4);
    z-index: 0;
}

.comparison-section .container {
    position: relative;
    z-index: 1;
}

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
    border-radius: 10px;
    overflow: hidden;
}

.comparison-table th {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.comparison-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table tr:hover {
    background: var(--bg-card-light);
}

.comparison-table td.highlight {
    color: var(--primary-color);
    font-weight: bold;
}

/* Team */
.team-section {
    background: var(--bg-dark);
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 4rem 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.team-section .container {
    position: relative;
    z-index: 1;
    width: 100%;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-card {
    background: var(--bg-card);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: transform 0.3s;
}

.team-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.team-photo {
    height: 250px;
    background: var(--bg-card-light);
    position: relative;
    overflow: hidden;
}

.team-photo img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.3s ease;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.team-card:hover .team-photo img {
    transform: scale(1.1);
}

.team-photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-card-light) 0%, var(--bg-card) 100%);
}

.team-photo-placeholder span {
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.5;
    font-weight: bold;
}

.team-info {
    padding: 1.5rem;
}

.team-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    text-shadow: 0 0 4px rgba(255, 107, 53, 0.25), 0 0 8px rgba(255, 107, 53, 0.15), 0 0 12px rgba(255, 107, 53, 0.1);
    background: rgba(0, 0, 0, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    display: inline-block;
    backdrop-filter: blur(5px);
}

.team-role {
    color: var(--text-light);
    opacity: 0.7;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.4), 0 0 10px rgba(255, 255, 255, 0.3), 0 0 15px rgba(255, 255, 255, 0.2);
}

.team-description {
    opacity: 0.8;
    line-height: 1.6;
}

/* Target Audience */
.target-audience {
    background: var(--bg-darker);
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.target-audience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 15, 0.4);
    z-index: 0;
}

.target-audience .container {
    position: relative;
    z-index: 1;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    gap: 2rem;
    align-items: stretch;
}

.audience-item {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 280px;
    box-sizing: border-box;
    width: 100%;
    min-width: 0;
    overflow: hidden;
}

.audience-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    text-shadow: 0 0 8px rgba(255, 107, 53, 0.5), 0 0 15px rgba(255, 107, 53, 0.3), 0 0 25px rgba(255, 107, 53, 0.2);
    background: rgba(0, 0, 0, 0.3);
    padding: 0.6rem 1rem;
    border-radius: 8px;
    display: block;
    backdrop-filter: blur(5px);
    min-height: 60px;
    flex-shrink: 0;
    width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
}

.audience-item p {
    opacity: 0.9;
    line-height: 1.8;
    flex-grow: 1;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Roadmap */
.roadmap-section {
    background: var(--bg-dark);
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 0;
}

.roadmap-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

.roadmap-section .container {
    position: relative;
    z-index: 1;
}

.roadmap-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.roadmap-stage {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--primary-color);
}

.stage-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.stage-header h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    text-shadow: 0 0 8px rgba(255, 107, 53, 0.5), 0 0 15px rgba(255, 107, 53, 0.3), 0 0 25px rgba(255, 107, 53, 0.2);
    background: rgba(0, 0, 0, 0.3);
    padding: 0.7rem 1.2rem;
    border-radius: 8px;
    display: inline-block;
    backdrop-filter: blur(5px);
}

.stage-date {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: bold;
}

.stage-items {
    display: grid;
    gap: 1rem;
}

.stage-item {
    padding: 1rem;
    background: var(--bg-card-light);
    border-radius: 5px;
}

.stage-item strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.stage-item p {
    opacity: 0.8;
}

/* Contact */
.contact-section {
    background: var(--bg-dark);
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
    pointer-events: none;
}

.contact-section .container {
    position: relative;
    z-index: 1;
}

.qr-code-wrapper {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    max-width: 600px;
    margin: 0 auto;
}

.qr-code-wrapper h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 2rem;
    text-align: center;
}

.qr-code-placeholder {
    text-align: center;
    padding: 2rem;
    background: transparent;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.qr-code {
    width: 250px;
    height: 250px;
    margin: 0 auto 2rem;
    background: var(--text-light);
    border-radius: 15px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.qr-code:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.qr-code-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    padding: 10px;
    border-radius: 15px;
    transition: transform 0.3s ease;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    background: var(--text-light);
    position: relative;
    z-index: 2;
}

.qr-code:hover .qr-code-image {
    transform: scale(1.05);
}

.qr-code-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.qr-pattern {
    width: 90%;
    height: 90%;
    background: 
        repeating-linear-gradient(0deg, #000 0px, #000 2px, transparent 2px, transparent 8px),
        repeating-linear-gradient(90deg, #000 0px, #000 2px, transparent 2px, transparent 8px);
    border-radius: 5px;
}

.qr-telegram-icon {
    position: absolute;
    font-size: 4rem;
    color: var(--primary-color);
    background: var(--text-light);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.qr-text {
    color: var(--text-light);
    font-size: 1.1rem;
    margin: 0.5rem 0;
    opacity: 0.9;
}

.qr-link {
    margin-top: 1rem;
}

.qr-link a {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--primary-color);
    color: var(--text-light);
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.qr-link a:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    text-decoration: none;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 10px;
}

.contact-form-wrapper h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    background: var(--bg-card-light);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    color: var(--text-light);
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 5px;
    display: none;
}

.form-message.success {
    background: var(--success-color);
    color: var(--text-light);
    display: block;
}

.form-message.error {
    background: var(--error-color);
    color: var(--text-light);
    display: block;
}

/* Strategy */
.strategy-section {
    background: var(--bg-darker);
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.strategy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 15, 0.4);
    z-index: 0;
}

.strategy-section .container {
    position: relative;
    z-index: 1;
}

.strategy-stages {
    display: grid;
    gap: 2rem;
}

.strategy-stage {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.strategy-stage h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    text-shadow: 0 0 8px rgba(255, 107, 53, 0.5), 0 0 15px rgba(255, 107, 53, 0.3), 0 0 25px rgba(255, 107, 53, 0.2);
    background: rgba(0, 0, 0, 0.3);
    padding: 0.7rem 1.2rem;
    border-radius: 8px;
    display: inline-block;
    backdrop-filter: blur(5px);
}

.strategy-stage ul {
    list-style: none;
}

.strategy-stage li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    opacity: 0.9;
}

.strategy-stage li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Blog */
.blog-section {
    background: var(--bg-dark);
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.blog-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
    pointer-events: none;
}

.blog-section .container {
    position: relative;
    z-index: 1;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: var(--bg-card);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: transform 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.blog-image {
    height: 200px;
    background: linear-gradient(135deg, var(--bg-card-light) 0%, var(--bg-card) 100%);
    position: relative;
    overflow: hidden;
}

.blog-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.3s ease;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 1.6rem;
    font-weight: bold;
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h2 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.blog-meta {
    opacity: 0.7;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.blog-excerpt {
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Article Details */
.article-details {
    background: var(--bg-darker);
    padding: 4rem 0;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.article-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 15, 0.4);
    z-index: 0;
}

.article-details .container {
    position: relative;
    z-index: 1;
}

.detailed-article {
    background: rgba(26, 26, 26, 0.7);
    padding: 3rem;
    border-radius: 10px;
    margin-bottom: 3rem;
    border: 1px solid var(--border-color);
}

.detailed-article h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-shadow: 0 0 8px rgba(255, 107, 53, 0.5), 0 0 15px rgba(255, 107, 53, 0.3), 0 0 25px rgba(255, 107, 53, 0.2);
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    display: inline-block;
    backdrop-filter: blur(5px);
}

.detailed-article h3 {
    color: var(--primary-color);
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
}

.article-content {
    line-height: 1.8;
}

.article-content p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.additives-list {
    display: grid;
    gap: 1rem;
    margin: 2rem 0;
}

.additive-item {
    background: rgba(26, 26, 26, 0.6);
    padding: 1.5rem;
    border-radius: 5px;
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--primary-color);
}

.additive-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    text-shadow: 0 0 8px rgba(255, 107, 53, 0.5), 0 0 15px rgba(255, 107, 53, 0.3), 0 0 25px rgba(255, 107, 53, 0.2);
    background: rgba(0, 0, 0, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    display: inline-block;
    backdrop-filter: blur(5px);
}

.additive-item p {
    opacity: 0.9;
    margin: 0;
}

.article-conclusion {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(26, 26, 26, 0.6);
    border-radius: 5px;
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--primary-color);
    font-weight: 600;
    text-shadow: 0 0 4px rgba(255, 255, 255, 0.3), 0 0 8px rgba(255, 255, 255, 0.2);
}

.alternatives-table-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
}

.alternatives-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(26, 26, 26, 0.6);
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.alternatives-table th {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.alternatives-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    opacity: 0.9;
}

.alternatives-table tr:hover {
    background: var(--bg-card);
}

.process-flow {
    margin: 3rem 0;
}

.flow-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.flow-step {
    background: rgba(26, 26, 26, 0.6);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    flex: 1;
    border: 1px solid var(--border-color);
    min-width: 150px;
}

.step-number {
    display: block;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--text-light);
    border-radius: 50%;
    line-height: 40px;
    margin: 0 auto 1rem;
    font-weight: bold;
}

.flow-arrow {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: bold;
}

.benefits-list {
    list-style: none;
    margin: 1.5rem 0;
}

.benefits-list li {
    padding: 1rem;
    margin-bottom: 1rem;
    background: var(--bg-card-light);
    border-radius: 5px;
    border-left: 4px solid var(--primary-color);
}

.benefits-list li strong {
    color: var(--primary-color);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    text-align: center;
    padding: 4rem 0;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-section .btn-primary {
    background: var(--text-light);
    color: var(--primary-color);
}

.cta-section .btn-primary:hover {
    background: var(--bg-card-light);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--bg-darker);
    padding: 2rem 0 0.5rem;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.footer-brand {
    line-height: 1.6;
}

.footer-brand .brand-name {
    font-size: 1rem;
    opacity: 0.8;
    font-style: italic;
}

.footer-brand .brand-main {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: bold;
    text-shadow: 0 0 8px rgba(255, 107, 53, 0.5), 0 0 15px rgba(255, 107, 53, 0.3), 0 0 25px rgba(255, 107, 53, 0.2);
}

.footer-brand p {
    opacity: 0.7;
    margin-top: 0.5rem;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.footer-links ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.footer-links li {
    margin-bottom: 0;
}

.footer-links li:nth-child(3) {
    grid-column: 1;
}

.footer-links li:nth-child(4) {
    grid-column: 2;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.footer-contact p {
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.footer-contact p a:not([href*="myshop"]) {
    color: var(--primary-color);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-contact p a:not([href*="myshop"]):hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-contact p a[href*="myshop"] {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: var(--primary-color);
    color: var(--text-light);
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(255, 107, 53, 0.3);
}

.footer-contact p a[href*="myshop"]:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    text-decoration: none;
}

.footer-credits {
    text-align: center;
    padding-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.footer-credits p {
    font-size: 0.75rem;
    font-style: italic;
    opacity: 0.6;
    margin: 0;
}

.footer-credits a {
    color: var(--primary-color);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-credits a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: var(--bg-darker);
        width: 100%;
        padding: 2rem;
        transition: left 0.3s;
        border-top: 1px solid var(--border-color);
    }

    .nav-menu.active {
        left: 0;
    }


    .nav-arrow {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }

    .nav-arrow-left {
        left: 10px;
    }

    .nav-arrow-right {
        right: 10px;
    }

    .hero-main {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .ps-grid {
        grid-template-columns: 1fr;
    }

    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .model-grid {
        grid-template-columns: 1fr;
    }

    .flow-steps {
        flex-direction: column;
    }

    .flow-arrow {
        transform: rotate(90deg);
    }

    .section-title {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-main {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }


    .products-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .audience-grid {
        grid-template-columns: 1fr;
    }

    .nav-arrow {
        width: 45px;
        height: 45px;
        font-size: 1.8rem;
        opacity: 0.8;
    }

    .nav-arrow-left {
        left: 5px;
    }

    .nav-arrow-right {
        right: 5px;
    }
}

/* Page Navigation Arrows */
.page-nav-arrows {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    pointer-events: none;
    width: 100%;
    left: 0;
    right: 0;
}

.nav-arrow {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 107, 53, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-decoration: none;
    font-size: 2.5rem;
    font-weight: bold;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    pointer-events: all;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    line-height: 60px;
    text-align: center;
}

.nav-arrow:hover {
    transform: translateY(-50%) scale(1.15);
    background: var(--primary-color);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.7);
}

.nav-arrow-left {
    left: 20px;
}

.nav-arrow-right {
    right: 20px;
}

.nav-arrow span {
    display: inline-block;
    line-height: 1;
    margin: 0;
    padding: 0;
    vertical-align: middle;
    position: relative;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes floatSlow {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-15px) rotate(2deg);
    }
    66% {
        transform: translateY(-5px) rotate(-2deg);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes scaleInBounce {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 30px rgba(255, 107, 53, 0.8);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes rotateSlow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-5px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(5px);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

@keyframes glow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
    }
    50% {
        text-shadow: 0 0 20px rgba(255, 107, 53, 0.8), 0 0 30px rgba(255, 107, 53, 0.6);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes wave {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(5deg);
    }
    75% {
        transform: translateY(10px) rotate(-5deg);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

/* Ripple effect for buttons */
.btn {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple 0.6s ease-out;
    pointer-events: none;
}

/* 3D Card Transform */
.product-card,
.team-card,
.blog-card,
.advantage-card,
.model-item {
    transform-style: preserve-3d;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Floating animation */
.advantage-icon,
.qr-telegram-icon {
    animation: float 3s ease-in-out infinite;
}

/* Enhanced hover effects */
.product-card:hover,
.team-card:hover,
.blog-card:hover {
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
}

/* Navbar transitions */
.navbar {
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

/* Form input transitions */
.form-group {
    transition: transform 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
}

/* Table row hover */
.comparison-table tbody tr,
.alternatives-table tbody tr {
    transition: background 0.3s ease, transform 0.2s ease;
}

.comparison-table tbody tr:hover,
.alternatives-table tbody tr:hover {
    transform: translateX(5px);
    background: var(--bg-card-light);
}

/* Stage progress bar */
.stage-progress {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 1s ease;
    z-index: -1;
    opacity: 0.1;
    border-radius: 10px;
}

.roadmap-stage {
    position: relative;
    overflow: hidden;
}

/* Custom cursor (desktop only) */
@media (min-width: 769px) {
    .custom-cursor {
        width: 20px;
        height: 20px;
        border: 2px solid var(--primary-color);
        border-radius: 50%;
        position: fixed;
        pointer-events: none;
        z-index: 9999;
        transition: transform 0.1s ease, background 0.2s ease;
    }
}

/* Smooth page transitions */
body {
    transition: opacity 0.3s ease-in-out;
}

/* Enhanced button animations */
.btn {
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0);
}

/* Hero text animations */
.hero-subtitle,
.hero-tagline,
.hero-description {
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Parallax elements */
.hero-decoration {
    transition: transform 0.1s ease-out;
}

/* Loading state */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--text-light);
    animation: spin 1s ease-in-out infinite;
}

/* Enhanced Animations for All Elements */
.product-card,
.team-card,
.blog-card,
.advantage-card {
    animation: none;
}

/* Animated Elements */
.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.animated-fade-in {
    animation-name: fadeIn;
}

.animated-fade-in-up {
    animation-name: fadeInUp;
}

.animated-fade-in-down {
    animation-name: fadeInDown;
}

.animated-fade-in-left {
    animation-name: fadeInLeft;
}

.animated-fade-in-right {
    animation-name: fadeInRight;
}

.animated-scale-in {
    animation-name: scaleIn;
}

.animated-bounce {
    animation-name: bounce;
}

.animated-pulse {
    animation-name: pulse;
    animation-iteration-count: infinite;
    animation-duration: 2s;
}

.animated-float {
    animation-name: float;
    animation-iteration-count: infinite;
    animation-duration: 3s;
}

.animated-float-slow {
    animation-name: floatSlow;
    animation-iteration-count: infinite;
    animation-duration: 4s;
}

.animated-glow {
    animation-name: glow;
    animation-iteration-count: infinite;
    animation-duration: 2s;
}

.animated-shake {
    animation-name: shake;
    animation-duration: 0.5s;
}

/* Hover Animations */
.navbar {
    animation: fadeInDown 0.6s ease-out;
}

.nav-menu a {
    position: relative;
    transition: all 0.3s ease;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover {
    transform: translateY(-2px);
}

/* Hero Animations */
.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-main {
    animation: glow 3s ease-in-out infinite;
}

.hero-subtitle {
    animation: fadeInLeft 0.8s ease-out 0.3s both;
}

.hero-tagline {
    animation: fadeInRight 0.8s ease-out 0.5s both;
}

.hero-description {
    animation: fadeInUp 0.8s ease-out 0.7s both;
}

.hero-cta {
    animation: fadeInUp 0.8s ease-out 0.9s both;
}

/* Section Title Animations */
.section-title {
    animation: fadeInDown 0.8s ease-out;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    animation: slideInLeft 1s ease-out 0.5s forwards;
}

/* Card Hover Animations */
.product-card,
.team-card,
.blog-card,
.advantage-card,
.model-item,
.audience-item {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover,
.team-card:hover,
.blog-card:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.4);
}

.advantage-card:hover {
    transform: scale(1.05);
    border-color: var(--primary-color);
}

.model-item:hover {
    transform: translateY(-5px);
    border-top-width: 6px;
}

.audience-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

/* Button Enhanced Animations */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.5);
}

.btn:active {
    transform: translateY(-1px) scale(1.02);
    animation: bounce 0.3s ease;
}

/* Icon Animations */
.advantage-icon {
    animation: float 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

.advantage-card:hover .advantage-icon {
    transform: scale(1.1);
}

/* Table Animations */
.comparison-table tbody tr,
.alternatives-table tbody tr {
    animation: fadeInLeft 0.5s ease-out;
    animation-fill-mode: both;
}

.comparison-table tbody tr:nth-child(1) { animation-delay: 0.1s; }
.comparison-table tbody tr:nth-child(2) { animation-delay: 0.2s; }
.comparison-table tbody tr:nth-child(3) { animation-delay: 0.3s; }
.comparison-table tbody tr:nth-child(4) { animation-delay: 0.4s; }

/* Roadmap Animations */
.roadmap-stage {
    animation: fadeInRight 0.8s ease-out;
    animation-fill-mode: both;
}

.roadmap-stage:nth-child(1) { animation-delay: 0.1s; }
.roadmap-stage:nth-child(2) { animation-delay: 0.2s; }
.roadmap-stage:nth-child(3) { animation-delay: 0.3s; }
.roadmap-stage:nth-child(4) { animation-delay: 0.4s; }

.stage-item {
    animation: fadeInUp 0.5s ease-out;
    animation-fill-mode: both;
}

.stage-item:nth-child(1) { animation-delay: 0.1s; }
.stage-item:nth-child(2) { animation-delay: 0.2s; }
.stage-item:nth-child(3) { animation-delay: 0.3s; }
.stage-item:nth-child(4) { animation-delay: 0.4s; }

/* Strategy Stage Animations */
.strategy-stage {
    animation: fadeInLeft 0.8s ease-out;
    animation-fill-mode: both;
}

.strategy-stage:nth-child(1) { animation-delay: 0.1s; }
.strategy-stage:nth-child(2) { animation-delay: 0.2s; }
.strategy-stage:nth-child(3) { animation-delay: 0.3s; }

/* Footer Animations */
.footer {
    animation: fadeInUp 1s ease-out;
}

.footer-brand,
.footer-links,
.footer-contact {
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.footer-brand { animation-delay: 0.1s; }
.footer-links { animation-delay: 0.2s; }
.footer-contact { animation-delay: 0.3s; }

/* Page Header Animations */
.page-header {
    animation: fadeInDown 0.8s ease-out;
}

.page-header h1 {
    animation: glow 2s ease-in-out infinite;
}

/* Form Animations */
.form-group {
    animation: fadeInUp 0.5s ease-out;
    animation-fill-mode: both;
}

.form-group:nth-child(1) { animation-delay: 0.1s; }
.form-group:nth-child(2) { animation-delay: 0.2s; }
.form-group:nth-child(3) { animation-delay: 0.3s; }
.form-group:nth-child(4) { animation-delay: 0.4s; }
.form-group:nth-child(5) { animation-delay: 0.5s; }

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    animation: pulse 0.5s ease;
}

/* QR Code Animations */
.qr-code {
    animation: scaleInBounce 0.8s ease-out;
}

.qr-code:hover {
    animation: pulseGlow 2s ease-in-out infinite, rotateSlow 20s linear infinite;
}

.qr-telegram-icon {
    animation: float 3s ease-in-out infinite;
}

/* Badge Animations */
.product-badge,
.blog-badge {
    animation: scaleInBounce 0.5s ease-out;
    animation-delay: 0.3s;
    animation-fill-mode: both;
}

/* List Item Animations */
.solution-list li,
.model-item ul li,
.strategy-stage ul li,
.benefits-list li {
    animation: fadeInLeft 0.5s ease-out;
    animation-fill-mode: both;
}

/* Background Animations */
body::before {
    animation: gradient 15s ease infinite;
    background-size: 200% 200%;
}

/* Nav Arrow Enhanced Animations */
.nav-arrow {
    animation: none !important;
}

.nav-arrow-left {
    animation: none !important;
}

.nav-arrow-right {
    animation: none !important;
}

.nav-arrow:hover {
    animation: none !important;
}

.nav-arrow span {
    transition: none !important;
    animation: none !important;
}

.nav-arrow-left:hover span {
    animation: none !important;
    transform: none !important;
}

.nav-arrow-right:hover span {
    animation: none !important;
    transform: none !important;
}

/* Navbar Animations */
.navbar {
    animation: fadeInDown 0.6s ease-out;
    transition: all 0.3s ease;
}

.nav-brand {
    animation: fadeInLeft 0.8s ease-out;
}

.nav-menu {
    animation: fadeInRight 0.8s ease-out;
}

/* Footer Link Animations */
.footer-links a,
.footer-contact a {
    position: relative;
    transition: all 0.3s ease;
}

.footer-links a::before,
.footer-contact a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover::before,
.footer-contact a:hover::before {
    opacity: 1;
    left: -15px;
    animation: slideInLeft 0.5s ease;
}

/* CTA Section Animations */
.cta-section {
    animation: fadeInUp 1s ease-out;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    animation: rotateSlow 20s linear infinite;
}

/* Product Image Animations */
.product-image img {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-image img {
    transform: scale(1.15) rotate(2deg);
    filter: brightness(1.1);
}

/* Team Photo Animations */
.team-photo img {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card:hover .team-photo img {
    transform: scale(1.1);
    filter: grayscale(0%) brightness(1.1);
}

.team-card .team-photo img {
    filter: grayscale(30%);
}

.team-card:hover .team-photo img {
    filter: grayscale(0%);
}

/* Blog Image Animations */
.blog-image img {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover .blog-image img {
    transform: scale(1.15);
    filter: brightness(1.1) contrast(1.1);
}

/* Comparison Table Animations */
.comparison-table,
.alternatives-table {
    animation: fadeInUp 0.8s ease-out;
}

.comparison-table thead th,
.alternatives-table thead th {
    animation: fadeInDown 0.6s ease-out;
}

/* Roadmap Stage Header Animations */
.stage-header {
    animation: fadeInLeft 0.6s ease-out;
}

.stage-date {
    animation: scaleInBounce 0.6s ease-out 0.3s both;
}

/* Strategy Stage Animations */
.strategy-stage h3 {
    animation: fadeInLeft 0.6s ease-out;
    position: relative;
}

.strategy-stage h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    animation: slideInRight 0.8s ease-out 0.3s forwards;
}

/* Form Input Focus Animations */
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    animation: pulse 0.5s ease, glow 1s ease-in-out;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

/* QR Code Wrapper Animations */
.qr-code-wrapper {
    animation: scaleInBounce 0.8s ease-out;
}

.qr-code-wrapper h2 {
    animation: fadeInDown 0.6s ease-out;
}

.qr-text {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.qr-text:nth-child(1) { animation-delay: 0.1s; }
.qr-text:nth-child(2) { animation-delay: 0.2s; }
.qr-text:nth-child(3) { animation-delay: 0.3s; }

/* Contact Item Animations */
.contact-item {
    animation: fadeInLeft 0.6s ease-out;
    animation-fill-mode: both;
}

.contact-item:nth-child(1) { animation-delay: 0.1s; }
.contact-item:nth-child(2) { animation-delay: 0.2s; }
.contact-item:nth-child(3) { animation-delay: 0.3s; }

/* Page Header Animations */
.page-header p {
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

/* Solution List Animations */
.solution-list {
    animation: fadeInRight 0.8s ease-out;
}

/* Model Item List Animations */
.model-item ul {
    animation: fadeInLeft 0.8s ease-out;
}

/* Benefits List Animations */
.benefits-list {
    animation: fadeInUp 0.8s ease-out;
}

/* Additive Item Animations */
.additive-item {
    animation: fadeInLeft 0.6s ease-out;
    animation-fill-mode: both;
}

.additive-item:nth-child(1) { animation-delay: 0.1s; }
.additive-item:nth-child(2) { animation-delay: 0.2s; }
.additive-item:nth-child(3) { animation-delay: 0.3s; }
.additive-item:nth-child(4) { animation-delay: 0.4s; }
.additive-item:nth-child(5) { animation-delay: 0.5s; }
.additive-item:nth-child(6) { animation-delay: 0.6s; }
.additive-item:nth-child(7) { animation-delay: 0.7s; }

/* Flow Step Animations */
.flow-step {
    animation: scaleInBounce 0.6s ease-out;
    animation-fill-mode: both;
}

.flow-step:nth-child(1) { animation-delay: 0.1s; }
.flow-step:nth-child(2) { animation-delay: 0.2s; }
.flow-step:nth-child(3) { animation-delay: 0.3s; }
.flow-step:nth-child(4) { animation-delay: 0.4s; }
.flow-step:nth-child(5) { animation-delay: 0.5s; }

.flow-arrow {
    animation: pulse 1s ease-in-out infinite;
}

/* Detailed Article Animations */
.detailed-article {
    animation: fadeInUp 0.8s ease-out;
}

.detailed-article h2 {
    animation: fadeInDown 0.6s ease-out;
}

.detailed-article h3 {
    animation: fadeInLeft 0.6s ease-out;
    animation-fill-mode: both;
}

.detailed-article h3:nth-of-type(1) { animation-delay: 0.1s; }
.detailed-article h3:nth-of-type(2) { animation-delay: 0.2s; }
.detailed-article h3:nth-of-type(3) { animation-delay: 0.3s; }

/* Article Content Animations */
.article-content p {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.article-content p:nth-of-type(1) { animation-delay: 0.1s; }
.article-content p:nth-of-type(2) { animation-delay: 0.2s; }
.article-content p:nth-of-type(3) { animation-delay: 0.3s; }

/* Article Conclusion Animations */
.article-conclusion {
    animation: scaleInBounce 0.8s ease-out;
}

/* Loading Shimmer Effect */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

img[loading="lazy"]:not(.loaded) {
    background: linear-gradient(90deg, #2a2a2a 0%, #3a3a3a 50%, #2a2a2a 100%);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

/* Loading Animation for Images */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.5s ease;
}

img[loading="lazy"].loaded {
    opacity: 1;
    animation: fadeIn 0.5s ease;
}

/* Continuous Animations */
@keyframes rotateSlow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.rotate-slow {
    animation: rotateSlow 20s linear infinite;
}

/* Text Gradient Animation */
@keyframes textGradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.hero-main {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textGradient 3s linear infinite, glow 3s ease-in-out infinite;
}

/* Particle Effect Background */
@keyframes particle {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(100px) rotate(360deg);
        opacity: 0;
    }
}

/* Universal orange glow for all primary color headings */
h1[class*="primary"],
h2[class*="primary"],
h3[class*="primary"],
h1:not(.hero-main):not([style*="background"]),
h2:not([style*="background"]),
h3:not([style*="background"]) {
    /* Applied via specific classes above */
}

/* Ensure all headings with primary color get glow */
*[class*="card"] h2:not([style*="text-shadow"]),
*[class*="card"] h3:not([style*="text-shadow"]),
*[class*="item"] h2:not([style*="text-shadow"]),
*[class*="item"] h3:not([style*="text-shadow"]),
*[class*="stage"] h2:not([style*="text-shadow"]),
*[class*="stage"] h3:not([style*="text-shadow"]) {
    /* Applied via specific classes above */
}

