/**
 * Custom CSS - Уникальные стили и переопределения фреймворков
 * 
 * Структура:
 * 1. CSS Variables (переменные)
 * 2. Утилиты (сетки, отступы, цвета)
 * 3. Переопределения фреймворков
 * 4. Кастомные компоненты
 */

/* ========================================
   1. CSS VARIABLES
   ======================================== */

:root {
    /* Color Palette - Cream Tones */
    --color-primary: #d7ccc8;
    --color-secondary: #bcaaa4;
    --color-accent: #a1887f;
    --color-light: #8d6e63;
    --color-lightest: #6d4c41;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2.5rem;
    --spacing-xl: 4rem;
    --spacing-2xl: 5rem;
    
    /* Grid gaps */
    --gap-sm: 1.5rem;
    --gap-md: 2.5rem;
    --gap-lg: 3.5rem;
    
    /* Border radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
}

/* ========================================
   2. UTILITY CLASSES
   ======================================== */

/* Grid Utilities */
.grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--gap-md); 
}

.grid-2 { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: var(--gap-lg); 
    align-items: center;
}

.grid-3 { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: var(--gap-md); 
    align-items: start;
}

.grid-4 { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: var(--gap-md); 
    align-items: start;
}

.grid-5 { 
    display: grid; 
    grid-template-columns: repeat(5, 1fr); 
    gap: var(--gap-md); 
    align-items: start;
}

.grid-2-1 { 
    display: grid; 
    grid-template-columns: 2fr 1fr; 
    gap: var(--gap-lg); 
    align-items: start;
}

.grid-1-2 { 
    display: grid; 
    grid-template-columns: 1fr 2fr; 
    gap: var(--gap-lg); 
    align-items: start;
}

/* Responsive grids */
@media (max-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--gap-md);
    }
    
    .grid-4, .grid-5 {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--gap-md);
    }
}

@media (max-width: 768px) {
    .grid, .grid-2, .grid-3, .grid-4, .grid-5,
    .grid-2-1, .grid-1-2 {
        grid-template-columns: 1fr !important;
        gap: var(--gap-md);
    }
}

/* Gap utilities */
.gap-sm { gap: var(--gap-sm) !important; }
.gap-md { gap: var(--gap-md) !important; }
.gap-lg { gap: var(--gap-lg) !important; }

.gap-2xl {
    gap: 2rem;
}

.gap-xl {
    gap: 3rem;
}

/* Spacing utilities */
.mt-0 { margin-top: 0; }
.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }
.mt-xl { margin-top: var(--spacing-xl); }
.mt-2xl { margin-top: var(--spacing-2xl); }

.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }
.mb-xl { margin-bottom: var(--spacing-xl); }
.mb-2xl { margin-bottom: var(--spacing-2xl); }

.my-sm { margin-top: var(--spacing-sm); margin-bottom: var(--spacing-sm); }
.my-md { margin-top: var(--spacing-md); margin-bottom: var(--spacing-md); }
.my-lg { margin-top: var(--spacing-lg); margin-bottom: var(--spacing-lg); }
.my-xl { margin-top: var(--spacing-xl); margin-bottom: var(--spacing-xl); }

.py-sm { padding-top: var(--spacing-sm); padding-bottom: var(--spacing-sm); }
.py-md { padding-top: var(--spacing-md); padding-bottom: var(--spacing-md); }
.py-lg { padding-top: var(--spacing-lg); padding-bottom: var(--spacing-lg); }
.py-xl { padding-top: var(--spacing-xl); padding-bottom: var(--spacing-xl); }
.py-2xl { padding-top: var(--spacing-2xl); padding-bottom: var(--spacing-2xl); }

/* Text utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* ========================================
   3. GLOBAL STYLES & COLOR APPLICATION
   ======================================== */

/* Body & Background */
body {
    background-color: #fafafa;
    color: var(--color-lightest);
}

/* Links */
a {
    color: var(--color-light);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-accent);
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    color: var(--color-lightest);
}

/* Buttons */
button, [role="button"], input[type="submit"], input[type="button"] {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    color: white;
    transition: all 0.3s ease;
    padding: 0.75rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    border: 2px solid var(--color-accent);
    margin: 0.5rem 0.5rem 0.5rem 0;
}

button:hover, [role="button"]:hover, input[type="submit"]:hover {
    background-color: var(--color-light);
    border-color: var(--color-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: white;
}

button.secondary, [role="button"].secondary {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
}

button.secondary:hover, [role="button"].secondary:hover {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
}

/* ========================================
   4. TOPBAR STYLES
   ======================================== */

.topbar {
    background: linear-gradient(135deg, var(--color-lightest), var(--color-light));
    padding: 10px 0;
    color: white;
}

.topbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-text-faded {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.topbar-social-links {
    display: flex;
    gap: 15px;
}

.topbar-social-icon {
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.topbar-social-icon:hover {
    color: var(--color-primary);
    transform: scale(1.2);
}

/* ========================================
   5. HEADER & NAVIGATION
   ======================================== */

header {
    background-color: white;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
}

.header-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    gap: 2rem;
}

.header-logo strong {
    color: var(--color-light);
    font-size: 1.3rem;
    white-space: nowrap;
}

.header-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.header-menu li {
    margin: 0;
}

.header-menu a {
    color: var(--color-lightest);
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
}

.header-menu a:hover {
    color: var(--color-accent);
}

.header-menu a[role="button"] {
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-md);
    background-color: var(--color-accent);
    color: white;
    border: none;
}

.header-menu a[role="button"]:hover {
    background-color: var(--color-light);
    color: white;
}

@media (max-width: 992px) {
    .header-nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem 0;
    }
    
    .header-menu {
        gap: 1rem;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .header-menu {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }
    
    .header-menu a[role="button"] {
        width: 100%;
        text-align: center;
    }
}

/* ========================================
   6. HERO SECTION
   ======================================== */

.hero-split {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    padding: 60px 0;
    color: var(--color-lightest);
}

.hero-split h1 {
    color: var(--color-lightest);
    margin-bottom: 10px;
    font-size: 2.5rem;
    font-weight: 700;
}

.hero-split h2 {
    color: var(--color-light);
    font-weight: 500;
    margin-bottom: 20px;
}

.hero-split p {
    color: var(--color-lightest);
    font-size: 1.1rem;
    line-height: 1.7;
}

.hero-split ul li {
    color: var(--color-lightest);
    margin-bottom: 8px;
}

.hero-split article {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.hero-split .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--gap-lg);
    align-items: center;
}

