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

:root {
    /* Safavid Dynasty Persian Palette */
    --primary: #1e3a5f;
    --secondary: #c9a961;
    --accent: #8b7355;
    --text: #2c2416;
    --light: #f7f3ed;
    --dark: #0d1821;
    --gradient-1: #1e3a5f;
    --gradient-2: #2d5381;
    --gradient-3: #c9a961;
    --overlay: rgba(14, 24, 33, 0.7);
}

/* Ottoman Empire Palette */
[data-theme="ottoman"] {
    --primary: #5c1f1b;
    --secondary: #d4af37;
    --accent: #2e5c3e;
    --text: #1a0f0d;
    --light: #faf8f3;
    --dark: #0f0704;
    --gradient-1: #5c1f1b;
    --gradient-2: #8b3a36;
    --gradient-3: #d4af37;
    --overlay: rgba(92, 31, 27, 0.7);
}

/* Mughal Empire Palette */
[data-theme="mughal"] {
    --primary: #245937;
    --secondary: #e8b923;
    --accent: #a73a2f;
    --text: #1a1611;
    --light: #fefdf8;
    --dark: #0a0907;
    --gradient-1: #245937;
    --gradient-2: #367a4f;
    --gradient-3: #e8b923;
    --overlay: rgba(36, 89, 55, 0.7);
}

/* Silk Road Palette */
[data-theme="silkroad"] {
    --primary: #8b4513;
    --secondary: #daa520;
    --accent: #4b0082;
    --text: #2b1810;
    --light: #fdf6e3;
    --dark: #1a0f08;
    --gradient-1: #8b4513;
    --gradient-2: #a0522d;
    --gradient-3: #daa520;
    --overlay: rgba(139, 69, 19, 0.7);
}

/* Arabian Nights Palette */
[data-theme="arabian"] {
    --primary: #2c3e50;
    --secondary: #f39c12;
    --accent: #c0392b;
    --text: #1a1a1a;
    --light: #fdf4e3;
    --dark: #0c1016;
    --gradient-1: #2c3e50;
    --gradient-2: #34495e;
    --gradient-3: #f39c12;
    --overlay: rgba(44, 62, 80, 0.7);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--light);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 25px 50px;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08);
    padding: 15px 50px;
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: translateY(-2px);
}

.logo-main {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary);
    line-height: 1;
}

.logo-sub {
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: var(--secondary);
    margin-top: 2px;
    text-transform: uppercase;
}

header.scrolled .logo-main {
    color: var(--primary);
}

header:not(.scrolled) .logo-main {
    color: white;
}

header.scrolled .logo-sub {
    color: var(--secondary);
}

header:not(.scrolled) .logo-sub {
    color: var(--secondary);
}

