* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --primary-color: #4a5bdc;
    --secondary-color: #fbb040;
    --dark-bg: #1a2332;
    --darker-bg: #0f1419;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --accent-purple: #6b2fb5;
    --accent-coral: #ff6b6b;
    --accent-pink: #ff5983;
    --gradient-blue: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-orange: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);

    /* Typography */
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-heading: 'Georgia', serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --transition-slow: 0.8s ease;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.2);
    --shadow-hover: 0 12px 40px rgba(0,0,0,0.25);
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Universal Button Style */
.btn {
    display: inline-block;
    padding: 12px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.2);
    transition: left var(--transition-medium);
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: #3a4bcc;
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.btn-coral {
    background: var(--accent-coral);
    color: var(--white);
}

.btn-coral:hover {
    background: #ff5252;
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-dark {
    background: var(--darker-bg);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--dark-bg);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}
.logo img {
    height: 50px; /* изменяй по нужному размеру */
    width: auto;
    display: block;
}

/* Hero Header - EXPLORE */
.hero-header {
    background: linear-gradient(135deg, #1a2332 0%, #2d3e5f 100%);
    padding: 20px 0;
    position: relative;
    overflow: hidden;
}

.hero-header::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"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-logo {
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 3px;
}

.hero-nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-nav a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: all var(--transition-fast);
    position: relative;
}

.hero-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: all var(--transition-fast);
    transform: translateX(-50%);
}

.hero-nav a:hover::after {
    width: 100%;
}

.hero-nav a:hover {
    transform: translateY(-3px);
    color: var(--secondary-color);
}

.hero-icon {
    font-size: 24px;
}

