/*
Theme Name: Viora
Theme URI: https://example.com/viora
Author: Your Name
Author URI: https://example.com
Description: Красивая современная классическая тема WordPress с элегантным дизайном и отличной производительностью. Идеально подходит для блогов, портфолио и корпоративных сайтов.
Version: 2.1.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: viora
Tags: blog, portfolio, custom-menu, featured-images, threaded-comments, translation-ready, responsive-layout, accessibility-ready

Viora - элегантная тема для WordPress
*/

/* ============================================
   RESET & BASE STYLES
   ============================================ */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

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

:root {
    /* Основные цвета - Viora Design System */
    --background: #f5f5f7;
    --foreground: #1c1c1e;
    --surface: #ffffff;
    --border: #d2d2d7;
    
    /* Акцентные цвета - белые */
    --primary-color: #1a1a2e;
    --primary-dark: #000000;
    --primary-light: #4a4a5c;
    --accent: #1a1a2e;
    --accent-hover: #000000;
    --accent-active: #4a4a5c;
    
    /* Семантические цвета */
    --success: #34c759;
    --error: #ff3b30;
    --warning: #ffcc00;
    --info: #0a84ff;
    --secondary-color: #34c759;
    
    /* Текстовые цвета */
    --text-color: #1c1c1e;
    --text-light: #3a3a3c;
    --text-tertiary: #6e6e73;
    --text-secondary: #3a3a3c;
    
    /* Фоны */
    --bg-color: #ffffff;
    --bg-light: #fbfbfd;
    --bg-dark: #1c1c1e;
    
    /* Границы */
    --border-color: #d2d2d7;
    
    /* Тени */
    --shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    --shadow-soft: 0 8px 20px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 12px 28px rgba(0, 0, 0, 0.08);
    --shadow-strong: 0 16px 32px rgba(0, 0, 0, 0.08);
    
    /* Переходы */
    --transition: all 0.2s ease;
    
    /* Шрифты */
    --font-primary: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-heading: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--foreground);
    background-color: #ffffff;
    line-height: 1.45;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Динамичные фиолетовые световые облака (поверх фона) - отключено для белого фона */
body::before {
    display: none;
}

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

@keyframes backgroundShift {
    0%, 100% { 
        opacity: 1;
        transform: scale(1);
    }
    50% { 
        opacity: 0.8;
        transform: scale(1.05);
    }
}

/* Крупные размытые световые пятна (поверх фона) - отключено для белого фона */
body::after {
    display: none;
}

@keyframes largeBlobFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50px, 50px) scale(1.1);
        opacity: 0.8;
    }
}

@keyframes floatBlob {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    33% { 
        transform: translate(-100px, 100px) scale(1.1);
        opacity: 0.4;
    }
    66% { 
        transform: translate(100px, -100px) scale(0.9);
        opacity: 0.35;
    }
}

.site-wrapper {
    position: relative;
    z-index: 1;
    background: transparent;
}

.site-header,
.site-content,
.site-footer {
    position: relative;
    z-index: 1;
}

/* Abstract Background with Waves */
.abstract-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 200vh;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    will-change: transform;
}

.wave-layer {
    position: absolute;
    width: 120%;
    height: 100%;
    left: -10%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.6;
    will-change: transform;
}

.wave-layer-1 {
    top: 40%;
    background: transparent;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    transform: translateY(0) translateY(var(--parallax-layer1, 0));
    animation: waveFloat1 20s ease-in-out infinite;
    filter: blur(40px);
}

.wave-layer-2 {
    top: 50%;
    background: transparent;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    transform: translateY(0) translateY(var(--parallax-layer2, 0)) scaleX(-1);
    animation: waveFloat2 25s ease-in-out infinite;
    filter: blur(50px);
}

.wave-layer-3 {
    top: 60%;
    background: transparent;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    transform: translateY(0) translateY(var(--parallax-layer3, 0)) scaleX(1);
    animation: waveFloat3 30s ease-in-out infinite;
    filter: blur(60px);
}

.wave-layer-4 {
    top: 70%;
    background: transparent;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    transform: translateY(0) translateY(var(--parallax-layer4, 0));
    animation: waveFloat4 35s ease-in-out infinite;
    filter: blur(45px);
}

.reflection-layer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: transparent;
    transform: translateY(var(--parallax-reflection, 0)) scaleY(-1);
    opacity: 0;
    filter: blur(30px);
    will-change: transform;
}

@keyframes waveFloat1 {
    0%, 100% {
        transform: translateY(var(--parallax-layer1, 0)) translateX(0) scale(1);
        border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    }
    25% {
        transform: translateY(calc(var(--parallax-layer1, 0) - 30px)) translateX(20px) scale(1.05);
        border-radius: 45% 55% 0 0 / 95% 105% 0 0;
    }
    50% {
        transform: translateY(calc(var(--parallax-layer1, 0) - 20px)) translateX(-15px) scale(0.98);
        border-radius: 55% 45% 0 0 / 105% 95% 0 0;
    }
    75% {
        transform: translateY(calc(var(--parallax-layer1, 0) - 40px)) translateX(10px) scale(1.02);
        border-radius: 48% 52% 0 0 / 98% 102% 0 0;
    }
}

@keyframes waveFloat2 {
    0%, 100% {
        transform: translateY(var(--parallax-layer2, 0)) translateX(0) scaleX(-1) scale(1);
        border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    }
    33% {
        transform: translateY(calc(var(--parallax-layer2, 0) - 25px)) translateX(-25px) scaleX(-1) scale(1.03);
        border-radius: 52% 48% 0 0 / 102% 98% 0 0;
    }
    66% {
        transform: translateY(calc(var(--parallax-layer2, 0) - 35px)) translateX(25px) scaleX(-1) scale(0.97);
        border-radius: 48% 52% 0 0 / 98% 102% 0 0;
    }
}