nav {
    display: flex;
    gap: 40px;
    align-items: center;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

header.scrolled nav a {
    color: var(--text);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

/* Mobile Navigation */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

header.scrolled .mobile-menu-btn span {
    background: var(--text);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: left 0.3s ease;
    padding-top: 100px;
}

.mobile-nav.active {
    left: 0;
}

.mobile-nav-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 20px;
}

.mobile-nav a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.mobile-nav a:hover {
    color: var(--secondary);
}

.mobile-theme-switcher {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-theme-switcher .theme-btn {
    width: 30px;
    height: 30px;
}

/* Theme Switcher */
.theme-switcher {
    display: flex;
    gap: 8px;
    margin-left: 30px;
    padding-left: 30px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

header.scrolled .theme-switcher {
    border-left-color: rgba(0, 0, 0, 0.1);
}

.theme-btn {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.theme-btn:hover {
    transform: scale(1.15);
}

.theme-btn.active {
    border-color: var(--secondary);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}

.theme-btn[data-theme="safavid"] {
    background: linear-gradient(135deg, #1e3a5f, #c9a961);
}

.theme-btn[data-theme="ottoman"] {
    background: linear-gradient(135deg, #5c1f1b, #d4af37);
}

.theme-btn[data-theme="mughal"] {
    background: linear-gradient(135deg, #245937, #e8b923);
}

.theme-btn[data-theme="silkroad"] {
    background: linear-gradient(135deg, #8b4513, #daa520);
}

.theme-btn[data-theme="arabian"] {
    background: linear-gradient(135deg, #2c3e50, #f39c12);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--gradient-1) 0%, var(--gradient-2) 50%, var(--gradient-3) 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../raisin_background.jpg");
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    transform: scale(1.1);
    animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    from {
        transform: scale(1.1);
    }
    to {
        transform: scale(1.2);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay);
    backdrop-filter: blur(2px);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 40px;
}

.hero-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 300;
    color: white;
    margin-bottom: 20px;
    letter-spacing: 3px;
    text-transform: uppercase;
    line-height: 1.3;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
    text-align: center;
}

.hero-title .company-name {
    display: block;
    font-weight: 700;
    font-size: 1em;
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.hero-title .tagline {
    display: block;
    font-size: 0.5em;
    font-weight: 400;
    opacity: 0.9;
    letter-spacing: 6px;
    margin: 10px 0;
}

.hero-title .product {
    display: block;
    font-size: 0.8em;
    font-weight: 500;
    color: var(--secondary);
    letter-spacing: 4px;
    margin-top: 15px;
}

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

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 1px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.3s forwards;
}

.hero-cta {
    display: inline-block;
    padding: 18px 50px;
    background: transparent;
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    border-radius: 0;
    border: 2px solid var(--secondary);
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
    opacity: 0;
    animation: fadeInUp 1s ease 0.6s forwards;
    position: relative;
    overflow: hidden;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--secondary);
    transition: width 0.4s ease;
    z-index: -1;
}

.hero-cta:hover::before {
    width: 100%;
}

.hero-cta:hover {
    color: var(--dark);
    transform: translateY(-2px);
}

/* ============================================
   PREMIUM NATURE & SCIENCE SECTION
   ============================================ */

.nature-science-premium {
    position: relative;
    min-height: auto;
    padding: 60px 0 40px;
    overflow: hidden;
    background: linear-gradient(180deg, #0a1628 0%, #1a2740 50%, #0f1c2e 100%);
}

/* Background Elements */
.premium-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(201, 169, 97, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(30, 58, 95, 0.05) 0%, transparent 50%);
    animation: gradientPulse 8s ease-in-out infinite alternate;
}

@keyframes gradientPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

#premium-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Premium Header */
.premium-header {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 20px 50px;
    max-width: 900px;
    margin: 0 auto;
}

.header-ornament {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--secondary), transparent);
    margin: 0 auto;
    position: relative;
}

.header-ornament.top {
    margin-bottom: 20px;
}

.header-ornament.bottom {
    margin-top: 20px;
}

.header-ornament::before,
.header-ornament::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--secondary);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 8px var(--secondary);
}

.header-ornament::before {
    left: -12px;
}

.header-ornament::after {
    right: -12px;
}

.premium-subtitle {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--secondary);
    margin-bottom: 15px;
    font-weight: 600;
    opacity: 0.95;
}

.premium-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 300;
    color: #ffffff;
    letter-spacing: 1px;
    line-height: 1.3;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #ffffff 0%, var(--secondary) 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: shimmer 4s ease-in-out infinite;
}

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

/* Premium Grid */
.premium-grid {
    position: relative;
    z-index: 10;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
}

/* Premium Cards */
.premium-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-card:hover {
    transform: translateY(-10px) scale(1.01);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

/* Card Glow Effect */
.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.nature-glow {
    background: radial-gradient(circle, rgba(30, 58, 95, 0.3) 0%, transparent 60%);
}

.science-glow {
    background: radial-gradient(circle, rgba(201, 169, 97, 0.3) 0%, transparent 60%);
}

.premium-card:hover .card-glow {
    opacity: 1;
}

.card-inner {
    position: relative;
    z-index: 2;
}

/* Premium Carousel */
.premium-carousel {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1.05);
}

.carousel-slide.active {
    opacity: 1;
    animation: carouselZoom 6s ease-in-out;
}

@keyframes carouselZoom {
    0%, 100% { transform: scale(1.05); }
    50% { transform: scale(1.1); }
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.nature-overlay {
    background: linear-gradient(180deg,
        rgba(30, 58, 95, 0.7) 0%,
        rgba(30, 58, 95, 0.85) 100%);
}

.science-overlay {
    background: linear-gradient(180deg,
        rgba(139, 115, 85, 0.7) 0%,
        rgba(201, 169, 97, 0.85) 100%);
}

.carousel-indicator {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    overflow: hidden;
    z-index: 3;
}

.indicator-line {
    height: 100%;
    width: 0;
    border-radius: 3px;
    animation: indicatorProgress 6s ease-in-out infinite;
}

.nature-line {
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary);
}

.science-line {
    background: var(--secondary);
    box-shadow: 0 0 10px var(--secondary);
}

@keyframes indicatorProgress {
    0% { width: 0; }
    100% { width: 100%; }
}

/* Card Content */
.card-content {
    position: relative;
    padding: 30px 25px;
}

.content-icon {
    width: 45px;
    height: 45px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.nature-icon {
    background: linear-gradient(135deg, var(--primary), rgba(30, 58, 95, 0.8));
    box-shadow: 0 8px 20px rgba(30, 58, 95, 0.3);
}

.science-icon {
    background: linear-gradient(135deg, var(--secondary), rgba(201, 169, 97, 0.8));
    box-shadow: 0 8px 20px rgba(201, 169, 97, 0.3);
}

.premium-card:hover .content-icon {
    transform: scale(1.08) rotate(5deg);
}

.content-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.icon-svg {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1);
}

.content-title {
    font-size: 1.35rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    text-align: center;
    letter-spacing: 0.5px;
}

.content-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    text-align: center;
}