.hero-split article header {
    background: transparent;
    box-shadow: none;
    position: static;
    margin-bottom: 20px;
    padding: 0;
}

.hero-split form button {
    width: 100%;
    margin: 0;
}

/* ========================================
   7. FEATURES SECTION
   ======================================== */

.features {
    padding: 100px 0;
    background-color: white;
}

.features hgroup {
    text-align: center;
    margin-bottom: 60px;
}

.features hgroup h2 {
    color: var(--color-lightest);
    margin-bottom: 10px;
}

.features hgroup p {
    color: var(--color-light);
    font-size: 1.1rem;
}

.features .grid {
    grid-template-columns: repeat(3, 1fr);
}

.features article {
    background: #fafafa;
    padding: 35px;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
}

.features article:hover {
    border-color: var(--color-accent);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.features article header {
    background: transparent;
    box-shadow: none;
    position: static;
    color: var(--color-light);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.features article header i {
    margin-right: 10px;
    color: var(--color-accent);
}

.features article p {
    color: #555;
    line-height: 1.7;
}

/* ========================================
   8. FEATURES ICONS
   ======================================== */

.features-icons {
    padding: 80px 0;
    background: linear-gradient(to bottom, #fafafa, white);
}

.features-icon-item {
    text-align: center;
    padding: 30px 20px;
}

.features-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-light));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.features-icon-item:hover .features-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-lg);
}