@keyframes waveFloat3 {
    0%, 100% {
        transform: translateY(var(--parallax-layer3, 0)) translateX(0) scale(1);
        border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    }
    25% {
        transform: translateY(calc(var(--parallax-layer3, 0) - 20px)) translateX(-20px) scale(1.04);
        border-radius: 46% 54% 0 0 / 96% 104% 0 0;
    }
    50% {
        transform: translateY(calc(var(--parallax-layer3, 0) - 30px)) translateX(20px) scale(0.99);
        border-radius: 54% 46% 0 0 / 104% 96% 0 0;
    }
    75% {
        transform: translateY(calc(var(--parallax-layer3, 0) - 15px)) translateX(-10px) scale(1.01);
        border-radius: 49% 51% 0 0 / 99% 101% 0 0;
    }
}

@keyframes waveFloat4 {
    0%, 100% {
        transform: translateY(var(--parallax-layer4, 0)) translateX(0) scale(1);
        border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    }
    30% {
        transform: translateY(calc(var(--parallax-layer4, 0) - 25px)) translateX(15px) scale(1.02);
        border-radius: 47% 53% 0 0 / 97% 103% 0 0;
    }
    60% {
        transform: translateY(calc(var(--parallax-layer4, 0) - 40px)) translateX(-20px) scale(0.98);
        border-radius: 53% 47% 0 0 / 103% 97% 0 0;
    }
    90% {
        transform: translateY(calc(var(--parallax-layer4, 0) - 10px)) translateX(25px) scale(1.01);
        border-radius: 51% 49% 0 0 / 101% 99% 0 0;
    }
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--foreground);
    letter-spacing: -0.02em;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--accent-hover);
}

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

/* ============================================
   LAYOUT
   ============================================ */

.container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Landing page - remove container padding for full-width sections */
body.home .site-content > .container {
    padding: 0 20px;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}