/* Feature Tags */
.content-features {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--secondary);
    transform: translateY(-2px);
}

.tag-icon {
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.7rem;
}

/* Premium Divider */
.premium-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.divider-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(180deg, transparent, var(--secondary), transparent);
    position: relative;
}

.divider-line::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 4px;
    background: var(--secondary);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--secondary);
    animation: dividerPulse 2s ease-in-out infinite;
}

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

.divider-circle {
    position: relative;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle-outer,
.circle-middle,
.circle-inner {
    position: absolute;
    border-radius: 50%;
}

.circle-outer {
    width: 100%;
    height: 100%;
    border: 2px solid rgba(201, 169, 97, 0.2);
    animation: rotateCircle 8s linear infinite;
}

.circle-middle {
    width: 75%;
    height: 75%;
    border: 2px solid rgba(201, 169, 97, 0.3);
    animation: rotateCircle 6s linear infinite reverse;
}

.circle-inner {
    width: 50%;
    height: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: 0 0 25px rgba(201, 169, 97, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: innerGlow 2s ease-in-out infinite;
}

@keyframes rotateCircle {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes innerGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(201, 169, 97, 0.3); }
    50% { box-shadow: 0 0 35px rgba(201, 169, 97, 0.6); }
}

.circle-inner svg {
    width: 18px;
    height: 18px;
    color: white;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
    animation: lightningPulse 1.5s ease-in-out infinite;
}

@keyframes lightningPulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
    }
    50% {
        transform: scale(1.2);
        filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.9)) drop-shadow(0 0 20px rgba(201, 169, 97, 0.6));
    }
}

/* Premium Stats */
.premium-stats {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 50px auto 0;
    padding: 25px 35px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    gap: 30px;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
    line-height: 1;
    text-shadow: 0 0 15px rgba(201, 169, 97, 0.3);
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .premium-grid {
        gap: 30px;
        padding: 0 30px;
    }

    .premium-carousel {
        height: 260px;
    }

    .card-content {
        padding: 28px 22px;
    }
}