.search-icon {
    width: 40px;
    height: 40px;
    border: 2px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.search-icon:hover {
    background: var(--white);
    color: var(--dark-bg);
    transform: scale(1.1);
}

/* Main Navigation */
.main-nav {
    background: var(--white);
    padding: 20px 0;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 32px;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: color var(--transition-fast);
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transition: width var(--transition-fast);
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a:hover::before {
    width: 100%;
}

.nav-links a.active {
    color: var(--primary-color);
}

.nav-links a.active::before {
    width: 100%;
}

.social-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-links span {
    color: var(--text-light);
    font-size: 14px;
    margin-right: 10px;
}

.social-links a {
    color: var(--text-light);
    font-size: 20px;
    transition: all var(--transition-fast);
}

.social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Crafted For Section */
.crafted-section {
    padding: var(--spacing-xl) 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.crafted-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.crafted-left h2 {
    font-size: 48px;
    font-family: var(--font-heading);
    margin-bottom: 20px;
    color: var(--text-dark);
}

.crafted-left p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 40px;
}

.crafted-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.crafted-item {
    display: flex;
    gap: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: all var(--transition-medium);
}

.crafted-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.crafted-icon {
    font-size: 48px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.crafted-text h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.crafted-text p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.crafted-right {
    position: relative;
}

.crafted-image {
    width: 100%;
    height: 600px; /* желаемая высота */
    object-fit: cover; /* картинка сохраняет пропорции, лишнее обрезается */
    object-position: center; /* центрируем изображение при обрезке */
    transform-style: preserve-3d;
    transition: transform var(--transition-medium);
}

.crafted-image:hover {
    transform: perspective(1000px) rotateY(5deg) rotateX(-5deg);
}

/* Coffee Section */
.coffee-section {
    background: #f5f3f0;
    padding: var(--spacing-xl) 20px;
    position: relative;
}

.coffee-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.coffee-item {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all var(--transition-medium);
}

.coffee-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.coffee-item h3 {
    font-size: 24px;
    font-family: var(--font-heading);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.coffee-icon {
    font-size: 32px;
}

.coffee-item p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

.coffee-image-wrapper {
    position: relative;
    transform-style: preserve-3d;
}

.coffee-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    transition: transform var(--transition-medium);
}

.coffee-image:hover {
    transform: perspective(1000px) translateZ(50px) rotateY(10deg);
}

/* Features Icons Section */
.features-section {
    background: var(--light-bg);
    padding: var(--spacing-xl) 20px;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(74, 91, 220, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: var(--primary-color);
}

.feature-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: var(--primary-color);
    padding: var(--spacing-lg) 20px;
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-content p {
    color: rgba(255,255,255,0.9);
    font-size: 16px;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

/* Our Story Section */
.story-section {
    padding: var(--spacing-xl) 20px;
    background: var(--white);
}

.story-container {
    max-width: 1200px;
    margin: 0 auto;
}

.story-header {
    margin-bottom: 40px;
}

.story-subtitle {
    color: var(--accent-coral);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.story-header h2 {
    font-size: 48px;
    font-family: var(--font-heading);
    color: var(--text-dark);
    margin-bottom: 20px;
}

.story-header p {
    color: var(--text-light);
    line-height: 1.8;
    max-width: 600px;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-image-wrapper {
    position: relative;
    transform-style: preserve-3d;
}

.story-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform var(--transition-medium);
    margin-bottom: 20px;
}

.story-image:hover {
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.story-card {
    padding: 30px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: all var(--transition-fast);
    opacity: 0;
    transform: translateX(30px);
}

.story-card.animate {
    opacity: 1;
    transform: translateX(0);
}

.story-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.story-card-icon {
    font-size: 48px;
    color: var(--accent-coral);
    margin-bottom: 20px;
}

.story-card h3 {
    font-size: 20px;
    color: var(--accent-coral);
    margin-bottom: 10px;
}

.story-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Service Section */
.service-section {
    padding: var(--spacing-xl) 20px;
    background: #fafafa;
}

.service-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.service-content h2 {
    font-size: 48px;
    font-family: var(--font-heading);
    margin-bottom: 20px;
}

.service-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.service-image-wrapper {
    position: relative;
}

.service-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform var(--transition-medium);
}

.service-image:hover {
    transform: perspective(1000px) rotateY(5deg) translateZ(30px);
}


/* Stats Section */
.stats-section {
    background: var(--dark-bg);
    padding: var(--spacing-lg) 20px;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="rgba(255,255,255,0.02)"/></svg>');
    opacity: 0.5;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.stat-card {
    background: rgba(255,255,255,0.05);
    padding: 40px 20px;
    border-radius: 10px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all var(--transition-fast);
    opacity: 0;
    transform: scale(0.8);
}

.stat-card.animate {
    opacity: 1;
    transform: scale(1);
}

.stat-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-10px) scale(1.05);
}

.stat-icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--accent-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: var(--white);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
}

.stat-label {
    color: rgba(255,255,255,0.8);
    font-size: 16px;
}

/* Testimonials Section with Slider */
.testimonials-section {
    background: var(--light-bg);
    padding: var(--spacing-xl) 20px;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.testimonials-slider {
    display: flex;
    overflow: hidden;
    position: relative;
}

.testimonial-card {
    min-width: 100%;
    background: var(--white);
    padding: 60px 40px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-medium);
    opacity: 0;
    transform: translateX(100%);
    display: none;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
    display: block;
}

.testimonial-card.prev {
    transform: translateX(-100%);
}

.testimonial-text {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
    font-size: 18px;
    text-align: center;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.author-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.author-info h4 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.author-info p {
    font-size: 14px;
    color: var(--text-light);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.dot.active {
    background: var(--primary-color);
    transform: scale(1.3);
}

.dot:hover {
    background: var(--primary-color);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-fast);
    z-index: 10;
    color: var(--primary-color);
    font-size: 18px;
}

.slider-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: -25px;
}

.next-btn {
    right: -25px;
}

/* Why Choose Section */
.why-choose-section {
    padding: var(--spacing-xl) 20px;
    background: var(--white);
}

.why-choose-container {
    max-width: 1200px;
    margin: 0 auto;
}

.why-choose-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-choose-header h2 {
    font-size: 48px;
    color: var(--text-dark);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.why-choose-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all var(--transition-medium);
}

.why-choose-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.why-item-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.why-item-title {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.why-item-text {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 14px;
}

/* Featured Works Section */
.works-section {
    padding: var(--spacing-xl) 20px;
    background: var(--light-bg);
}

.works-container {
    max-width: 1200px;
    margin: 0 auto;
}

.works-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.works-header h2 {
    font-size: 42px;
    color: var(--text-dark);
}

.works-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    background: var(--white);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition-fast);
    font-weight: 600;
}

.filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
}

.filter-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.work-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
    opacity: 0;
    transform: scale(0.9);
}

.work-card.animate {
    opacity: 1;
    transform: scale(1);
}

.work-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.work-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.work-card:hover .work-image {
    transform: scale(1.1);
}

.works-cta {
    text-align: center;
}
/* MODAL LIGHTBOX */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
}