body.home .hero-section,
body.home .offers-section,
body.home .why-section,
body.home .testimonials-section,
body.home .blog-section,
body.home .contact-section {
    display: block;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.site-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-content {
    flex: 1;
    padding: 0;
}

.site-content .container {
    padding: 2rem 20px;
}

/* ============================================
   HEADER
   ============================================ */

.site-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(100%);
    -webkit-backdrop-filter: blur(20px) saturate(100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.875rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* Integrated header inside glass */
.site-header-integrated {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px) saturate(100%);
    -webkit-backdrop-filter: blur(16px) saturate(100%);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 24px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    position: relative;
    z-index: 10;
    padding: 1rem 4rem;
    margin: 0;
    transition: all 0.3s ease;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.hero-large-glass.scrolled .site-header-integrated {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(100%);
    -webkit-backdrop-filter: blur(20px) saturate(100%);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    margin: 0 !important;
    padding: 0.875rem 4rem;
    width: 100% !important;
    max-width: 100% !important;
    z-index: 1000;
    transform: translateZ(0);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.header-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    font-size: 0.95rem;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .header-cta-btn {
        display: none;
    }
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
    position: relative !important;
    left: 0 !important;
    margin-left: 0 !important;
    margin-right: auto !important;
    order: 1 !important;
    flex-grow: 0 !important;
}

.site-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

.site-title a,
.site-logo-link {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.site-title a:hover,
.site-logo-link:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

.site-logo-image {
    height: 42px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    display: block;
    transition: var(--transition);
}

.custom-logo-link img,
.site-logo-image {
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.site-description {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
}

/* ============================================
   NAVIGATION
   ============================================ */

.main-navigation {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    position: relative;
}

.menu-toggle-icon {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 24px;
    height: 18px;
}

.menu-toggle-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-color);
    transition: var(--transition);
    border-radius: 2px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.main-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

.main-menu li {
    position: relative;
}

.main-menu a {
    color: var(--text-color);
    font-weight: 500;
    padding: 0.5rem 0;
    display: block;
    position: relative;
    text-decoration: none;
}

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

.main-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.main-menu a:hover::after {
    width: 100%;
}

/* ============================================
   CONTENT AREA
   ============================================ */

.content-area {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    margin-top: 2rem;
}

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

.post {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    margin-bottom: 2rem;
    transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.post:hover {
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    border-color: #c7c7cc;
    transform: translateY(-2px);
}

.post-header {
    padding: 2rem;
}

.post-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.post-title a {
    color: var(--text-color);
}

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

.post-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.post-thumbnail {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.post-content {
    padding: 2rem;
}

.post-content p {
    margin-bottom: 1.5rem;
}

.post-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.read-more,
.hero-button,
.contact-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 12px;
    background: var(--accent);
    color: #ffffff;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
}

.read-more:hover,
.hero-button:hover,
.contact-submit:hover {
    background: var(--accent-hover);
    color: white;
    transform: translateY(1px);
}

.read-more:active,
.hero-button:active,
.contact-submit:active {
    background: var(--accent-active);
    transform: translateY(2px);
}

/* ============================================
   SIDEBAR
   ============================================ */

.sidebar {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 24px;
    border-radius: 16px;
    height: fit-content;
    box-shadow: var(--shadow-soft);
}

.widget {
    margin-bottom: 2rem;
}

.widget:last-child {
    margin-bottom: 0;
}

.widget-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
}

.widget ul {
    list-style: none;
}

.widget li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.widget li:last-child {
    border-bottom: none;
}

.widget a {
    color: var(--text-color);
}

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

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    color: #ffffff;
    padding: 4rem 0 1.5rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 -8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    pointer-events: none;
}

.site-footer-dark {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    box-shadow: 
        0 -8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

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

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-logo a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
}

.footer-logo a:hover {
    color: rgba(255, 255, 255, 1);
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.9);
    transition: var(--transition);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    color: rgba(255, 255, 255, 1);
}

.footer-title {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.125rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.site-footer-dark .footer-title {
    color: rgba(255, 255, 255, 0.95);
}

.site-footer-dark .footer-description,
.site-footer-dark .footer-menu-list a,
.site-footer-dark .contact-item,
.site-footer-dark .contact-item a {
    color: rgba(255, 255, 255, 0.8);
}

.site-footer-dark .footer-menu-list a:hover,
.site-footer-dark .contact-item a:hover {
    color: rgba(255, 255, 255, 1);
}

.site-footer-dark .site-info {
    color: rgba(255, 255, 255, 0.7);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.site-footer-dark .site-info a {
    color: rgba(255, 255, 255, 0.8);
}

.site-footer-dark .site-info a:hover {
    color: rgba(255, 255, 255, 1);
}

.site-footer-dark .social-link {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.site-footer-dark .social-link:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.3);
}

.footer-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu-list li {
    margin-bottom: 0.75rem;
}

.footer-menu-list a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-menu-list a:hover {
    color: rgba(255, 255, 255, 1);
    padding-left: 5px;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.contact-item svg {
    flex-shrink: 0;
    opacity: 0.8;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: rgba(255, 255, 255, 1);
}

.footer-widget h3 {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1rem;
}

.footer-widget a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-widget a:hover {
    color: rgba(255, 255, 255, 1);
}

.site-info {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.site-info a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.site-info a:hover {
    color: rgba(255, 255, 255, 1);
}

/* ============================================
   BUTTONS & FORMS
   ============================================ */

button,
.button,
input[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 12px;
    background: var(--accent);
    color: #ffffff;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    font-size: 1rem;
}

button:hover,
.button:hover,
input[type="submit"]:hover {
    background: var(--accent-hover);
    transform: translateY(1px);
}

button:active,
.button:active,
input[type="submit"]:active {
    background: var(--accent-active);
    transform: translateY(2px);
}

input[type="text"],
input[type="email"],
input[type="search"],
textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: 1rem;
    font-family: var(--font-primary);
    background: var(--surface);
    color: var(--foreground);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="search"]:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(94, 92, 230, 0.18);
}

/* ============================================
   COMMENTS
   ============================================ */

.comments-area {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-color);
}

.comments-title {
    font-size: 1.75rem;
    margin-bottom: 2rem;
}

.comment-list {
    list-style: none;
    margin-bottom: 2rem;
}

.comment {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.comment-body {
    display: flex;
    gap: 1rem;
}

.comment-author-avatar {
    flex-shrink: 0;
}

.comment-author-avatar img {
    border-radius: 50%;
    width: 60px;
    height: 60px;
}

.comment-content {
    flex: 1;
}

.comment-meta {
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.comment-author {
    font-weight: 600;
    color: var(--text-color);
}

.comment-reply-link {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--primary-color);
}

.comment-form {
    margin-top: 2rem;
}

.comment-form p {
    margin-bottom: 1rem;
}

.comment-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

/* ============================================
   PAGINATION
   ============================================ */

.pagination,
.posts-navigation {
    margin: 3rem 0;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.pagination .page-numbers,
.posts-navigation .nav-links a {
    display: inline-block;
    padding: 0.75rem 1rem;
    background: var(--bg-light);
    color: var(--text-color);
    border-radius: 6px;
    transition: var(--transition);
    text-decoration: none;
}

.pagination .page-numbers:hover,
.posts-navigation .nav-links a:hover,
.pagination .page-numbers.current {
    background: var(--primary-color);
    color: white;
}

.pagination .prev,
.pagination .next,
.posts-navigation .nav-previous,
.posts-navigation .nav-next {
    font-weight: 600;
}

/* ============================================
   PAGE HEADER
   ============================================ */

.page-header {
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.archive-description {
    color: var(--text-light);
    font-size: 1.125rem;
    margin-top: 1rem;
}

/* ============================================
   SEARCH FORM
   ============================================ */

.search-form {
    display: flex;
    gap: 0.5rem;
    margin: 2rem 0;
}

.search-form label {
    flex: 1;
}

.search-form input[type="search"] {
    flex: 1;
    margin: 0;
}

.search-form input[type="submit"] {
    padding: 0.75rem 1.5rem;
}

/* ============================================
   ENTRY FOOTER
   ============================================ */

.entry-footer {
    padding: 1.5rem 2rem;
    background: var(--bg-light);
    border-top: 1px solid var(--border-color);
    font-size: 0.875rem;
    color: var(--text-light);
}

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

.tags-links,
.cat-links {
    display: inline-block;
    margin-right: 1rem;
}

/* ============================================
   PAGE LINKS
   ============================================ */

.page-links {
    margin: 2rem 0;
    padding: 1rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.page-links a {
    display: inline-block;
    padding: 0.5rem 0.75rem;
    margin: 0 0.25rem;
    background: var(--bg-light);
    border-radius: 4px;
    transition: var(--transition);
}

.page-links a:hover {
    background: var(--primary-color);
    color: white;
}

.page-links > span {
    font-weight: 600;
    margin-right: 0.5rem;
}

/* ============================================
   GLASSMORPHISM LANDING PAGE STYLES
   ============================================ */

/* Glass Card Base - Premium Glass Design */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 24px 24px 0 0;
    pointer-events: none;
    z-index: 1;
}

.glass-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    opacity: 0.3;
    pointer-events: none;
    z-index: 1;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% {
        transform: translate(-50%, -50%) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) rotate(180deg);
        opacity: 0.5;
    }
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        inset 0 -1px 0 rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.3);
}

.glass-card:hover::after {
    opacity: 0.6;
}

/* Контент внутри стеклянных карточек должен быть поверх бликов */
.glass-card > *,
.glass-card-large > *,
.offer-card > *,
.why-card > *,
.product-card > * {
    position: relative;
    z-index: 2;
}

.glass-card-large {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 32px;
    box-shadow: 
        0 16px 40px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1);
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.glass-card-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 32px 32px 0 0;
    pointer-events: none;
    z-index: 1;
}

.glass-card-large::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    opacity: 0.3;
    pointer-events: none;
    z-index: 1;
    animation: shimmer 3s ease-in-out infinite;
}

.glass-accent {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f0f0f5 0%, #e8e8f0 50%, #f5f5f7 100%);
    overflow: hidden;
    padding: 4rem 0;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
    z-index: 1;
}

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

/* Абстрактные формы для Hero */
.hero-background::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: transparent;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morphBlob1 20s ease-in-out infinite;
    filter: blur(60px);
}

.hero-background::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: transparent;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: morphBlob2 25s ease-in-out infinite;
    filter: blur(60px);
}

@keyframes morphBlob1 {
    0%, 100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
        transform: translate(50px, -30px) rotate(90deg);
    }
    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
        transform: translate(30px, 50px) rotate(180deg);
    }
    75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
        transform: translate(-30px, 20px) rotate(270deg);
    }
}