@media (max-width: 968px) {
    .nature-science-premium {
        padding: 60px 0 50px;
    }

    .premium-header {
        padding: 0 20px 40px;
    }

    .premium-title {
        font-size: 1.8rem;
    }

    .premium-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        gap: 35px;
    }

    .premium-divider {
        flex-direction: row;
        width: 100%;
        gap: 15px;
    }

    .divider-line {
        width: 60px;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--secondary), transparent);
    }

    .divider-line::before {
        left: 50%;
        top: 50%;
    }

    .premium-stats {
        flex-direction: column;
        gap: 20px;
        padding: 30px 25px;
        margin-top: 35px;
    }

    .stat-divider {
        width: 60%;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    }
}

@media (max-width: 640px) {
    .nature-science-premium {
        padding: 50px 0 40px;
    }

    .premium-header {
        padding: 0 15px 35px;
    }

    .premium-subtitle {
        font-size: 0.7rem;
        letter-spacing: 2px;
    }

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

    .premium-grid {
        padding: 0 15px;
        gap: 30px;
    }

    .premium-carousel {
        height: 220px;
    }

    .card-content {
        padding: 25px 20px;
    }

    .content-title {
        font-size: 1.15rem;
    }

    .content-description {
        font-size: 0.85rem;
        line-height: 1.55;
    }

    .content-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 15px;
    }

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

    .feature-tag {
        font-size: 0.7rem;
        padding: 5px 10px;
    }

    .divider-circle {
        width: 60px;
        height: 60px;
    }

    .circle-inner svg {
        width: 14px;
        height: 14px;
    }

    .premium-stats {
        padding: 20px 15px;
        margin-top: 30px;
    }

    .stat-value {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }
}/* Advantages Section */
.advantages {
    padding: 80px 50px;
    background: #faf8f3;
}

.advantages-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
}

.advantages-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.advantage-item:hover {
    transform: translateX(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.advantage-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gradient-1), var(--secondary));
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
}

.advantage-content h4 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 8px;
    font-weight: 600;
}

.advantage-content p {
    color: var(--text);
    opacity: 0.7;
    line-height: 1.6;
    font-size: 0.95rem;
}

.advantages-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.advantages-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.advantages-image:hover img {
    transform: scale(1.05);
}


/* ============================================
   QUALITY LUXURY SECTION - COMPLETE REDESIGN
   ============================================ */

.quality-luxury {
    padding: 140px 50px;
    background: linear-gradient(180deg,
        rgba(250, 248, 245, 1) 0%,
        rgba(255, 255, 255, 1) 50%,
        rgba(248, 246, 242, 1) 100%
    );
    position: relative;
    overflow: hidden;
}

/* Animated Background */
.quality-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

#quality-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
}

.quality-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        ellipse at center,
        rgba(201, 169, 97, 0.03) 0%,
        transparent 70%
    );
}

.quality-luxury .container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
}

/* Luxury Header */
.quality-header {
    text-align: center;
    margin-bottom: 80px;
}

.header-ornament-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
}

.ornament-line {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary), transparent);
}

.ornament-diamond {
    width: 30px;
    height: 30px;
    color: var(--secondary);
    animation: rotateDiamond 20s linear infinite;
}

@keyframes rotateDiamond {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.ornament-diamond svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 8px rgba(201, 169, 97, 0.3));
}

.luxury-subtitle {
    font-size: 0.95rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 15px;
}

.quality-title-main {
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 20px;
}

.quality-title-highlight {
    display: block;
    font-weight: 700;
    background: linear-gradient(135deg, var(--secondary), #b8924f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.quality-desc {
    font-size: 1.1rem;
    color: var(--text);
    opacity: 0.7;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Quality Features Grid */
.quality-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 100px;
}

.quality-feature-card {
    background: white;
    border-radius: 16px;
    padding: 50px 35px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.quality-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

.quality-feature-card:hover::before {
    transform: scaleX(1);
}

.quality-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.feature-icon-wrapper {
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.08), rgba(201, 169, 97, 0.08));
    border-radius: 20px;
    position: relative;
    transition: all 0.4s ease;
}