.modal-content {
    display: block;
    margin: auto;
    max-width: 80%;
    max-height: 80%;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255,255,255,0.4);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}

/* Project CTA Section */
.project-cta-section {
    background: linear-gradient(135deg, #fbb040 0%, #f5a623 100%);
    padding: var(--spacing-lg) 20px;
    text-align: center;
    border-radius: 20px;
    margin: var(--spacing-lg) 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.project-cta-content h2 {
    color: var(--white);
    font-size: 42px;
    margin-bottom: 20px;
}

.project-cta-content p {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* Footer */
.footer {
    background: var(--white);
    padding: var(--spacing-lg) 20px var(--spacing-md);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-about p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(251, 176, 64, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    transition: all var(--transition-fast);
    cursor: pointer;
}

.social-btn:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-5px);
}

.footer-links h3,
.footer-contact h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--text-light);
}

.contact-icon {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
    color: var(--text-light);
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-container,
    .nav-container {
        flex-direction: column;
        gap: 20px;
    }

    .hero-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .crafted-content,
    .coffee-container,
    .story-content,
    .service-container {
        grid-template-columns: 1fr;
    }

    .features-grid,
    .stats-container,
    .why-choose-grid,
    .works-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .prev-btn {
        left: 10px;
    }

    .next-btn {
        right: 10px;
    }
}

.article-section {
    padding: var(--spacing-xl) 20px;
    background: var(--white);
}

.article-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.article-card {
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.article-category {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(74, 91, 220, 0.1);
    color: var(--primary-color);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
}

.article-title {
    font-size: 32px;
    margin: 20px 0 15px;
    font-family: var(--font-heading);
    color: var(--text-dark);
}

.article-text {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.article-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-img {
    width: 50px;
    height: 50px;
    background: var(--light-bg);
    border-radius: 50%;
}

.article-author h4 {
    margin: 0;
    color: var(--text-dark);
    font-size: 17px;
}

.article-author p {
    margin: 0;
    color: var(--text-light);
    font-size: 13px;
}

.article-meta span {
    margin-left: 15px;
    color: var(--text-light);
    font-size: 14px;
}

.article-meta i {
    margin-right: 5px;
}
/* About Section 1 - Mission & Vision */
.about-mission-section {
    padding: var(--spacing-xl) 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.about-mission-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(74, 91, 220, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.about-mission-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(74, 91, 220, 0.1);
    padding: 8px 20px;
    border-radius: 30px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
}

.section-label i {
    font-size: 16px;
}

.about-mission-content h2 {
    font-size: 48px;
    font-family: var(--font-heading);
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.lead-text {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 40px;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.mission-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-fast);
    opacity: 0;
    transform: translateY(30px);
}

.mission-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.card-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: var(--primary-color);
    opacity: 0.05;
    border-radius: 50%;
}

.vision-card .card-decoration {
    background: var(--accent-coral);
}

.mission-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #6b7bea);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
    margin-bottom: 20px;
}

.vision-card .mission-icon {
    background: linear-gradient(135deg, var(--accent-coral), var(--accent-pink));
}

.mission-card h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.mission-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.about-stats {
    display: flex;
    gap: 30px;
    padding-top: 30px;
    border-top: 2px solid #e0e0e0;
}

.about-stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-icon-small {
    width: 50px;
    height: 50px;
    background: rgba(74, 91, 220, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary-color);
}

.stat-content h4 {
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.stat-content p {
    font-size: 13px;
    color: var(--text-light);
}

.about-mission-image {
    position: relative;
}

.image-wrapper-3d {
    position: relative;
    transform-style: preserve-3d;
}

.main-about-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-medium);
}