@keyframes morphBlob2 {
    0%, 100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
        transform: translate(-40px, 40px) rotate(-90deg);
    }
    50% {
        border-radius: 40% 60% 50% 50% / 40% 50% 60% 50%;
        transform: translate(40px, -20px) rotate(-180deg);
    }
    75% {
        border-radius: 70% 30% 50% 50% / 30% 50% 50% 70%;
        transform: translate(20px, 30px) rotate(-270deg);
    }
}

/* Дополнительные декоративные элементы */
.hero-background {
    background: transparent;
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--foreground);
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
}

.hero-logo {
    margin-bottom: 2rem;
}

.logo-image {
    width: 120px;
    height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 8px 24px rgba(94, 92, 230, 0.2));
    animation: logoFloat 6s ease-in-out infinite;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--foreground);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.glass-button-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(94, 92, 230, 0.3);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.glass-button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(94, 92, 230, 0.4);
    background: linear-gradient(135deg, var(--accent-hover), var(--accent));
}

.glass-button-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--accent);
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    border: 1px solid rgba(94, 92, 230, 0.2);
}

.glass-button-secondary:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.hero-features {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--foreground);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.badge-icon {
    font-size: 1.25rem;
}


/* Section Header */
.section-header {
    text-align: center;
    padding: 2rem;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--foreground);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features-section {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--background) 0%, #ffffff 100%);
    width: 100%;
    margin: 0;
    z-index: 1;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 5%;
    width: 400px;
    height: 400px;
    background: transparent;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    animation: floatSlow 30s ease-in-out infinite;
}

.features-section::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: 5%;
    width: 500px;
    height: 500px;
    background: transparent;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    animation: floatSlow 35s ease-in-out infinite reverse;
}

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.feature-card {
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 24px 24px 0 0;
    pointer-events: none;
    z-index: 1;
}

.feature-card > * {
    position: relative;
    z-index: 2;
}

.feature-badge-new {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(52, 199, 89, 0.15);
    backdrop-filter: blur(10px);
    color: #247c42;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(52, 199, 89, 0.3);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--foreground);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--foreground);
    font-weight: 600;
}

.feature-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    text-align: left;
}

.feature-list li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 600;
}

.feature-link {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.feature-link:hover {
    color: var(--accent-hover);
    transform: translateX(5px);
}

/* Benefits Section */
.benefits-section {
    position: relative;
    padding: 5rem 0;
    background: var(--background);
    width: 100%;
    margin: 0;
    z-index: 1;
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 600px;
    height: 600px;
    background: transparent;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
    animation: floatSlow 40s ease-in-out infinite;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.benefit-item {
    padding: 2rem;
    text-align: center;
}

.benefit-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
    line-height: 1;
}

.benefit-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--foreground);
    font-weight: 600;
}

.benefit-text {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

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

.offer-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 24px;
    border-radius: 16px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1);
    transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 16px 16px 0 0;
    pointer-events: none;
    z-index: 1;
}

.offer-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        inset 0 -1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.offer-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--foreground);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.offer-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.offer-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.offer-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 10px;
    background: rgba(52, 199, 89, 0.12);
    color: #247c42;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 1rem;
}

.offer-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.offer-link:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

/* Why Section */
.why-section {
    padding: 5rem 0;
    background: var(--surface);
    width: 100%;
    margin: 0;
}

.why-slider-wrapper {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.why-slider {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.why-slider::-webkit-scrollbar {
    display: none;
}

.why-card {
    flex: 0 0 320px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 24px;
    border-radius: 16px;
    text-align: center;
    transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 16px 16px 0 0;
    pointer-events: none;
    z-index: 1;
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--foreground);
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        inset 0 -1px 0 rgba(255, 255, 255, 0.15);
}

.why-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.why-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.why-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-nav:hover {
    background: var(--primary-color);
    color: white;
}

.slider-prev {
    left: 0;
}

.slider-next {
    right: 0;
}

/* Testimonials Section */
.testimonials-section {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(180deg, #ffffff 0%, var(--background) 100%);
    width: 100%;
    margin: 0;
    z-index: 1;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: transparent;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
    animation: floatSlow 45s ease-in-out infinite;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    padding: 2rem;
    opacity: 0;
    transform: translateY(30px);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 24px 24px 0 0;
    pointer-events: none;
    z-index: 1;
}

.testimonial-card > * {
    position: relative;
    z-index: 2;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.glass-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--foreground);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 600;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-name {
    color: var(--foreground);
    font-size: 1rem;
    font-weight: 600;
}

.testimonial-role {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.testimonial-card.fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.testimonial-avatar {
    margin-bottom: 1.5rem;
}

.avatar-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 auto;
    box-shadow: 0 8px 20px rgba(94, 92, 230, 0.2);
}

.testimonial-quote {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
    padding-left: 1.5rem;
}

.testimonial-quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: var(--accent);
    opacity: 0.2;
}

.testimonial-rating {
    color: #ffcc00;
    font-size: 1.125rem;
    letter-spacing: 2px;
}

/* Portfolio Section */
.portfolio-section {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(180deg, #ffffff 0%, var(--background) 100%);
    width: 100%;
    margin: 0;
    z-index: 1;
    overflow: hidden;
}

.portfolio-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 0;
    pointer-events: none;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.portfolio-item {
    padding: 0;
    overflow: hidden;
    position: relative;
}

.portfolio-media {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 24px;
}

.portfolio-image,
.portfolio-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: all 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.portfolio-item:hover .portfolio-image,
.portfolio-item:hover .portfolio-video {
    transform: scale(1.1);
}

.portfolio-info {
    color: white;
    width: 100%;
}

.portfolio-ai-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.portfolio-description {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Blog Section */
.blog-section {
    position: relative;
    padding: 5rem 0;
    background: var(--background);
    width: 100%;
    margin: 0;
    z-index: 1;
    overflow: hidden;
}

.blog-section::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 15%;
    width: 500px;
    height: 500px;
    background: transparent;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
    animation: floatSlow 35s ease-in-out infinite;
}

.blog-section::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: 10%;
    width: 400px;
    height: 400px;
    background: transparent;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
    animation: floatSlow 40s ease-in-out infinite reverse;
}

.blog-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.blog-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    font-size: 1.125rem;
    transition: var(--transition);
}

.blog-link:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.blog-card {
    padding: 0;
    overflow: hidden;
    position: relative;
}