.quality-feature-card:hover .feature-icon-wrapper {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.feature-icon-wrapper svg {
    width: 45px;
    height: 45px;
    color: var(--primary);
    transition: all 0.4s ease;
}

.quality-feature-card:hover .feature-icon-wrapper svg {
    color: white;
}

.feature-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 35px;
    height: 35px;
    background: var(--secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(201, 169, 97, 0.3);
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 15px;
}

.feature-description {
    font-size: 0.95rem;
    color: var(--text);
    opacity: 0.7;
    line-height: 1.7;
}

/* Process Timeline */
.quality-process {
    margin-bottom: 100px;
}

.process-header {
    text-align: center;
    margin-bottom: 60px;
}

.process-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--primary);
    margin-bottom: 15px;
}

.process-subtitle {
    font-size: 1rem;
    color: var(--text);
    opacity: 0.6;
}

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

.timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: translateY(-50%);
    z-index: 0;
}

.timeline-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}

.timeline-step {
    background: white;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.timeline-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(30, 58, 95, 0.3);
}

.step-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 10px;
}

.step-description {
    font-size: 0.85rem;
    color: var(--text);
    opacity: 0.6;
    line-height: 1.6;
}

/* Final CTA */
.quality-cta-section {
    text-align: center;
    padding: 80px 50px;
    background: linear-gradient(135deg, var(--primary), var(--gradient-2));
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.quality-cta-section::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="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: white;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 18px 50px;
    background: var(--secondary);
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(201, 169, 97, 0.4);
}

/* Responsive */
@media (max-width: 1200px) {
    .quality-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .timeline-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .timeline-line {
        display: none;
    }
}

@media (max-width: 768px) {
    .quality-luxury {
        padding: 80px 30px;
    }

    .quality-title-main {
        font-size: 2.2rem;
    }

    .quality-features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 60px;
    }

    .quality-feature-card {
        padding: 40px 30px;
    }

    .feature-icon-wrapper {
        width: 75px;
        height: 75px;
    }

    .feature-icon-wrapper svg {
        width: 38px;
        height: 38px;
    }

    .process-title {
        font-size: 1.8rem;
    }

    .timeline-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .quality-cta-section {
        padding: 60px 30px;
    }

    .cta-title {
        font-size: 1.8rem;
    }

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

/* Container & Section Utilities */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--secondary);
    margin-bottom: 15px;
    font-weight: 600;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 300;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text);
    opacity: 0.7;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Products Section */

/* ================================================
   НОВАЯ ПРЕМИАЛЬНАЯ СЕКЦИЯ ПРОДУКЦИИ - С НУЛЯ
   ================================================ */

.products-new-premium {
    position: relative;
    padding: 80px 50px;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    overflow: hidden;
    min-height: auto;
}

/* Фоновые элементы */
.products-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.bg-gradient-light {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(201, 169, 97, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(30, 58, 95, 0.02) 0%, transparent 50%);
}

.floating-orbs {
    position: absolute;
    width: 100%;
    height: 100%;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.04;
    animation: floatOrb 20s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--secondary), transparent);
    top: 10%;
    right: 5%;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--primary), transparent);
    bottom: 20%;
    left: 10%;
    animation-delay: 7s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--accent), transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 14s;
}

@keyframes floatOrb {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(20px, -20px);
    }
}

/* Контейнер */
.products-new-premium .container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* Заголовок секции */
.products-new-premium .section-header {
    text-align: center;
    margin-bottom: 70px;
}

.header-accent-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--secondary), transparent);
    margin: 0 auto 20px;
}

.products-new-premium .section-subtitle {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 15px;
}

.products-new-premium .section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 300;
    color: var(--text);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.text-gradient {
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.products-new-premium .section-description {
    font-size: 1.1rem;
    color: var(--text);
    opacity: 0.7;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Сетка продуктов */
.product-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-bottom: 50px;
}

/* Карточка продукта */
.product-card {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.2), transparent);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.product-card:hover::before {
    opacity: 1;
}

/* Эффект блеска */
.card-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 3;
}

.product-card:hover .card-shine {
    opacity: 1;
}

/* Featured карточка */
.product-card.featured {
    transform: scale(1.03);
    box-shadow: 0 8px 35px rgba(201, 169, 97, 0.15);
}

.product-card.featured:hover {
    transform: scale(1.03) translateY(-10px);
}