.image-wrapper-3d:hover .main-about-image {
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg) translateZ(20px);
}

.floating-badge {
    position: absolute;
    background: var(--white);
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    animation: float 3s ease-in-out infinite;
}

.badge-1 {
    top: 20px;
    right: -30px;
    color: var(--primary-color);
}

.badge-1 i {
    font-size: 24px;
}

.badge-2 {
    bottom: 40px;
    left: -30px;
    color: var(--accent-coral);
}

.badge-2 i {
    font-size: 24px;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* About Section 2 - Values */
.about-values-section {
    padding: var(--spacing-xl) 20px;
    background: var(--white);
    position: relative;
}

.about-values-container {
    max-width: 1200px;
    margin: 0 auto;
}

.values-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.values-header h2 {
    font-size: 48px;
    font-family: var(--font-heading);
    color: var(--text-dark);
    margin-bottom: 15px;
}

.values-header p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.value-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 40px 30px;
    border-radius: 15px;
    border: 2px solid transparent;
    transition: all var(--transition-fast);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
}

.value-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.value-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    background: var(--white);
}

.value-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.1;
}

.value-icon-wrapper {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--white);
    margin-bottom: 25px;
    transition: all var(--transition-fast);
}

.value-card:hover .value-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.value-card:nth-child(2) .value-icon-wrapper {
    background: var(--accent-coral);
}

.value-card:nth-child(3) .value-icon-wrapper {
    background: var(--secondary-color);
}

.value-card:nth-child(4) .value-icon-wrapper {
    background: var(--accent-purple);
}

.value-card h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.value-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Team Showcase */
.team-showcase {
    background: linear-gradient(135deg, var(--primary-color) 0%, #6b7bea 100%);
    padding: 60px;
    border-radius: 20px;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.team-showcase::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.team-text {
    color: var(--white);
    position: relative;
    z-index: 1;
}

.team-text h3 {
    font-size: 36px;
    margin-bottom: 15px;
}

.team-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.95;
}

.team-text .btn {
    background: var(--white);
    color: var(--primary-color);
}

.team-text .btn:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.team-images {
    display: flex;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.team-member-preview {
    flex: 1;
    position: relative;
    transition: transform var(--transition-fast);
}

.team-member-preview:hover {
    transform: translateY(-15px);
}

.team-member-preview img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 15px;
    border: 4px solid var(--white);
    box-shadow: var(--shadow-lg);
}

.member-role {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

/* Responsive */
@media (max-width: 1024px) {
    .about-mission-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .team-images {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .about-mission-content h2,
    .values-header h2,
    .team-text h3 {
        font-size: 32px;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-showcase {
        padding: 40px 30px;
    }
    
    .floating-badge {
        display: none;
    }
}

#cookie-banner {
    position: fixed;
    bottom: -120px; /* hidden initially */
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark-bg);
    color: var(--white);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    align-items: center;
    transition: bottom var(--transition-medium), opacity var(--transition-medium);
    z-index: 10000;
    max-width: 90%;
    font-family: var(--font-primary);
}

/* Show banner */
#cookie-banner.show {
    bottom: 30px;
    opacity: 1;
}

/* Banner text */
#cookie-banner p {
    margin: 0;
    font-size: 1rem;
    text-align: center;
}