.blog-thumbnail-wrapper {
    display: block;
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    text-decoration: none;
}

.blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-image-placeholder {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--foreground);
    opacity: 0.5;
}

.blog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: all 0.4s ease;
}

.blog-thumbnail-wrapper:hover .blog-overlay {
    opacity: 1;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.blog-thumbnail-wrapper:hover .blog-image {
    transform: scale(1.1);
}

.blog-overlay-content {
    color: white;
    width: 100%;
}

.blog-meta-overlay {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.blog-date,
.blog-tags {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.blog-main {
    width: 100%;
}

.blog-main .content-area {
    grid-template-columns: 1fr;
}

.blog-card .blog-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.blog-card .blog-excerpt {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1rem;
    line-height: 1.6;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.blog-card .blog-read-more {
    color: white;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.2s ease;
}

.blog-thumbnail-wrapper:hover .blog-read-more {
    transform: translateX(5px);
}

.blog-placeholder {
    padding: 3rem;
    text-align: center;
    color: var(--text-secondary);
    grid-column: 1 / -1;
}

.blog-category,
.glass-badge-small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--foreground);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.glass-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
}

.glass-link {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.glass-link:hover {
    color: var(--accent-hover);
    transform: translateX(5px);
}

.blog-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.blog-title a {
    color: var(--text-color);
    text-decoration: none;
}

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

.blog-excerpt {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.blog-read-more {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.blog-read-more:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

/* Contact Section */
.contact-section {
    position: relative;
    padding: 5rem 0;
    background: #ffffff;
    width: 100%;
    margin: 0;
    overflow: hidden;
}

.contact-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 0;
}

.contact-background::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 20%;
    width: 400px;
    height: 400px;
    background: transparent;
    border-radius: 50%;
    filter: blur(80px);
    animation: floatSlow 30s ease-in-out infinite;
}

.contact-background::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: 20%;
    width: 500px;
    height: 500px;
    background: transparent;
    border-radius: 50%;
    filter: blur(80px);
    animation: floatSlow 35s ease-in-out infinite reverse;
}

.contact-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.container {
    position: relative;
    z-index: 1;
}

.contact-section .section-title {
    color: var(--foreground);
    margin-bottom: 1rem;
}

.contact-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    color: var(--text-secondary);
}

.contact-form {
    text-align: left;
}

.glass-input {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 16px;
    font-size: 1rem;
    font-family: var(--font-primary);
    color: var(--foreground);
    transition: all 0.3s ease;
}

.glass-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.8);
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(94, 92, 230, 0.15);
}

.glass-input::placeholder {
    color: var(--text-tertiary);
}