.featured-glow-ring {
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 23px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    opacity: 0.3;
    z-index: -1;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.5;
    }
}

/* Изображение продукта */
.product-image {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.image-gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.product-card:hover .image-gradient-overlay {
    opacity: 1;
}

/* Бейджи продуктов */
.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 10;
    transition: all 0.3s ease;
}

.product-card:hover .product-badge {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.product-badge svg {
    width: 14px;
    height: 14px;
}

.standard-badge {
    color: var(--primary);
    border: 1px solid rgba(30, 58, 95, 0.2);
}

.premium-badge {
    color: var(--secondary);
    border: 1px solid rgba(201, 169, 97, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(201, 169, 97, 0.05));
}

.organic-badge {
    color: #2d5f3f;
    border: 1px solid rgba(45, 95, 63, 0.2);
}

/* Информация о продукте */
.product-info {
    padding: 35px 30px;
}

.product-header {
    margin-bottom: 15px;
}

.product-header h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 5px;
    letter-spacing: -0.5px;
}

.product-label {
    font-size: 0.8rem;
    color: var(--secondary);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.product-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text);
    opacity: 0.75;
    margin-bottom: 25px;
}

/* Характеристики продукта */
.product-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 25px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(247, 243, 237, 0.4), rgba(255, 255, 255, 0.2));
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.product-features svg {
    flex-shrink: 0;
    stroke: var(--primary);
}

.feature-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
}

.feature-label {
    font-size: 0.85rem;
    color: var(--text);
    opacity: 0.6;
    font-weight: 500;
}

.feature-value {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 700;
}

/* Кнопка продукта */
.product-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px 25px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 10px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.2);
    position: relative;
    overflow: hidden;
}

.product-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.product-btn:hover::before {
    left: 100%;
}

.product-btn svg {
    transition: transform 0.3s ease;
}

.product-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 58, 95, 0.3);
}

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

.premium-btn {
    background: linear-gradient(135deg, var(--secondary), #d4af37);
    box-shadow: 0 4px 12px rgba(201, 169, 97, 0.3);
}

.premium-btn:hover {
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.4);
}

.organic-btn {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    box-shadow: 0 4px 12px rgba(139, 115, 85, 0.3);
}

.organic-btn:hover {
    box-shadow: 0 6px 20px rgba(139, 115, 85, 0.4);
}

/* Панель доверия */
.trust-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 30px 50px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-item svg {
    stroke: var(--secondary);
    flex-shrink: 0;
}

.trust-item span {
    font-size: 0.9rem;
    color: var(--text);
}

.trust-item strong {
    font-weight: 700;
    color: var(--primary);
}

.trust-divider {
    width: 1px;
    height: 35px;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.1), transparent);
}

/* Адаптив */
@media (max-width: 1200px) {
    .product-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .product-card.featured {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .products-new-premium {
        padding: 80px 30px;
    }

    .product-showcase {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .product-card.featured {
        grid-column: span 1;
        transform: scale(1);
    }

    .product-card.featured:hover {
        transform: translateY(-10px);
    }

    .product-image {
        height: 280px;
    }

    .trust-bar {
        flex-direction: column;
        gap: 25px;
        padding: 25px 20px;
    }

    .trust-divider {
        width: 50px;
        height: 1px;
        background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.1), transparent);
    }
}

@media (max-width: 480px) {
    .products-new-premium {
        padding: 60px 20px;
    }

    .product-info {
        padding: 25px 20px;
    }

    .products-new-premium .section-title {
        font-size: 2rem;
    }
}

.certification-elegant {
    position: relative;
    padding: 70px 50px;
    background: linear-gradient(180deg, #0a1628 0%, #1a2740 100%);
    overflow: hidden;
}

/* Animated space background */
.cert-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.space-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.stars-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Stars Half (Bottom) */
.stars-half {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    z-index: 2;
}

#stars-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#planet-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
}