/* Buttons container */
#cookie-banner .buttons {
    display: flex;
    gap: var(--spacing-xs);
    flex-wrap: wrap;
    justify-content: center;
}

/* Buttons style */
#cookie-banner button {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
    font-family: var(--font-primary);
}

/* Accept button */
#accept-btn {
    background: var(--primary-color);
    color: var(--white);
}

#accept-btn:hover {
    box-shadow: var(--shadow-hover);
}

/* Decline button */
#decline-btn {
    background: var(--secondary-color);
    color: var(--white);
}

#decline-btn:hover {
    box-shadow: var(--shadow-hover);
}

/* Close button */
#close-btn {
    background: transparent;
    color: var(--text-light);
    font-size: 1.2rem;
    padding: 0 0.5rem;
}

#close-btn:hover {
    color: var(--accent-pink);
}

/* Responsive */
@media (max-width: 500px) {
    #cookie-banner {
        padding: var(--spacing-sm);
    }

    #cookie-banner button {
        flex: 1 1 100%;
    }
}

/* Gameplay Hero Section */
.gameplay-hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gameplay-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.gameplay-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomIn 20s ease-in-out infinite alternate;
}

@keyframes zoomIn {
    0% { transform: scale(1); }
    100% { transform: scale(1.2); } /* больше увеличение */
}

.gameplay-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.9) 0%, rgba(74, 91, 220, 0.7) 50%, rgba(255, 107, 107, 0.8) 100%);
    z-index: 2;
}

.gameplay-hero-overlay::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    background-size: 100px 100px;
    animation: movePattern 20s linear infinite;
}

@keyframes movePattern {
    0% { transform: translate(0, 0); }
    100% { transform: translate(200px, 200px); }
}

.gameplay-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gameplay-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    padding: 12px 30px;
    border-radius: 50px;
    color: var(--white);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 30px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.gameplay-title {
    font-size: 72px;
    font-family: var(--font-heading);
    color: var(--white);
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.gameplay-subtitle {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 50px;
    line-height: 1.6;
}

.gameplay-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.gameplay-cta-buttons .btn {
    padding: 18px 40px;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.gameplay-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
    color: var(--white);
    animation: bounce 2s ease-in-out infinite;
}

.gameplay-scroll-indicator span {
    display: block;
    font-size: 14px;
    margin-bottom: 10px;
    opacity: 0.8;
}

.gameplay-scroll-indicator i {
    font-size: 24px;
}

@keyframes bounce {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 15px); }
}

/* Gameplay Features Section */
.gameplay-features-section {
    padding: var(--spacing-xl) 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.gameplay-features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.gameplay-section-header {
    text-align: center;
    margin-bottom: 80px;
}

.gameplay-section-header h2 {
    font-size: 48px;
    font-family: var(--font-heading);
    color: var(--text-dark);
    margin: 20px 0;
}

.gameplay-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 100px;
}

.gameplay-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-fast);
    opacity: 0;
    transform: translateY(50px);
}

.gameplay-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.gameplay-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.gameplay-card-image-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.gameplay-card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.gameplay-card:hover .gameplay-card-image-wrapper img {
    transform: scale(1.15) rotate(2deg);
}

.gameplay-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 91, 220, 0.8), rgba(255, 107, 107, 0.8));
    opacity: 0;
    transition: opacity var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gameplay-card:hover .gameplay-card-overlay {
    opacity: 1;
}

.gameplay-card-icon {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--primary-color);
    transform: scale(0);
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.gameplay-card:hover .gameplay-card-icon {
    transform: scale(1);
}

.gameplay-card-content {
    padding: 35px;
}

.gameplay-card-content h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.gameplay-card-content p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 25px;
}