.glass-alert {
    padding: 1rem 1.5rem;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 500;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.glass-alert-success {
    background: rgba(52, 199, 89, 0.15);
    border: 1px solid rgba(52, 199, 89, 0.3);
    color: #247c42;
}

.glass-alert-error {
    background: rgba(255, 59, 48, 0.15);
    border: 1px solid rgba(255, 59, 48, 0.3);
    color: #cc2e24;
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: 1rem;
    font-family: var(--font-primary);
    background: var(--surface);
    color: var(--foreground);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(94, 92, 230, 0.18);
}

.contact-submit {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(94, 92, 230, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.contact-submit:hover {
    background: linear-gradient(135deg, var(--accent-hover), var(--accent));
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(94, 92, 230, 0.4);
}

.contact-submit:active {
    transform: translateY(0);
}

.contact-message {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 500;
}

.contact-success {
    background: #e6f8ed;
    border: 1px solid #c7f2d7;
    color: #1c1c1e;
    border-radius: 16px;
}

.contact-error {
    background: #fff3f2;
    border: 1px solid #ffd3ce;
    color: #1c1c1e;
    border-radius: 16px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Large Tablets and Small Desktops */
@media (max-width: 1024px) {
    .container {
        max-width: 100%;
        padding: 0 30px;
    }
    
    .hero-large-glass {
        width: 96%;
        max-width: 96%;
        min-height: 65vh;
        max-height: 75vh;
    }
    
    .hero-content-wrapper {
        padding: 3rem 3rem;
        gap: 2.5rem;
    }
    
    .site-header-integrated {
        padding: 1rem 3rem;
        border-radius: 24px 24px 0 0;
    }
    
    .hero-large-glass.scrolled .site-header-integrated {
        padding: 0.875rem 3rem;
        border-radius: 0;
    }
    
    .hero-title-premium {
        font-size: 2.5rem;
        margin-bottom: 0.875rem;
    }
    
    .hero-subtitle-premium {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-logo-image {
        max-width: 300px;
    }
    
    .hero-buttons-premium {
        gap: 0.75rem;
    }
    
    .btn-glass-primary,
    .btn-glass-secondary {
        padding: 14px 28px;
        font-size: 1rem;
    }

    .content-area {
        grid-template-columns: 1fr 280px;
        gap: 2rem;
    }

    .hero-title {
        font-size: 3rem;
    }

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

    .why-card {
        flex: 0 0 300px;
    }
}

/* Tablets */
@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .hero-section-premium {
        min-height: 100vh;
        max-height: 100vh;
        padding: 1rem 0 0 0;
        align-items: flex-start;
    }
    
    .hero-large-glass {
        flex-direction: column;
        width: 95%;
        max-width: 95%;
        min-height: auto;
        max-height: 90vh;
        margin: 1rem auto 0 auto;
    }
    
    .hero-content-wrapper {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
    }
    
    .site-header-integrated {
        padding: 1rem 1.5rem;
        border-radius: 24px 24px 0 0;
    }
    
    .hero-large-glass.scrolled .site-header-integrated {
        padding: 0.875rem 1.5rem;
        border-radius: 0;
    }
    
    .hero-content-left {
        max-width: 100%;
        text-align: center;
        order: 2;
    }
    
    .hero-logo-right {
        order: 1;
    }
    
    .hero-title-premium {
        font-size: 2rem;
        margin-bottom: 0.75rem;
        text-align: center;
    }
    
    .hero-subtitle-premium {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        text-align: center;
        line-height: 1.4;
    }
    
    .hero-buttons-premium {
        justify-content: center;
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }
    
    .btn-glass-primary,
    .btn-glass-secondary {
        width: 100%;
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    
    .hero-logo-image {
        max-width: 200px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    
    /* Header */
    .header-content {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
        position: relative;
    }
    
    .menu-toggle {
        display: block;
        order: 2;
    }
    
    .main-navigation {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: var(--shadow-lg);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        z-index: 1000;
    }

    .main-navigation.active {
        max-height: 500px;
        padding: 1rem 0;
    }
    
    .main-menu {
        flex-direction: column;
        gap: 0;
        width: 100%;
        padding: 0 20px;
    }

    .main-menu li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .main-menu li:last-child {
        border-bottom: none;
    }

    .main-menu a {
        padding: 1rem 0;
        width: 100%;
    }

    .main-menu a::after {
        display: none;
    }
    
    /* Content Area */
    .content-area {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .post-thumbnail {
        height: 250px;
    }

    /* Landing Page - Hero */
    .hero-content {
        padding: 2rem;
    }

    .logo-image {
        width: 100px;
        height: 100px;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .hero-section {
        min-height: 80vh;
        padding: 3rem 0;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .glass-button-primary,
    .glass-button-secondary {
        width: 100%;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
    }

    .feature-badge {
        width: 100%;
        justify-content: center;
    }

    /* Sections */
    .section-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .features-section,
    .benefits-section,
    .testimonials-section,
    .blog-section,
    .contact-section {
        padding: 3rem 0;
    }

    .features-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .glass-card-large {
        padding: 2rem;
    }

    /* Offers Grid */
    .offers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .offer-card {
        padding: 2rem;
    }

    /* Why Slider */
    .why-slider-wrapper {
        padding: 1rem 0;
    }

    .why-card {
        flex: 0 0 280px;
        padding: 1.5rem;
    }

    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-card {
        padding: 2rem;
    }

    /* Blog */
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .portfolio-media {
        height: 300px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .blog-thumbnail-wrapper {
        height: 400px;
    }

    .blog-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    /* Contact Form */
    .contact-form {
        padding: 1.5rem;
    }

    .contact-subtitle {
        font-size: 1rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* Mobile Devices */
@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .hero-section-premium {
        min-height: 100vh;
        max-height: 100vh;
        padding: 0.5rem 0 0 0;
        align-items: flex-start;
    }
    
    .hero-large-glass {
        flex-direction: column;
        width: 98%;
        max-width: 98%;
        min-height: auto;
        max-height: 95vh;
        margin: 0.5rem auto 0 auto;
    }
    
    .hero-content-wrapper {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem 1rem;
    }
    
    .site-header-integrated {
        padding: 1rem 1rem;
        border-radius: 24px 24px 0 0;
    }
    
    .hero-large-glass.scrolled .site-header-integrated {
        padding: 0.75rem 1rem;
        border-radius: 0;
    }
    
    .hero-content-left {
        max-width: 100%;
        text-align: center;
        order: 2;
    }
    
    .hero-logo-right {
        order: 1;
    }
    
    .hero-title-premium {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
        text-align: center;
        line-height: 1.2;
    }
    
    .hero-subtitle-premium {
        font-size: 0.875rem;
        margin-bottom: 1.25rem;
        text-align: center;
        line-height: 1.4;
    }
    
    .hero-buttons-premium {
        justify-content: center;
        flex-direction: column;
        gap: 0.625rem;
        width: 100%;
    }
    
    .btn-glass-primary,
    .btn-glass-secondary {
        width: 100%;
        padding: 10px 20px;
        font-size: 0.875rem;
    }
    
    .hero-logo-image {
        max-width: 150px;
    }

    .container {
        padding: 0 15px;
    }

    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }

    /* Header Mobile */
    .site-title {
        font-size: 1.5rem;
    }

    .site-logo-image {
        height: 36px;
        max-width: 130px;
    }

    .hero-buttons-premium {
        flex-direction: column;
    }

    .btn-glass-primary,
    .btn-glass-secondary {
        width: 100%;
    }

    .benefits-grid-premium {
        grid-template-columns: 1fr;
    }

    .use-cases-grid {
        grid-template-columns: 1fr;
    }

    .products-section .products-grid {
        flex-direction: column !important;
    }
    
    .product-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.5rem;
    }
    
    .product-header {
        min-width: auto;
        width: 100%;
    }

    .main-menu {
        flex-direction: column;
        gap: 0.75rem;
    }

    .main-menu a {
        padding: 0.75rem 0;
        display: block;
        width: 100%;
    }

    /* Hero Mobile */
    .hero-content {
        padding: 1.5rem;
    }

    .logo-image {
        width: 80px;
        height: 80px;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }

    .hero-section {
        min-height: 70vh;
        padding: 2rem 0;
    }

    .glass-button-primary,
    .glass-button-secondary {
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    /* Sections Mobile */
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .offers-section,
    .why-section,
    .testimonials-section,
    .blog-section,
    .contact-section {
        padding: 2.5rem 0;
    }

    /* Cards Mobile */
    .offer-card {
        padding: 1.5rem;
    }

    .offer-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

    .offer-title {
        font-size: 1.25rem;
    }

    /* Slider Mobile */
    .why-card {
        flex: 0 0 260px;
        padding: 1.25rem;
    }

    .why-icon {
        font-size: 2.5rem;
    }

    .slider-nav {
        width: 35px;
        height: 35px;
        font-size: 1.125rem;
    }

    /* Testimonials Mobile */
    .testimonial-card {
        padding: 1.5rem;
    }

    .avatar-placeholder {
        width: 60px;
        height: 60px;
        font-size: 1.25rem;
    }

    .testimonial-quote {
        font-size: 1rem;
        padding-left: 1rem;
    }

    /* Portfolio Mobile */
    .portfolio-media {
        height: 250px;
    }

    .portfolio-overlay {
        padding: 1.5rem;
    }

    .portfolio-ai-name {
        font-size: 1.25rem;
    }

    .portfolio-description {
        font-size: 0.9rem;
    }

    /* Blog Mobile */
    .blog-thumbnail-wrapper {
        height: 350px;
    }

    /* Premium Sections Mobile */
    .hero-title-premium {
        font-size: 2rem;
    }

    .hero-subtitle-premium {
        font-size: 1.125rem;
    }

    .hero-content-premium {
        padding: 2rem 1.5rem;
    }

    .products-section .products-grid {
        flex-direction: column !important;
        gap: 1.5rem;
    }
    
    .product-card {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .product-header {
        min-width: auto;
        width: 100%;
    }

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

    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .process-line {
        display: none;
    }

    .ui-gallery-grid {
        grid-template-columns: 1fr;
    }

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

    .cases-grid {
        grid-template-columns: 1fr;
    }

    .blog-grid-premium {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .blog-overlay {
        padding: 1.5rem;
    }

    .blog-card .blog-title {
        font-size: 1.25rem;
    }

    /* Contact Mobile */
    .contact-content {
        padding: 0 10px;
    }

    .contact-form {
        padding: 1.25rem;
    }

    .form-group {
        margin-bottom: 1.25rem;
    }

    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .footer-social {
        justify-content: center;
    }

    .footer-menu-list {
        text-align: center;
    }

    .contact-item {
        justify-content: center;
    }
}

/* Small Mobile Devices */
@media (max-width: 320px) {
    html {
        font-size: 13px;
    }

    .container {
        padding: 0 10px;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .offer-card,
    .testimonial-card {
        padding: 1.25rem;
    }

    .why-card {
        flex: 0 0 240px;
        padding: 1rem;
    }

    .contact-form {
        padding: 1rem;
    }
}

/* Landscape Orientation for Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-section {
        min-height: 80vh;
    }

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

/* Print Styles */
@media print {
    .site-header,
    .site-footer,
    .hero-button,
    .slider-nav,
    .contact-form {
        display: none;
    }

    .hero-section,
    .offers-section,
    .why-section,
    .testimonials-section,
    .blog-section {
        page-break-inside: avoid;
    }
}

/* ============================================
   PREMIUM GLASS DESIGN - NEW SECTIONS
   ============================================ */

/* Parallax Background Layers with b5.png */
.parallax-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 200vh;
    z-index: -1;
    pointer-events: none;
    overflow: visible;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    display: none;
}

.parallax-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200vh;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: transform;
    transform-origin: center top;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    image-rendering: auto;
    -webkit-font-smoothing: antialiased;
}

.parallax-layer-1 {
    opacity: 0.8;
    transform: translateY(0) scale(1);
    background-size: cover;
    background-position: center top;
}

.parallax-layer-2 {
    opacity: 0.6;
    transform: translateY(0) scale(1.05);
    background-size: cover;
    background-position: center 10%;
}

.parallax-layer-3 {
    opacity: 0.4;
    transform: translateY(0) scale(1.1);
    background-size: cover;
    background-position: center 20%;
}

/* Premium Hero Section */
.hero-section-premium {
    position: relative;
    min-height: 100vh;
    max-height: 100vh;
    display: flex;
    align-items: flex-start;
    padding: 2rem 0 0 0;
    overflow: hidden;
    z-index: 1;
}

.hero-section-premium .container {
    width: 100%;
    max-width: 100%;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-background-layers {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-bg-cloud {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    will-change: transform;
}

.hero-bg-cloud-1 {
    top: -20%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: transparent;
    animation: cloudMove1 50s ease-in-out infinite;
}

.hero-bg-cloud-2 {
    bottom: -30%;
    left: -15%;
    width: 1000px;
    height: 1000px;
    background: transparent;
    animation: cloudMove2 60s ease-in-out infinite;
}

.hero-bg-cloud-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: transparent;
    animation: cloudMove3 45s ease-in-out infinite;
}

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

@keyframes cloudMove2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-40px, 60px) scale(1.05); }
}

@keyframes cloudMove3 {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-45%, -55%) scale(1.08); }
}

.hero-ui-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

.ui-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px) saturate(120%);
    -webkit-backdrop-filter: blur(20px) saturate(120%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    will-change: transform;
}

.ui-card-1 {
    top: 15%;
    right: 10%;
    width: 200px;
    height: 150px;
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
    animation: uiFloat1 8s ease-in-out infinite;
}

.ui-card-2 {
    bottom: 20%;
    left: 8%;
    width: 180px;
    height: 140px;
    transform: perspective(1000px) rotateY(20deg) rotateX(-5deg);
    animation: uiFloat2 10s ease-in-out infinite;
}

.ui-card-3 {
    top: 50%;
    right: 20%;
    width: 160px;
    height: 120px;
    transform: perspective(1000px) rotateY(-10deg);
    animation: uiFloat3 9s ease-in-out infinite;
}

@keyframes uiFloat1 {
    0%, 100% { transform: perspective(1000px) rotateY(-15deg) rotateX(5deg) translateY(0); }
    50% { transform: perspective(1000px) rotateY(-15deg) rotateX(5deg) translateY(-20px); }
}

@keyframes uiFloat2 {
    0%, 100% { transform: perspective(1000px) rotateY(20deg) rotateX(-5deg) translateY(0); }
    50% { transform: perspective(1000px) rotateY(20deg) rotateX(-5deg) translateY(15px); }
}

@keyframes uiFloat3 {
    0%, 100% { transform: perspective(1000px) rotateY(-10deg) translateY(0); }
    50% { transform: perspective(1000px) rotateY(-10deg) translateY(-10px); }
}

.hero-large-glass {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    width: 95%;
    max-width: 95%;
    min-height: 70vh;
    max-height: 80vh;
    margin: 2rem auto 0 auto;
    padding: 0;
    overflow: hidden;
}

.hero-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    padding: 3rem 4rem;
    flex: 1;
    transition: padding-top 0.3s ease;
}


.hero-content-left {
    flex: 1;
    max-width: 60%;
}

.hero-logo-right {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo-image {
    max-width: 400px;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

.hero-content-premium {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 3rem;
    background: rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 32px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.hero-title-premium {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a2e;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-align: left;
}

.hero-subtitle-premium {
    font-size: 1.125rem;
    color: #4a4a5c;
    margin-bottom: 2rem;
    line-height: 1.5;
    font-weight: 400;
    text-align: left;
}

.hero-buttons-premium {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.btn-glass-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 16px;
    color: #1a1a2e;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.btn-glass-primary:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    color: #1a1a2e;
}

.btn-glass-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px) saturate(100%);
    -webkit-backdrop-filter: blur(16px) saturate(100%);
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 16px;
    color: #1a1a2e;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.btn-glass-secondary:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Products Section */
.products-section {
    position: relative;
    padding: 3rem 0;
    z-index: 1;
}

.products-section .products-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem;
    position: relative;
    z-index: 1;
    width: 100%;
}

@media (min-width: 1201px) {
    .products-section .products-grid {
        flex-direction: column !important;
    }
}

.product-card {
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 24px 24px 0 0;
    pointer-events: none;
    z-index: 1;
}

.product-header {
    margin-bottom: 0;
    flex: 0 0 auto;
    min-width: 200px;
}

.product-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1a1a2e;
}

.product-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-top: 0.5rem;
}

.product-content {
    margin-bottom: 0;
    flex: 1;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #4a4a5c;
    font-size: 0.95rem;
}

.product-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1a1a2e;
    font-weight: 600;
}

.product-description {
    color: #4a4a5c;
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.product-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.category-tag {
    padding: 0.4rem 0.8rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    font-size: 0.75rem;
    color: #1a1a2e;
}

.category-highlight {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 0, 0, 0.15);
    color: #1a1a2e;
    font-weight: 600;
}

/* Эффекты glow для продуктов отключены */

/* Benefits Section Premium */
.benefits-section-premium {
    position: relative;
    padding: 5rem 0;
    z-index: 1;
    overflow: hidden;
}

.benefits-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1200px;
    height: 1200px;
    background: transparent;
    border-radius: 50%;
    filter: blur(150px);
    z-index: 0;
    animation: benefitsBgFloat 30s ease-in-out infinite;
}

@keyframes benefitsBgFloat {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

.benefits-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.benefit-badge {
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.benefit-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 24px 24px 0 0;
    pointer-events: none;
    z-index: 1;
}

.benefit-badge > * {
    position: relative;
    z-index: 2;
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.benefit-badge h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0;
}

/* Process Section */
.process-section {
    position: relative;
    padding: 6rem 0;
    z-index: 1;
}

.process-timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.process-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: transparent;
    transform: translateY(-50%);
    z-index: 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.process-step {
    padding: 2rem;
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: transparent;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
}

.process-step h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0;
}

/* UI Gallery Section */
.ui-gallery-section {
    position: relative;
    padding: 6rem 0;
    z-index: 1;
    overflow: hidden;
}

.gallery-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    filter: blur(100px);
    z-index: 0;
    animation: galleryBgMove 25s ease-in-out infinite;
}

@keyframes galleryBgMove {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.9; }
}