/* Planet Half (Top) */
.planet-half {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background-image: url('../media/planet.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.25;
    filter: blur(1px);
    animation: planetDrift 40s ease-in-out infinite;
    z-index: 1;
}

@keyframes planetDrift {
    0%, 100% { transform: scale(1) translateY(0); }
    50% { transform: scale(1.05) translateY(-10px); }
}

.certification-elegant .container {
    position: relative;
    z-index: 10;
}

/* Section Header */
.certification-elegant .section-header {
    text-align: center;
    margin-bottom: 80px;
}

.certification-elegant .section-subtitle {
    color: var(--secondary);
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 20px;
}

.certification-elegant .section-title {
    font-size: 3.5rem;
    font-weight: 300;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, var(--secondary) 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.certification-elegant .section-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* SGS Badge and Content Grid */
.sgs-grid {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 80px;
    align-items: center;
}

.sgs-badge-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 60px 50px;
    text-align: center;
    transition: all 0.4s ease;
}

.sgs-badge-card:hover {
    transform: translateY(-10px);
    border-color: rgba(201, 169, 97, 0.3);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.badge-container {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    padding: 35px;
    border: 2px solid rgba(201, 169, 97, 0.2);
    transition: all 0.4s ease;
}

.sgs-badge-card:hover .badge-container {
    border-color: var(--secondary);
    box-shadow: 0 0 50px rgba(201, 169, 97, 0.3);
    transform: rotate(5deg) scale(1.05);
}

.sgs-logo-main {
    max-width: 100%;
    height: auto;
    filter: brightness(0) invert(1);
    transition: all 0.4s ease;
}

.sgs-badge-card:hover .sgs-logo-main {
    filter: brightness(0) invert(1) drop-shadow(0 0 20px rgba(201, 169, 97, 0.6));
}

.badge-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.2), transparent);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.sgs-badge-card:hover .badge-glow {
    opacity: 1;
    animation: glowPulse 2s ease-in-out infinite;
}

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

.badge-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.badge-subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.5px;
}

/* SGS Description */
.sgs-description {
    color: rgba(255, 255, 255, 0.8);
}

.desc-lead {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
}

.desc-lead strong {
    color: var(--secondary);
    font-weight: 700;
}

.desc-text {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.7);
}

/* Quality Indicators */
.quality-indicators {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.indicator {
    flex: 1;
    min-width: 150px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--secondary);
    transform: translateY(-5px);
}

.indicator-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 10px;
}

.indicator-svg {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 15px;
    filter: brightness(1.2);
}

.indicator-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 1024px) {
    .sgs-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .sgs-badge-card {
        max-width: 400px;
        margin: 0 auto;
    }

    .certification-elegant .section-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .certification-elegant {
        padding: 80px 20px;
    }

    .certification-elegant .section-header {
        margin-bottom: 50px;
    }

    .certification-elegant .section-title {
        font-size: 2rem;
    }

    .sgs-badge-card {
        padding: 40px 30px;
    }

    .badge-container {
        padding: 25px;
    }

    .sgs-logo-main {
        max-width: 160px;
    }

    .desc-lead {
        font-size: 1.15rem;
    }

    .desc-text {
        font-size: 1rem;
    }

    .quality-indicators {
        flex-direction: column;
        gap: 20px;
        margin-top: 30px;
    }

    .indicator {
        padding: 20px;
    }

    .indicator-value {
        font-size: 2rem;
    }

    .planet-half {
        opacity: 0.15;
    }
}

@media (max-width: 480px) {
    .certification-elegant .section-title {
        font-size: 1.6rem;
    }

    .badge-title {
        font-size: 1.3rem;
    }

    .desc-lead {
        font-size: 1.05rem;
    }

    .indicator-value {
        font-size: 1.8rem;
    }
}
/* ============================================
   НОВАЯ ТЕМНАЯ СЕКЦИЯ КАЧЕСТВА
   ============================================ */

.quality-dark-premium {
    position: relative;
    padding: 70px 0;
    background: #0d1117;
    overflow: hidden;
}