.gameplay-stats {
    display: flex;
    gap: 30px;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Gameplay Mechanics */
.gameplay-mechanics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
    padding: 60px;
    background: var(--white);
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
}

.mechanics-left h3 {
    font-size: 36px;
    font-family: var(--font-heading);
    color: var(--text-dark);
    margin-bottom: 40px;
}

.mechanics-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mechanic-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--light-bg);
    border-radius: 15px;
    transition: all var(--transition-fast);
}

.mechanic-item:hover {
    background: var(--white);
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.mechanic-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-coral));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
    flex-shrink: 0;
}

.mechanic-text h4 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.mechanic-text p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.mechanics-right {
    position: relative;
}

.mechanics-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.mechanics-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--transition-medium);
}

.mechanics-image-wrapper:hover img {
    transform: scale(1.05);
}

.mechanics-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--white);
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 15px;
}

.mechanics-badge i {
    font-size: 32px;
    color: var(--secondary-color);
}

.mechanics-badge span {
    display: block;
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
}

.mechanics-badge strong {
    display: block;
    font-size: 24px;
    color: var(--text-dark);
}

/* Final CTA */
.gameplay-final-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-purple) 100%);
    padding: 80px 60px;
    border-radius: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.gameplay-final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.final-cta-content {
    position: relative;
    z-index: 1;
}

.final-cta-content h2 {
    font-size: 48px;
    font-family: var(--font-heading);
    color: var(--white);
    margin-bottom: 20px;
}