.ui-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.ui-gallery-item {
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
}

.ui-gallery-item:hover {
    transform: translateY(-8px) scale(1.05);
}

.ui-preview {
    width: 100%;
    height: 200px;
    margin-bottom: 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.ui-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.05);
}

.ui-gallery-item p {
    font-weight: 600;
    color: var(--foreground);
    margin: 0;
}

/* Use Cases Section */
.use-cases-section {
    position: relative;
    padding: 6rem 0;
    z-index: 1;
}

.section-title-premium {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a2e;
    letter-spacing: -0.02em;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.use-case-card {
    padding: 2rem;
    text-align: center;
    font-weight: 600;
    font-size: 1.125rem;
    color: #1a1a2e;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.use-case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 24px 24px 0 0;
    pointer-events: none;
    z-index: 1;
}

.use-case-card:hover {
    transform: translateY(-4px);
}

/* Cases Section */
.cases-section {
    position: relative;
    padding: 6rem 0;
    z-index: 1;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.case-card {
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 24px 24px 0 0;
    pointer-events: none;
    z-index: 1;
}

.case-card > * {
    position: relative;
    z-index: 2;
}

.case-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 16px 48px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        inset 0 -1px 0 rgba(255, 255, 255, 0.15);
}

.case-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.case-card p {
    color: #4a4a5c;
    line-height: 1.6;
    margin: 0;
}

/* Partner Section */
.partner-section {
    position: relative;
    padding: 6rem 0;
    z-index: 1;
    overflow: hidden;
}

.partner-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    filter: blur(120px);
    z-index: 0;
}