.features-icon-title {
    color: var(--color-lightest);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.features-icon-text {
    color: #666;
    line-height: 1.6;
}

/* ========================================
   9. FEATURES ALTERNATING
   ======================================== */

.features-alternating {
    padding: 100px 0;
    background-color: white;
}

.features-alternating hgroup {
    text-align: center;
    margin-bottom: 70px;
}

.features-alternating hgroup h2 {
    color: var(--color-lightest);
    margin-bottom: 10px;
}

.features-alternating hgroup p {
    color: var(--color-light);
    font-size: 1.1rem;
}

.feature-block {
    margin-bottom: 80px;
    align-items: center;
    gap: var(--gap-lg);
}

.feature-block:last-child {
    margin-bottom: 0;
}

.feature-title {
    color: var(--color-lightest);
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.feature-text {
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.feature-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-block ul li {
    color: #666;
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.feature-block ul li:before {
    content: "✓";
    color: var(--color-accent);
    font-weight: bold;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: 0;
}

.content-image-rounded {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: all 0.3s ease;
}

.content-image-rounded:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.order-1 { order: 1; }
.order-2 { order: 2; }

@media (max-width: 768px) {
    .features-alternating {
        padding: 60px 0;
    }
    
    .feature-block {
        margin-bottom: 50px;
        gap: var(--gap-md);
    }
    
    .feature-title {
        font-size: 1.6rem;
    }
    
    .order-1, .order-2 { 
        order: 0; 
    }
}

/* ========================================
   10. CONTENT SECTION
   ======================================== */

.content-section {
    padding: 80px 0;
    background-color: #fafafa;
}

.content-section .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--gap-lg);
    align-items: center;
}

.content-image-rounded {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    width: 100%;
    height: auto;
}

/* ========================================
   11. PRICING SECTION
   ======================================== */

.pricing {
    padding: 80px 0;
    background: linear-gradient(to bottom, white, #fafafa);
}

.pricing-header {
    text-align: center;
    margin-bottom: 50px;
}

.pricing article {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: var(--radius-lg);
    padding: 45px 35px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.pricing .grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap-md);
    align-items: stretch;
}

.pricing article:hover {
    border-color: var(--color-accent);
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.pricing article header {
    background: transparent;
    box-shadow: none;
    position: static;
    font-size: 1.5rem;
    color: var(--color-light);
    margin-bottom: 20px;
}

.pricing article h3 {
    font-size: 2.5rem;
    color: var(--color-accent);
    margin: 10px 0;
}

.pricing article ul {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
}

.pricing article ul li {
    padding: 10px 0;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
}

.pricing article ul li i {
    color: var(--color-accent);
    margin-right: 10px;
}

.pricing article footer {
    margin-top: 20px;
}

.pricing article footer a {
    width: 100%;
    text-align: center;
    margin: 0;
}

.pricing-popular {
    position: relative;
    border-color: var(--color-accent);
    background: linear-gradient(135deg, #fff, var(--color-primary));
}

.pricing-popular-header {
    background: var(--color-accent);
    color: white;
    margin: -40px -30px 30px;
    padding: 20px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.pricing-badge {
    background: var(--color-light);
    color: white;
    padding: 5px 15px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    margin-left: 10px;
}

.pricing-note {
    text-align: center;
    margin-top: 30px;
    color: #777;
}

/* ========================================
   12. FAQ SECTION
   ======================================== */

.faq {
    padding: 80px 0;
    background-color: white;
}

.faq hgroup {
    text-align: center;
    margin-bottom: 50px;
}

details {
    background: #fafafa;
    border: 1px solid #e0e0e0;
    border-radius: var(--radius-md);
    margin-bottom: 15px;
    padding: 20px;
    transition: all 0.3s ease;
}

details:hover {
    border-color: var(--color-accent);
}

details[open] {
    background: white;
    border-color: var(--color-accent);
    box-shadow: var(--shadow-sm);
}

summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--color-lightest);
    font-size: 1.1rem;
    padding: 10px 0;
}

summary:hover {
    color: var(--color-accent);
}

details p {
    margin-top: 15px;
    color: #666;
    line-height: 1.7;
}

/* ========================================
   13. CONTACTS SECTION
   ======================================== */

.contacts {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
}

.contacts .grid-2 {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--gap-lg);
    align-items: stretch;
}

.contacts h2 {
    color: var(--color-lightest);
    margin-bottom: 25px;
    font-size: 2rem;
}

.contacts h4 {
    color: var(--color-lightest);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.contacts p {
    color: var(--color-lightest);
    line-height: 1.7;
}

.contacts article {
    background: rgba(255, 255, 255, 0.15);
    padding: 25px;
    border-radius: var(--radius-lg);
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contacts article:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
    transition: all 0.3s ease;
}

.contacts form {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.contacts form button {
    width: 100%;
    margin: 0;
}

/* ========================================
   14. FOOTER
   ======================================== */

footer {
    background: var(--color-lightest);
    color: white;
    padding: 40px 0 20px;
}

.footer-minimal {
    text-align: center;
}

.footer-minimal p {
    margin-bottom: 15px;
}

.footer-minimal a {
    color: var(--color-primary);
    text-decoration: none;
}

.footer-minimal a:hover {
    color: white;
    text-decoration: underline;
}

/* ========================================
   15. FORM STYLES
   ======================================== */

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    font-size: 1rem;
    background-color: #fafafa;
    margin-bottom: 20px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 4px rgba(161, 136, 127, 0.15);
    background-color: white;
    outline: none;
}

input[type="text"]:hover,
input[type="email"]:hover,
input[type="tel"]:hover,
select:hover,
textarea:hover {
    border-color: var(--color-secondary);
}

label {
    color: var(--color-lightest);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 8px;
    display: block;
}

.contacts label {
    color: var(--color-lightest);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236d4c41' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

input[type="checkbox"] {
    width: auto;
    margin-right: 8px;
    cursor: pointer;
}

/* ========================================
   16. RESPONSIVE UTILITIES
   ======================================== */

@media (max-width: 992px) {
    .hero-split h1 { font-size: 2rem; }
    .feature-icon-box { height: 200px; font-size: 3rem; }
}

@media (max-width: 768px) {
    .topbar-container { 
        flex-direction: column; 
        gap: 10px;
    }
    
    .hero-split { padding: 40px 0; }
    .hero-split h1 { font-size: 1.8rem; }
    
    .hero-split .grid,
    .content-section .grid {
        grid-template-columns: 1fr !important;
    }
    
    .features .grid,
    .pricing .grid {
        grid-template-columns: 1fr !important;
    }
    
    .features, .features-icons, .features-alternating,
    .content-section, .pricing, .faq, .contacts {
        padding: 50px 0;
    }
    
    .feature-block { margin-bottom: 40px; }
}

/* ========================================
   17. ANIMATIONS
   ======================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* ========================================
   18. UTILITY HELPERS
   ======================================== */

.container {
    max-width: 1200px;
}

.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }

.rounded-sm { border-radius: var(--radius-sm); }
.rounded-md { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }

.bg-primary { background-color: var(--color-primary); }
.bg-secondary { background-color: var(--color-secondary); }
.bg-accent { background-color: var(--color-accent); }

.text-primary { color: var(--color-primary); }
.text-secondary { color: var(--color-secondary); }
.text-accent { color: var(--color-accent); }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 2rem; }

.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-normal { font-weight: 400; }

/* Layout utilities */
.container-narrow { max-width: 600px; margin: 0 auto; }
.container-medium { max-width: 800px; margin: 0 auto; }
.container-wide { max-width: 1200px; margin: 0 auto; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }

/* Display utilities */
.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }

/* Border utilities */
.rounded-sm { border-radius: var(--radius-sm); }
.rounded-md { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-full { border-radius: var(--radius-full); }

/* Shadow utilities */
.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }

/* ========================================
   3. FRAMEWORK OVERRIDES
   ======================================== */

/* Общие переопределения для всех фреймворков */
section {
    padding: 3rem 0;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Улучшенные кнопки */
button, [role="button"], .button {
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover, [role="button"]:hover, .button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Улучшенные карточки */
article, .card {
    transition: all 0.3s ease;
}

article:hover, .card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* Улучшенные ссылки */
a {
    transition: opacity 0.2s ease;
}

a:hover {
    opacity: 0.8;
}

/* Адаптивные изображения */
img {
    max-width: 100%;
    height: auto;
}

/* ========================================
   4. CUSTOM COMPONENTS
   ======================================== */

/* Hero sections */
.hero-fullscreen {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-large {
    min-height: 80vh;
    display: flex;
    align-items: center;
}

/* Map placeholder */
.map-placeholder {
    background: #e5e7eb;
    border-radius: var(--radius-md);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Icon wrappers */
.icon-large {
    font-size: 3rem;
    line-height: 1;
}

.icon-xl {
    font-size: 2.5rem;
    line-height: 1;
}

/* Badge styles */
.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Dividers */
hr {
    border: none;
    border-top: 1px solid rgba(0,0,0,0.1);
    margin: 2rem 0;
}

/* Gradient backgrounds */
.bg-gradient-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.bg-gradient-secondary {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.bg-gradient-success {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
}

/* Social links styling */
.social-links a {
    display: inline-block;
    margin: 0 0.5rem;
    font-size: 1.5rem;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.social-links a:hover {
    transform: scale(1.2);
}

/* Hero sections */
.hero-overlay {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: url('images/hero-bg.jpg') center/cover no-repeat;
}

.hero-overlay-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.85) 0%, rgba(118, 75, 162, 0.85) 100%);
}

.hero-overlay-content {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
}

.hero-overlay h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-overlay-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.hero-overlay-text {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.hero-overlay .btn-white {
    background: white;
    color: #667eea;
    font-weight: 600;
}

.hero-overlay .btn-outline {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid white;
}

/* Hero image sections */
.hero-image-left .hero-img,
.hero-image-right .hero-img {
    display: flex;
    align-items: center;
}

.hero-image-left img,
.hero-image-right img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.hero-image-left .hero-content,
.hero-image-right .hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--muted-color);
}

.hero-text {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.hero-list {
    margin-bottom: 1.5rem;
}

.hero-list li {
    margin-bottom: 0.5rem;
}

/* Features sections */
.features-icons hgroup {
    text-align: center;
    margin-bottom: 3rem;
}

.features-icon-item {
    text-align: center;
    padding: 1.5rem;
}

.features-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.features-icon-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.features-icon-text {
    color: var(--muted-color);
}

/* Features alternating */
.features-alternating hgroup {
    text-align: center;
    margin-bottom: 3rem;
}

.feature-block {
    margin-bottom: 4rem;
    align-items: center;
}

.feature-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.feature-text {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.feature-icon-box {
    text-align: center;
    color: white;
    padding: 3rem;
    border-radius: 12px;
    font-size: 4rem;
}

.gradient-purple {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.gradient-pink {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.gradient-blue {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.order-1 { order: 1; }
.order-2 { order: 2; }

/* Features list */
.features-list-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.features-list-subtitle {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: var(--muted-color);
}

.feature-item {
    margin-bottom: 1.5rem;
}

.feature-item-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-checkmark {
    color: #22c55e;
    font-size: 1.5rem;
}

.feature-item-text {
    color: var(--muted-color);
    margin-left: 2rem;
}

.stats-box {
    background: linear-gradient(135deg, rgba(99,102,241,0.1) 0%, rgba(139,92,246,0.1) 100%);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid rgba(99,102,241,0.2);
}

.stats-box-header {
    text-align: center;
    margin-bottom: 2rem;
}

.stats-box-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
}

.stats-box-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.stats-box-subtitle {
    color: var(--muted-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    text-align: center;
}

.stat-card {
    padding: 1rem;
    background: white;
    border-radius: 8px;
}

.stat-number {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--muted-color);
    font-size: 0.9rem;
}

/* Pricing section styles */
.pricing-header {
    text-align: center;
}

.pricing-popular {
    border: 2px solid #667eea;
}

.pricing-popular-header {
    background: #667eea;
    color: white;
    padding: 1rem;
    margin: -1rem -1rem 1rem -1rem;
}

.pricing-badge {
    background: white;
    color: #667eea;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    margin-left: 0.5rem;
}

.pricing-note {
    text-align: center;
    margin-top: 2rem;
}

/* Pricing toggle styles */
.pricing-toggle-section {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-card-center {
    text-align: center;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 1rem 0;
}

.pricing-period {
    font-size: 1rem;
    font-weight: normal;
    display: block;
}

.pricing-list-left {
    text-align: left;
}

.pricing-featured {
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: scale(1.05);
}

.pricing-featured-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem;
    margin: -1rem -1rem 1rem -1rem;
}

/* Pricing table styles */
.pricing-table-header {
    text-align: center;
}

.pricing-table-col-center {
    text-align: center;
}

.pricing-table-col-highlight {
    text-align: center;
    background: rgba(102, 126, 234, 0.1);
}

.pricing-table-cell-center {
    text-align: center;
}

.pricing-table-cell-highlight {
    text-align: center;
    background: rgba(102, 126, 234, 0.05);
}

/* Header styles */
.header-bordered {
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.header-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.header-logo-section {
    flex: 1;
}

.header-logo-link {
    text-decoration: none;
    color: inherit;
}

.header-logo-text {
    font-size: 1.3rem;
}

.header-nav-center {
    flex: 2;
    text-align: center;
}

.header-nav-link {
    margin: 0 1rem;
}

.header-actions {
    flex: 1;
    text-align: right;
}

.header-login-link {
    margin-right: 1rem;
}

.header-button {
    margin: 0;
    padding: 0.5rem 1.5rem;
}

/* Burger header styles */
.burger-header {
    background: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.burger-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.burger-logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.burger-button {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.burger-menu {
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    width: 280px;
    background: #2c3e50;
    color: #ffffff;
    padding: 60px 30px 30px;
    transition: right 0.3s ease;
    z-index: 2000;
    overflow-y: auto;
}

.burger-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

.burger-menu-link {
    display: block;
    color: #ffffff;
    text-decoration: none;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 16px;
}

.burger-menu-link-last {
    display: block;
    color: #ffffff;
    text-decoration: none;
    padding: 15px 0;
    font-size: 16px;
}

.burger-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: none;
    z-index: 1999;
}

/* Topbar styles */
.topbar {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 10px 0;
    font-size: 13px;
}

.topbar-contacts {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 8px 0;
    font-size: 14px;
}

.topbar-minimal {
    background: #ffffff;
    color: #333333;
    padding: 6px 0;
    font-size: 12px;
    border-bottom: 1px solid #e0e0e0;
}

.topbar-promo {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 10px 0;
    font-size: 14px;
    text-align: center;
    font-weight: 500;
}

.topbar-social-dark {
    background: #1a1a1a;
    color: #ffffff;
    padding: 10px 0;
    font-size: 14px;
}

.topbar-hours {
    background: #34495e;
    color: #ecf0f1;
    padding: 8px 0;
    font-size: 13px;
}

.topbar-ecommerce {
    background: #000000;
    color: #ffffff;
    padding: 8px 0;
    font-size: 13px;
}

.topbar-lang-light {
    background: #f8f9fa;
    color: #212529;
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 1px solid #dee2e6;
}

.topbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.topbar-left {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.topbar-right {
    display: flex;
    gap: 15px;
    align-items: center;
}

.topbar-social {
    display: flex;
    gap: 10px;
}

.topbar-social-link {
    color: #ecf0f1;
    text-decoration: none;
}

.topbar-lang {
    display: flex;
    gap: 5px;
}

.topbar-lang-link {
    color: #ecf0f1;
    text-decoration: none;
}

.topbar-lang-link-active {
    color: #ecf0f1;
    text-decoration: none;
    font-weight: bold;
}

.topbar-separator {
    opacity: 0.5;
}

.topbar-text-muted {
    opacity: 0.7;
}

.topbar-text-dimmed {
    opacity: 0.3;
}

.topbar-text-light {
    opacity: 0.4;
}

.topbar-text-faded {
    font-size: 13px;
    opacity: 0.8;
}

.topbar-contact-span {
    margin-right: 20px;
}

.topbar-item {
    margin: 4px 15px 4px 0;
}

.topbar-item-last {
    margin: 4px 0;
}

.topbar-social-links {
    display: flex;
    gap: 15px;
}

.topbar-social-icon {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
}

.topbar-lang-selector {
    display: flex;
    gap: 8px;
}

.topbar-currency-selector {
    display: flex;
    gap: 8px;
}

/* Topbar - Hours variant (с часами работы) */
.topbar-hours {
    background: #34495e;
    color: #ecf0f1;
    padding: 8px 0;
    font-size: 13px;
}

/* Topbar - Ecommerce variant (черный вариант для магазина) */
.topbar-ecommerce {
    background: #000000;
    color: #ffffff;
    padding: 8px 0;
    font-size: 13px;
}

.topbar-lang-link-dark {
    color: #212529;
    text-decoration: none;
}

.topbar-lang-link-dark-bold {
    color: #212529;
    text-decoration: none;
    font-weight: bold;
}

.topbar-currency-link {
    color: #ffffff;
    text-decoration: none;
}

.topbar-currency-link-bold {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
}

.topbar-currency-link-faded {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.6;
}

.topbar-promo-link {
    color: white;
    text-decoration: underline;
    margin-left: 10px;
}

.topbar-minimal-link {
    color: #333333;
    text-decoration: none;
    font-weight: 500;
}

.topbar-account-link {
    color: #ffffff;
    text-decoration: none;
}

/* Burger responsive header */
.burger-header-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.burger-logo-white {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

.burger-desktop-menu {
    display: none;
}

.burger-desktop-link {
    color: #ffffff;
    text-decoration: none;
    margin-left: 30px;
    font-weight: 500;
}

.burger-button-bordered {
    background: transparent;
    border: 2px solid white;
    border-radius: 4px;
    padding: 8px 12px;
    cursor: pointer;
    display: none;
}

.burger-icon-line {
    width: 24px;
    height: 2px;
    background: white;
    margin: 5px 0;
}

.burger-mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    bottom: 0;
    width: 75%;
    max-width: 300px;
    background: #ffffff;
    padding: 80px 30px 30px;
    transition: left 0.3s ease;
    z-index: 2000;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
}

.burger-mobile-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: #333;
    font-size: 28px;
    cursor: pointer;
}

.burger-mobile-link {
    display: block;
    color: #333;
    text-decoration: none;
    padding: 18px 0;
    border-bottom: 1px solid #eee;
    font-size: 17px;
    font-weight: 500;
}

.burger-mobile-link-last {
    display: block;
    color: #333;
    text-decoration: none;
    padding: 18px 0;
    font-size: 17px;
    font-weight: 500;
}

/* Burger fullscreen header */
.burger-header-dark {
    background: #1a1a1a;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.burger-logo-dark {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
}

.burger-button-animated {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    position: relative;
    width: 40px;
    height: 40px;
}

.burger-animated-line {
    display: block;
    width: 30px;
    height: 3px;
    background: #ffffff;
    margin: 6px 0;
    transition: all 0.3s;
}

.burger-fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 26, 0.98);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s;
}

.burger-fullscreen-nav {
    text-align: center;
}

.burger-fullscreen-link {
    display: block;
    color: #ffffff;
    text-decoration: none;
    padding: 20px 0;
    font-size: 32px;
    font-weight: 700;
    opacity: 0;
    animation: fadeSlideIn 0.5s forwards;
}

/* Burger dots header */
.burger-header-blue {
    background: #2c3e50;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.burger-dots-button {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.burger-dots-container {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.burger-dot {
    width: 6px;
    height: 6px;
    background: #ffffff;
    border-radius: 50%;
}

.burger-dots-panel {
    position: fixed;
    top: 0;
    right: -320px;
    bottom: 0;
    width: 320px;
    background: #34495e;
    padding: 60px 30px;
    transition: right 0.4s ease;
    z-index: 2000;
    overflow-y: auto;
    box-shadow: -4px 0 20px rgba(0,0,0,0.3);
}

.burger-dots-title {
    color: #ffffff;
    margin: 0 0 30px 0;
    font-size: 22px;
}

.burger-dots-link {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #ffffff;
    text-decoration: none;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 16px;
    transition: padding-left 0.2s;
}

.burger-dots-link-last {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #ffffff;
    text-decoration: none;
    padding: 18px 0;
    font-size: 16px;
    transition: padding-left 0.2s;
}

.burger-dots-icon {
    font-size: 20px;
}

/* Burger text header */
.burger-header-light {
    background: #ffffff;
    border-bottom: 2px solid #e0e0e0;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.burger-logo-gray {
    font-size: 20px;
    font-weight: 700;
    color: #333;
}

.burger-text-button {
    background: #3498db;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.burger-text-icon {
    transition: transform 0.3s;
}

.burger-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 20px;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    border-radius: 8px;
    min-width: 220px;
    display: none;
    z-index: 2001;
    overflow: hidden;
}

.burger-dropdown-link {
    display: block;
    color: #333;
    text-decoration: none;
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s;
}

.burger-dropdown-link-last {
    display: block;
    color: #333;
    text-decoration: none;
    padding: 15px 20px;
    transition: background 0.2s;
}

/* Responsive utilities */
/* ===========================
   COOKIE BANNERS STYLES
   =========================== */

/* Cookie Banner - Bottom Bar */
.cookie-bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 9999;
    display: none;
}

.cookie-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-bottom-text {
    flex: 1;
    min-width: 300px;
}

.cookie-bottom-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

.cookie-bottom-link {
    color: #3498db;
    text-decoration: underline;
}

.cookie-bottom-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-btn-accept {
    background: #27ae60;
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
}

.cookie-btn-reject {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    padding: 10px 24px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
}

/* Cookie Banner - Top Bar */
.cookie-top {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #f39c12;
    color: #ffffff;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 9999;
    display: none;
}

.cookie-top-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.cookie-top-text {
    flex: 1;
    min-width: 250px;
}

.cookie-top-text p {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
}

.cookie-top-link {
    color: #fff;
    text-decoration: underline;
    font-weight: bold;
}

.cookie-top-actions {
    display: flex;
    gap: 8px;
}

.cookie-btn-top-ok {
    background: #ffffff;
    color: #f39c12;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
}

.cookie-btn-top-close {
    background: transparent;
    color: #ffffff;
    border: none;
    padding: 8px;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
}

/* Cookie Banner - Corner Left */
.cookie-corner-left {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #ffffff;
    color: #333;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    max-width: 350px;
    z-index: 9999;
    display: none;
    border-left: 4px solid #3498db;
}

.cookie-corner-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    font-size: 20px;
    color: #999;
    cursor: pointer;
    line-height: 1;
}

.cookie-corner-content {
    margin-bottom: 15px;
}

.cookie-corner-title {
    margin: 0 0 10px 0;
    font-size: 16px;
    font-weight: 600;
}

.cookie-corner-text {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
    color: #666;
}

.cookie-corner-actions {
    display: flex;
    gap: 10px;
}

.cookie-btn-corner-accept {
    flex: 1;
    background: #3498db;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
}

.cookie-btn-corner-reject {
    flex: 1;
    background: #ecf0f1;
    color: #333;
    border: none;
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
}

.cookie-corner-link {
    display: block;
    margin-top: 10px;
    font-size: 12px;
    color: #3498db;
    text-decoration: none;
    text-align: center;
}

/* Cookie Banner - Corner Right */
.cookie-corner-right {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #2c3e50;
    color: #ffffff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    max-width: 380px;
    z-index: 9999;
    display: none;
}

.cookie-corner-right-content {
    margin-bottom: 18px;
}

.cookie-corner-right-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.cookie-corner-right-icon {
    font-size: 32px;
}

.cookie-corner-right-title {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}

.cookie-corner-right-text {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}

.cookie-corner-right-actions {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.cookie-btn-right-accept {
    flex: 1;
    background: #27ae60;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
}

.cookie-btn-right-settings {
    flex: 1;
    background: #34495e;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
}

.cookie-btn-right-decline {
    width: 100%;
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 10px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
}

/* Cookie Banner - Center Modal */
.cookie-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 9998;
    display: none;
    align-items: center;
    justify-content: center;
}

.cookie-modal {
    background: #ffffff;
    color: #333;
    padding: 40px;
    border-radius: 16px;
    max-width: 500px;
    margin: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    text-align: center;
}

.cookie-modal-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.cookie-modal-title {
    margin: 0 0 16px 0;
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.cookie-modal-text {
    margin: 0 0 24px 0;
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

.cookie-modal-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.cookie-btn-modal-accept {
    flex: 1;
    background: #3498db;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
}

.cookie-btn-modal-customize {
    flex: 1;
    background: #ecf0f1;
    color: #333;
    border: none;
    padding: 14px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
}

.cookie-btn-modal-reject {
    width: 100%;
    background: transparent;
    color: #999;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 14px;
    text-decoration: underline;
}

.cookie-modal-footer {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.cookie-modal-link {
    color: #3498db;
    text-decoration: none;
    font-size: 13px;
}

/* Cookie Banner - Floating Button */
.cookie-float-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: none;
}

.cookie-float-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #e74c3c;
    color: white;
    border: none;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.4);
    transition: transform 0.2s;
}

.cookie-float-panel {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 320px;
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    display: none;
    color: #333;
}

.cookie-float-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 14px;
}

.cookie-float-title {
    margin: 0;
    font-size: 17px;
    font-weight: 700;
    color: #2c3e50;
}

.cookie-float-close {
    background: transparent;
    border: none;
    color: #999;
    font-size: 20px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
}

.cookie-float-text {
    margin: 0 0 16px 0;
    font-size: 13px;
    line-height: 1.6;
    color: #666;
}

.cookie-float-options {
    margin-bottom: 12px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 6px;
    font-size: 12px;
}

.cookie-float-label {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.cookie-float-label-last {
    display: flex;
    align-items: center;
}

.cookie-float-checkbox {
    margin-right: 8px;
}

.cookie-float-label-text {
    font-weight: 600;
}

.cookie-float-actions {
    display: flex;
    gap: 8px;
}

.cookie-btn-float-accept {
    flex: 1;
    background: #27ae60;
    color: white;
    border: none;
    padding: 11px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
}

.cookie-btn-float-save {
    flex: 1;
    background: #3498db;
    color: white;
    border: none;
    padding: 11px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
}

/* Cookie Banner - Sidebar Left */
.cookie-sidebar-left {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 320px;
    background: #34495e;
    color: #ffffff;
    padding: 30px 24px;
    box-shadow: 2px 0 20px rgba(0,0,0,0.2);
    z-index: 9999;
    display: none;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.cookie-sidebar-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
}

.cookie-sidebar-header {
    margin-bottom: 24px;
}

.cookie-sidebar-title {
    margin: 0 0 16px 0;
    font-size: 20px;
    font-weight: 700;
}

.cookie-sidebar-text {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}

.cookie-sidebar-options {
    margin-bottom: 20px;
}

.cookie-sidebar-option {
    display: flex;
    align-items: center;
    padding: 12px;
    background: rgba(255,255,255,0.1);
    border-radius: 6px;
    margin-bottom: 10px;
    cursor: pointer;
}

.cookie-sidebar-option-alt {
    display: flex;
    align-items: center;
    padding: 12px;
    background: rgba(255,255,255,0.05);
    border-radius: 6px;
    margin-bottom: 10px;
    cursor: pointer;
}

.cookie-sidebar-option-last {
    display: flex;
    align-items: center;
    padding: 12px;
    background: rgba(255,255,255,0.05);
    border-radius: 6px;
    cursor: pointer;
}

.cookie-sidebar-checkbox {
    margin-right: 12px;
}

.cookie-sidebar-option-name {
    font-weight: 600;
    margin-bottom: 4px;
}

.cookie-sidebar-option-desc {
    font-size: 12px;
    opacity: 0.8;
}

.cookie-sidebar-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cookie-btn-sidebar-accept {
    width: 100%;
    background: #27ae60;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
}

.cookie-btn-sidebar-save {
    width: 100%;
    background: #3498db;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
}

.cookie-btn-sidebar-decline {
    width: 100%;
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
}

.cookie-sidebar-footer {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    text-align: center;
}

.cookie-sidebar-link {
    color: #3498db;
    text-decoration: none;
    font-size: 13px;
}

/* Cookie Banner - Sidebar Right */
.cookie-sidebar-right {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 340px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 32px 26px;
    box-shadow: -2px 0 20px rgba(0,0,0,0.2);
    z-index: 9999;
    display: none;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.cookie-sidebar-right-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.2);
    border: none;
    color: #ffffff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    line-height: 1;
}

.cookie-sidebar-right-header {
    margin-bottom: 28px;
}

.cookie-sidebar-right-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.cookie-sidebar-right-title {
    margin: 0 0 12px 0;
    font-size: 22px;
    font-weight: 700;
}

.cookie-sidebar-right-text {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.95;
}

.cookie-sidebar-right-options {
    margin-bottom: 24px;
}

.cookie-sidebar-right-option {
    padding: 16px;
    background: rgba(255,255,255,0.15);
    border-radius: 8px;
    margin-bottom: 12px;
}

.cookie-sidebar-right-option-alt {
    padding: 16px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    margin-bottom: 12px;
}

.cookie-sidebar-right-option-last {
    padding: 16px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
}

.cookie-sidebar-right-label {
    display: flex;
    align-items: flex-start;
    cursor: not-allowed;
}

.cookie-sidebar-right-label-active {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
}

.cookie-sidebar-right-checkbox {
    margin: 4px 12px 0 0;
}

.cookie-sidebar-right-option-name {
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 15px;
}

.cookie-sidebar-right-option-desc {
    font-size: 13px;
    opacity: 0.9;
    line-height: 1.5;
}

.cookie-sidebar-right-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cookie-btn-sidebar-right-accept {
    width: 100%;
    background: #ffffff;
    color: #667eea;
    border: none;
    padding: 14px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
}

.cookie-btn-sidebar-right-save {
    width: 100%;
    background: rgba(255,255,255,0.2);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
}

.cookie-btn-sidebar-right-essential {
    width: 100%;
    background: transparent;
    color: white;
    border: none;
    padding: 12px;
    cursor: pointer;
    font-size: 14px;
    text-decoration: underline;
    opacity: 0.8;
}

/* ===========================
   SOCIAL LINKS STYLES
   =========================== */

/* Social - Floating Button */
.social-floating {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 999;
}

.social-float-button {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    transition: transform 0.2s;
}

.social-float-button:hover {
    transform: scale(1.1);
}

.social-float-links {
    position: absolute;
    bottom: 70px;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 10px;
}

.social-float-link {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: transform 0.2s;
    animation: slideInRight 0.3s;
}

.social-float-link:hover {
    transform: scale(1.1);
}

.social-float-link-facebook {
    background: #1877f2;
}

.social-float-link-instagram {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    animation-delay: 0.1s;
}

.social-float-link-telegram {
    background: #0088cc;
    animation-delay: 0.2s;
}

.social-float-link-youtube {
    background: #ff0000;
    animation-delay: 0.3s;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Social - Header Right */
.social-header-right {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-header-link {
    text-decoration: none;
    font-size: 20px;
    transition: opacity 0.2s;
}

.social-header-link:hover {
    opacity: 0.7;
}

.social-header-facebook { color: #1877f2; }
.social-header-instagram { color: #e4405f; }
.social-header-twitter { color: #1da1f2; }
.social-header-linkedin { color: #0077b5; }

/* Social - Footer Center */
.social-footer-center {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid #e0e0e0;
}

.social-footer-text {
    margin: 0 0 15px 0;
    color: #666;
    font-size: 14px;
}

.social-footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-footer-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    text-align: center;
    line-height: 40px;
    text-decoration: none;
    font-size: 18px;
    transition: transform 0.2s;
}

.social-footer-link:hover {
    transform: scale(1.1);
}

.social-footer-vk { background: #0077ff; }
.social-footer-telegram { background: #0088cc; }
.social-footer-whatsapp { background: #25d366; }
.social-footer-youtube { background: #ff0000; }

/* Social - Contact Section */
.social-contact-section {
    margin-top: 40px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

.social-contact-title {
    margin: 0 0 20px 0;
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
}

.social-contact-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.social-contact-item {
    text-align: center;
}

.social-contact-link {
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    color: white;
    line-height: 50px;
    text-decoration: none;
    font-size: 24px;
    transition: transform 0.2s;
}

.social-contact-link:hover {
    transform: translateY(-5px);
}

.social-contact-label {
    margin: 10px 0 0 0;
    font-size: 13px;
    color: #666;
}

.social-contact-facebook { background: #1877f2; }
.social-contact-instagram {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}
.social-contact-telegram { background: #0088cc; }
.social-contact-github { background: #333; }

/* Social - With Text Labels */
.social-with-text {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.social-text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: opacity 0.2s;
}

.social-text-link:hover {
    opacity: 0.85;
}

.social-text-icon {
    font-size: 18px;
}

.social-text-vk { background: #0077ff; }
.social-text-telegram { background: #0088cc; }
.social-text-whatsapp { background: #25d366; }

/* Social - Sticky Sidebar */
.social-sticky-sidebar {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    background: #ffffff;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    border-radius: 0 8px 8px 0;
    padding: 10px 0;
}

.social-sticky-link {
    display: block;
    padding: 12px 15px;
    text-decoration: none;
    font-size: 22px;
    transition: background 0.2s;
    border-bottom: 1px solid #f0f0f0;
}

.social-sticky-link:hover {
    background: #f8f9fa;
}

.social-sticky-link-last {
    display: block;
    padding: 12px 15px;
    text-decoration: none;
    font-size: 22px;
    transition: background 0.2s;
}

.social-sticky-link-last:hover {
    background: #f8f9fa;
}

.social-sticky-facebook { color: #1877f2; }
.social-sticky-instagram { color: #e4405f; }
.social-sticky-twitter { color: #1da1f2; }
.social-sticky-youtube { color: #ff0000; }

/* Social - Monochrome Style */
.social-monochrome {
    display: flex;
    gap: 12px;
    align-items: center;
}

.social-mono-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #2c3e50;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.2s;
}

.social-mono-facebook:hover { background: #1877f2; }
.social-mono-instagram:hover { background: #e4405f; }
.social-mono-twitter:hover { background: #1da1f2; }
.social-mono-linkedin:hover { background: #0077b5; }
.social-mono-youtube:hover { background: #ff0000; }
.social-mono-github:hover { background: #333; }

/* Social - Hero Bottom */
.social-hero-bottom {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.social-hero-label {
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

.social-hero-links {
    display: flex;
    gap: 12px;
}

.social-hero-link {
    width: 36px;
    height: 36px;
    border: 2px solid;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.2s;
}

.social-hero-vk {
    border-color: #0077ff;
    color: #0077ff;
}

.social-hero-vk:hover {
    background: #0077ff;
    color: white;
}

.social-hero-telegram {
    border-color: #0088cc;
    color: #0088cc;
}

.social-hero-telegram:hover {
    background: #0088cc;
    color: white;
}

.social-hero-whatsapp {
    border-color: #25d366;
    color: #25d366;
}

.social-hero-whatsapp:hover {
    background: #25d366;
    color: white;
}

.social-hero-youtube {
    border-color: #ff0000;
    color: #ff0000;
}

.social-hero-youtube:hover {
    background: #ff0000;
    color: white;
}

/* ===========================
   TESTIMONIALS STYLES
   =========================== */

.testimonials-header {
    text-align: center;
}

.testimonials-footer {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.testimonials-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.testimonials-rating {
    text-align: center;
    margin-top: 2rem;
}

/* Testimonials Featured/Slider */
.testimonials-slider {
    background: rgba(102, 126, 234, 0.05);
    padding: 4rem 0;
}

.testimonials-container {
    max-width: 900px;
    margin: 0 auto;
}

.testimonials-article {
    text-align: center;
    padding: 2rem;
}

.testimonials-logo-wrapper {
    margin-bottom: 2rem;
}

.testimonials-logo {
    height: 40px;
    opacity: 0.6;
}

.testimonials-quote {
    font-size: 1.3rem;
    font-style: italic;
    margin: 2rem 0;
}

.testimonials-author-footer {
    margin-top: 2rem;
}

.testimonials-author-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1rem;
}

.testimonials-author-name {
    font-size: 1.2rem;
}

.testimonials-stats {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonials-stat-value {
    font-size: 2rem;
    color: #667eea;
}

.testimonials-nav {
    text-align: center;
    margin-top: 2rem;
}

/* ===========================
   CTA STYLES
   =========================== */

/* CTA Box */
.cta-box-container {
    max-width: 700px;
    margin: 4rem auto;
}

.cta-box-article {
    text-align: center;
    padding: 3rem;
    border: 2px solid #667eea;
    border-radius: 12px;
    background: rgba(102, 126, 234, 0.05);
}

.cta-box-text {
    font-size: 1.1rem;
    margin: 1.5rem 0;
}

.cta-box-form {
    margin: 2rem 0;
}

.cta-box-input {
    flex: 1;
}

.cta-box-note {
    font-size: 0.9rem;
    color: #666;
}

.cta-box-features {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

/* CTA Sticky */
.cta-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    padding: 1rem 0;
    z-index: 1000;
    display: none;
}

.cta-sticky-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-sticky-buttons {
    display: flex;
    gap: 1rem;
}

.cta-sticky-button {
    margin: 0;
}

.cta-section {
    padding: 3rem 0;
}

.cta-gradient-box {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
}

.cta-large-text {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 1rem auto 2rem;
}

.cta-timer-box {
    background: white;
    display: inline-block;
    padding: 1.5rem 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.cta-timer-label {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.cta-timer-value {
    font-size: 2rem;
    font-weight: bold;
    color: #667eea;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.cta-banner-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-banner-title {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-banner-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-banner-button-primary {
    background: white;
    color: #667eea;
    border: none;
}

.cta-banner-button-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
    margin-left: 1rem;
}

.cta-banner-note {
    margin-top: 2rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ===========================
   FORM STYLES
   =========================== */

.form-modal-container {
    text-align: center;
}

.form-sidebar-aside {
    position: sticky;
    top: 20px;
}

/* ===========================
   FOOTER STYLES
   =========================== */

.footer-center {
    text-align: center;
}

.footer-right {
    text-align: right;
}

.footer-copyright {
    font-size: 0.9rem;
}

/* ===========================
   HERO STYLES
   =========================== */

.hero-fullscreen {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero-center {
    text-align: center;
    color: white;
}

.hero-title-large {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* ===========================
   FEATURES STYLES
   =========================== */

.features-header {
    text-align: center;
}

.features-cta {
    text-align: center;
    margin-top: 2rem;
}

/* ===========================
   CONTACTS STYLES
   =========================== */

.contacts-submit-full {
    width: 100%;
}

.contacts-icon-title {
    margin-bottom: 0.5rem;
}

/* ===========================
   ANIMATIONS
   =========================== */

.anim-delay-1 { animation-delay: 0.1s; }
.anim-delay-2 { animation-delay: 0.2s; }
.anim-delay-3 { animation-delay: 0.3s; }
.anim-delay-4 { animation-delay: 0.4s; }
.anim-delay-5 { animation-delay: 0.5s; }

/* ========================================
   HERO STYLES (ADDITIONS)
   ======================================== */
.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-button-white {
    background: white;
    color: #667eea;
}

/* ========================================
   HEADER MINIMAL
   ======================================== */
.header-minimal {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.header-minimal-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-minimal-logo {
    text-decoration: none;
    color: inherit;
}

.header-minimal-logo-text {
    font-size: 1.5rem;
}

.header-minimal-button {
    margin: 0;
}

/* ========================================
   FOOTER MINIMAL
   ======================================== */
.footer-minimal {
    text-align: center;
}

/* ========================================
   CONTENT SECTIONS
   ======================================== */
.content-image-rounded {
    width: 100%;
    border-radius: 8px;
}

.content-image-shadow {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.content-green-bg {
    background: rgba(46, 204, 113, 0.08);
    padding: 3rem 0;
}

.content-blue-bg {
    background-color: rgba(52, 152, 219, 0.05);
    padding: 4rem 0;
}

.content-center-text {
    text-align: center;
}

.content-flex-center {
    display: flex;
    align-items: center;
}

.content-stat-text {
    max-width: 600px;
    margin: 0 auto 2rem;
}

.content-stat-article {
    text-align: center;
    padding: 2rem;
}

.content-stat-value {
    color: #667eea;
    margin-bottom: 0.5rem;
}

.content-stat-cta {
    margin-top: 2rem;
}

.content-gradient-bg {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    padding: 4rem 0;
}

.content-centered-max {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.content-large-text {
    font-size: 1.1rem;
}

.content-quote {
    margin: 2rem 0;
    font-size: 1.2rem;
    font-style: italic;
}

.content-quote-footer {
    margin-top: 1rem;
}

.content-cta-section {
    margin-top: 2rem;
}

@media (max-width: 768px) {
    section {
        padding: 2rem 0;
    }
    
    .hero-fullscreen,
    .hero-large {
        min-height: auto;
        padding: 3rem 0;
    }
}