.final-cta-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.cta-buttons-row {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons-row .btn {
    padding: 18px 40px;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

/* Responsive */
@media (max-width: 1024px) {
    .gameplay-grid {
        grid-template-columns: 1fr;
    }
    
    .gameplay-mechanics {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .gameplay-title {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .gameplay-hero-section {
        height: 80vh;
        min-height: 600px;
    }
    
    .gameplay-title {
        font-size: 36px;
    }
    
    .gameplay-subtitle {
        font-size: 18px;
    }
    
    .gameplay-cta-buttons {
        flex-direction: column;
    }
    
    .gameplay-mechanics {
        padding: 30px;
    }
    
    .gameplay-final-cta {
        padding: 50px 30px;
    }
    
    .final-cta-content h2 {
        font-size: 32px;
    }
}
.faq-section {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    color: #333;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px;
    text-align: left;
    font-size: 18px;
    background: #f1f1f1;
    border: none;
    cursor: pointer;
    outline: none;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #e2e2e2;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
    background: #fff;
}

.faq-answer p {
    padding: 15px 0;
    margin: 0;
    color: #555;
    line-height: 1.6;
}
.contact-section {
  background: var(--dark-bg);
  color: var(--white);
  padding: var(--spacing-xl) 20px;
  font-family: var(--font-primary);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.contact-left h2 {
  font-family: var(--font-heading);
  font-size: 48px;
  margin-bottom: 20px;
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-left p {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 40px;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 20px 5px 20px 5px; /* необычные углы */
  background: var(--gradient-orange);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.contact-icon {
  font-size: 32px;
}

.contact-card h4 {
  margin: 0 0 5px 0;
  font-size: 18px;
}

.contact-card p {
  margin: 0;
  font-size: 14px;
  color: var(--white);
}

.contact-right {
  position: relative;
}

.contact-image {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 60% 10% 50% 20%; /* интересное обрезание */
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-medium);
}

.contact-image:hover {
  transform: scale(1.05) rotate(-1deg);
}
.privacy-section {
  background: var(--light-bg);
  padding: var(--spacing-xl) 20px;
  max-width: 1000px;
  margin: 0 auto var(--spacing-xl);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

.privacy-section h1 {
  font-family: var(--font-heading);
  font-size: 48px;
  color: var(--gradient-blue);
  text-align: center;
  margin-bottom: var(--spacing-md);
}

.privacy-section p {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: var(--spacing-md);
}

.privacy-section h2 {
  font-family: var(--font-primary);
  font-size: 28px;
  color: var(--text-dark);
  margin-top: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
}

.privacy-section h3 {
  font-family: var(--font-primary);
  font-size: 22px;
  color: var(--text-dark);
  margin-top: var(--spacing-md);
  margin-bottom: var(--spacing-sm);
}

.privacy-section ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: var(--spacing-md);
}

.privacy-section li {
  margin-bottom: 10px;
  font-size: 16px;
  color: var(--text-light);
}

.privacy-section li i.ui {
  margin-right: 10px;
  color: var(--primary-color);
}
/* =========================================================
   EXTRA MOBILE ADAPTATION — FULL RESPONSIVE ADD-ON
   ========================================================= */

/* Tablets and small desktops */
@media (max-width: 992px) {
    .crafted-left h2,
    .service-content h2,
    .story-header h2,
    .why-choose-header h2,
    .works-header h2 {
        font-size: 36px;
    }

    .crafted-image,
    .contact-image {
        height: 450px;
    }

    .coffee-container {
        grid-template-columns: 1fr 1fr;
    }

    .works-grid {
        grid-template-columns: 1fr 1fr;
    }
}


/* Large mobile 768px ↓ */
@media (max-width: 768px) {

    /* Titles */
    .crafted-left h2,
    .service-content h2,
    .story-header h2,
    .contact-left h2 {
        font-size: 32px;
    }

    /* Fixing big images */
    .crafted-image,
    .contact-image {
        height: 350px;
        border-radius: 25px;
    }

    /* Story cards in 1 column */
    .story-grid {
        grid-template-columns: 1fr;
    }

    /* Team members scaling */
    .team-member-preview img {
        height: 140px;
    }

    /* Article layout: 1 column */
    .article-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* FAQ padding fix */
    .faq-section {
        padding: 50px 15px;
    }

    /* Gameplay hero text scaling */
    .gameplay-title {
        font-size: 32px;
    }

    .gameplay-subtitle {
        font-size: 16px;
    }
}


/* Small mobile 600px ↓ */
@media (max-width: 600px) {

    /* Reduce all paddings */
    section, .crafted-section, .service-section, .why-choose-section {
        padding: 50px 15px;
    }

    /* Navigation scaling */
    .hero-logo {
        font-size: 32px;
    }

    .hero-nav {
        gap: 20px;
    }

    /* Grid corrections */
    .crafted-grid,
    .coffee-container,
    .works-grid,
    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .value-card {
        padding: 30px;
    }

    /* Contact cards stack fix */
    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-image {
        height: 300px;
    }

    /* Testimonials paddings fix */
    .testimonial-card {
        padding: 35px 25px;
    }

    /* Buttons responsiveness */
    .btn {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
    }

    /* Gameplay section */
    .gameplay-card-content {
        padding: 25px;
    }

    .mechanic-item {
        padding: 20px;
        gap: 15px;
    }

    .gameplay-mechanics {
        padding: 20px;
    }
}


/* Extra small mobile 480px ↓ */
@media (max-width: 480px) {

    html {
        font-size: 90%;
    }

    /* VERY small text scaling */
    h1, h2, h3 {
        line-height: 1.2;
    }

    .gameplay-title {
        font-size: 26px !important;
    }

    .gameplay-subtitle {
        font-size: 15px;
    }

    /* Cards compact mode */
    .value-card,
    .mission-card,
    .work-card,
    .feature-card {
        padding: 20px;
    }

    /* Contact cards fix */
    .contact-card {
        flex-direction: column;
        text-align: center;
    }

    /* Footer compact mode */
    .footer-content {
        gap: 30px;
    }

    /* Coffee images */
    .coffee-image {
        max-width: 280px;
        margin: 0 auto;
    }

    /* Gameplay mechanic badge */
    .mechanics-badge {
        right: 10px;
        bottom: 10px;
        padding: 10px 15px;
    }
}