.partner-card {
    position: relative;
    z-index: 1;
    text-align: center;
}

.partner-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Blog Section Premium */
.blog-section-premium {
    position: relative;
    padding: 6rem 0;
    z-index: 1;
}

.blog-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-card-premium {
    overflow: hidden;
    transition: all 0.4s ease;
}

.blog-card-premium:hover {
    transform: translateY(-8px);
}

.blog-thumbnail-premium {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.blog-image-premium {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card-premium:hover .blog-image-premium {
    transform: scale(1.1);
}

.blog-content-premium {
    padding: 2rem;
}

.blog-title-premium {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.blog-excerpt-premium {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-link-premium {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.blog-link-premium:hover {
    color: var(--accent-hover);
    transform: translateX(5px);
}

/* Contact Form Premium */
.contact-section-premium {
    position: relative;
    padding: 6rem 0;
    z-index: 1;
}

.contact-form-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-form-premium {
    text-align: left;
    margin-top: 2rem;
}

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

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--foreground);
}

.glass-input-premium {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px) saturate(100%);
    -webkit-backdrop-filter: blur(16px) saturate(100%);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    font-size: 1rem;
    font-family: var(--font-primary);
    color: #1a1a2e;
    transition: all 0.3s ease;
}

.glass-input-premium:focus {
    outline: none;
    background: rgba(255, 255, 255, 1);
    border-color: rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.05);
}

.glass-input-premium::placeholder {
    color: var(--text-tertiary);
}

.btn-submit {
    width: 100%;
    margin-top: 1rem;
}

/* ============================================
   SCROLLBAR STYLING (Viora Design)
   ============================================ */

* {
    scrollbar-color: rgba(94, 92, 230, 0.4) #e5e5ea;
    scrollbar-width: thin;
}

*::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

*::-webkit-scrollbar-track {
    background: #f2f2f7;
    border-radius: 999px;
}

*::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, rgba(94, 92, 230, 0.75), rgba(10, 132, 255, 0.75));
    border-radius: 999px;
    border: 2px solid #f2f2f7;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}

*::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, rgba(94, 92, 230, 0.9), rgba(10, 132, 255, 0.9));
}

/* ============================================
   UTILITIES
   ============================================ */

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

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