.mesh-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(201, 169, 97, 0.03) 50%, transparent 100%), radial-gradient(ellipse at 30% 50%, rgba(30, 58, 95, 0.08) 0%, transparent 60%), radial-gradient(ellipse at 70% 50%, rgba(201, 169, 97, 0.05) 0%, transparent 60%);
    z-index: 1;
}

#quality-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: 0.4;
}

.quality-container-new {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

.quality-intro {
    margin-bottom: 60px;
}

.intro-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(201, 169, 97, 0.1);
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--secondary);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.intro-heading {
    font-size: 3.5rem;
    font-weight: 300;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: 1px;
}

.intro-highlight {
    display: inline-block;
    font-weight: 800;
    background: linear-gradient(135deg, #d4af37, #aa8b2c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.quality-main-layout {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.sgs-card-new {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 50px 40px;
    transition: all 0.4s ease;
}

.sgs-card-new:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(201, 169, 97, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.sgs-logo-section {
    text-align: center;
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sgs-seal {
    width: 150px;
    height: 150px;
    margin: 0 auto 25px;
}

.sgs-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: invert(1) brightness(1.2);
}

.sgs-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.4;
    margin-bottom: 10px;
}

.sgs-tagline {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.5px;
}

.sgs-text {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

.sgs-text strong {
    color: var(--secondary);
    font-weight: 700;
}

.benefits-grid-new {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.benefit-item-new {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border-left: 3px solid rgba(201, 169, 97, 0.3);
    padding: 30px 30px 30px 100px;
    transition: all 0.3s ease;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.benefit-item-new:hover {
    background: rgba(255, 255, 255, 0.04);
    border-left-color: var(--secondary);
    transform: translateX(5px);
}

.benefit-icon {
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 169, 97, 0.1);
    border-radius: 10px;
    color: var(--secondary);
}

.benefit-icon svg {
    width: 30px;
    height: 30px;
}

.benefit-svg-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.benefit-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.benefit-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
}

.quality-stats-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 30px 50px;
    background: rgba(201, 169, 97, 0.05);
    border: 1px solid rgba(201, 169, 97, 0.15);
    border-radius: 12px;
}

.stat-strip-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-weight: 500;
}

.stat-strip-item svg {
    width: 24px;
    height: 24px;
    color: var(--secondary);
    flex-shrink: 0;
}

.stat-strip-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 1200px) {
    .quality-main-layout {
        grid-template-columns: 350px 1fr;
        gap: 40px;
    }
}

@media (max-width: 968px) {
    .quality-dark-premium {
        padding: 80px 0;
    }

    .quality-container-new {
        padding: 0 30px;
    }

    .intro-heading {
        font-size: 2.8rem;
    }

    .quality-main-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sgs-card-new {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .intro-heading {
        font-size: 2.2rem;
    }

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

    .quality-stats-strip {
        flex-direction: column;
        gap: 20px;
        padding: 25px 30px;
    }

    .stat-strip-divider {
        width: 60px;
        height: 1px;
    }
}
/* Contact Section */
.contact {
    padding: 80px 50px;
    background: linear-gradient(180deg, var(--light) 0%, white 100%);
}

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

.contact-info h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gradient-1), var(--secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.contact-text h4 {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-text p {
    color: var(--text);
    opacity: 0.7;
    font-size: 0.95rem;
}

.contact-form {
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.9rem;
    color: var(--primary);
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--gradient-1), var(--secondary));
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(30, 58, 95, 0.3);
}

/* Footer */
footer {
    background: var(--dark);
    color: white;
    padding: 60px 50px 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-top: 20px;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--secondary);
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: var(--secondary);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1200px) {
    nav {
        gap: 25px;
    }

    nav a {
        font-size: 0.9rem;
    }
}

@media (max-width: 968px) {
    header {
        padding: 20px 30px;
    }

    nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-nav {
        display: block;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

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

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 640px) {
    header {
        padding: 15px 20px;
    }

    .container {
        padding: 0 20px;
    }

    section {
        padding: 80px 20px;
    }

    .advantages,
    .products,
    .contact {
        padding: 80px 20px;
    }

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

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

    .contact-form {
        padding: 30px 25px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    footer {
        padding: 40px 20px 20px;
    }
}