/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0a0a0a;
    --secondary-color: #1a1a1a;
    --accent-color: #d4af37;
    --accent-color-dark: #b89450;
    --accent-gradient: linear-gradient(135deg, #d4af37 0%, #c9a961 50%, #b89450 100%);
    --text-color: #2d2d2d;
    --light-text: #6b6b6b;
    --bg-light: #fafafa;
    --bg-gradient: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    --white: #ffffff;
    --border-color: #e8e8e8;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.12);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.16);
    --shadow-xl: 0 24px 64px rgba(0,0,0,0.20);
    --gold-gradient: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    overflow-x: hidden;
    background: var(--white);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Cookie Notice - Glassmorphism */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    color: var(--white);
    padding: 24px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -4px 24px rgba(0,0,0,0.3);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.cookie-notice.show {
    transform: translateY(0);
}

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
    font-size: 15px;
    line-height: 1.6;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.cookie-content a:hover {
    border-bottom-color: var(--accent-color);
}

.cookie-accept {
    background: var(--gold-gradient);
    color: var(--primary-color);
    border: none;
    padding: 14px 32px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.cookie-accept::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cookie-accept:hover::before {
    width: 300px;
    height: 300px;
}

.cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.cookie-accept:active {
    transform: translateY(0);
}

/* Header - Premium Glass Effect */
.main-header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    margin: 0;
    margin-bottom: 0;
}

.main-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gold-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo:hover::after {
    width: 100%;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

.main-nav a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 8px 0;
}

.main-nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-color);
    opacity: 0;
    transition: all 0.3s ease;
}

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

.main-nav a:hover::before {
    width: 100%;
}

.main-nav a:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(4px);
}

.burger-menu {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 6px;
    padding: 8px;
    position: relative;
    z-index: 1001;
}

.burger-menu span {
    width: 28px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
    background: var(--accent-color);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
    background: var(--accent-color);
}

/* Hero Section - Premium Design */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    will-change: scroll-position;
    margin: 0;
    padding: 0;
    display: block;
}

/* Убираем любой возможный пробел перед hero секцией */
body > header + .hero-section,
header + .hero-section {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Убираем пробелы между блочными элементами в HTML */
html {
    font-size: 16px;
}

/* Убеждаемся, что нет пробелов между header и hero */
.main-header {
    display: block;
}

.hero-section {
    display: block;
    vertical-align: top;
}

.hero-background-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(201, 169, 97, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 120% auto;
    background-position: center 50%;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), 
                background-position 0.1s ease-out,
                visibility 0s 1.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(1.05);
    animation: heroScaleIn 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform-style: preserve-3d;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: scale(1);
    z-index: 2;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), 
                background-position 0.1s ease-out,
                visibility 0s 0s;
}

@keyframes heroScaleIn {
    from {
        transform: scale(1.05);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.7) 0%, rgba(26, 26, 26, 0.5) 50%, rgba(10, 10, 10, 0.6) 100%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(212, 175, 55, 0.3), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(212, 175, 55, 0.2), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(212, 175, 55, 0.4), transparent),
        radial-gradient(1px 1px at 80% 10%, rgba(212, 175, 55, 0.3), transparent);
    background-size: 200% 200%;
    animation: particleFloat 20s ease-in-out infinite;
}

@keyframes particleFloat {
    0%, 100% { background-position: 0% 0%, 100% 100%, 50% 50%, 80% 20%; }
    50% { background-position: 100% 100%, 0% 0%, 50% 50%, 20% 80%; }
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    max-width: 1000px;
    padding: 0 40px;
    animation: fadeInUpHero 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

@keyframes fadeInUpHero {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(212, 175, 55, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 30px;
    animation: fadeInUpHero 1s cubic-bezier(0.4, 0, 0.2, 1) 0.5s both;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.hero-title .title-line-1,
.hero-title .title-line-2 {
    display: block;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}

.hero-title .title-line-2 {
    color: var(--accent-color);
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 40px;
    opacity: 0.95;
    letter-spacing: 0.3px;
    line-height: 1.6;
    animation: fadeInUpHero 1s cubic-bezier(0.4, 0, 0.2, 1) 0.7s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUpHero 1s cubic-bezier(0.4, 0, 0.2, 1) 0.9s both;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.hero-button-primary {
    background: var(--gold-gradient);
    color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
    border: none;
}

.hero-button-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hero-button-primary:hover::before {
    width: 400px;
    height: 400px;
}

.hero-button-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.5);
}

.hero-button-primary svg {
    transition: transform 0.3s ease;
}

.hero-button-primary:hover svg {
    transform: translateX(4px);
}

.hero-button-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-button-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.hero-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 4;
    pointer-events: none;
}

.hero-prev,
.hero-next {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
    position: relative;
    overflow: hidden;
}

.hero-prev svg,
.hero-next svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.hero-prev:hover,
.hero-next:hover {
    background: rgba(212, 175, 55, 0.3);
    border-color: var(--accent-color);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
}

.hero-prev:hover svg {
    transform: translateX(-2px);
}

.hero-next:hover svg {
    transform: translateX(2px);
}

.hero-indicators {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 4;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid transparent;
}

.indicator-fill {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--accent-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.indicator.active {
    background: transparent;
    border-color: var(--accent-color);
}

.indicator.active .indicator-fill {
    width: 100%;
    height: 100%;
}

.indicator:hover {
    transform: scale(1.2);
    background: rgba(212, 175, 55, 0.5);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: scrollIndicator 2s ease-in-out infinite;
}

@keyframes scrollIndicator {
    0%, 100% { opacity: 0.5; transform: translateX(-50%) translateY(0); }
    50% { opacity: 1; transform: translateX(-50%) translateY(10px); }
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--accent-color), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { height: 40px; opacity: 0.5; }
    50% { height: 50px; opacity: 1; }
    100% { height: 40px; opacity: 0.5; }
}

/* Section Styles - Premium */
section {
    padding: 120px 0;
    position: relative;
}

.section-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.03) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.03) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.section-label {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: var(--gold-gradient);
    margin: 0 auto 24px;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 20px;
    color: var(--light-text);
    font-weight: 400;
    letter-spacing: 0.3px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* About Section - Premium */
.about-section {
    background: var(--bg-gradient);
    position: relative;
    overflow: hidden;
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-text {
    position: relative;
}

.text-decoration {
    position: absolute;
    top: -20px;
    left: -40px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.about-text .lead-text {
    font-size: 22px;
    font-weight: 500;
    color: var(--primary-color);
    line-height: 1.8;
    margin-bottom: 30px;
    font-family: 'Cormorant Garamond', serif;
}

.about-text p {
    margin-bottom: 24px;
    font-size: 17px;
    line-height: 1.9;
    color: var(--light-text);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

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

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: var(--light-text);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.about-image-wrapper {
    position: relative;
}

.about-image-frame {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transform: perspective(1000px) rotateY(-2deg);
    transition: transform 0.4s ease;
}

.about-image-frame:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.image-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image-frame:hover .about-image {
    transform: scale(1.1);
}

.about-image-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--white);
    padding: 16px 24px;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    z-index: 2;
    border: 1px solid var(--border-color);
}

.about-image-badge span {
    font-weight: 600;
    color: var(--accent-color);
    font-size: 14px;
    letter-spacing: 0.5px;
}

/* Services Accordion - Premium */
.services-section {
    background: var(--white);
    position: relative;
}

.services-accordion {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.accordion-item {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
}

.accordion-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.accordion-item.active {
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.accordion-header {
    width: 100%;
    padding: 32px 40px;
    background: none;
    border: none;
    text-align: left;
    font-size: 22px;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
}

.accordion-header::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gold-gradient);
    transform: scaleY(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-item.active .accordion-header::before {
    transform: scaleY(1);
}

.accordion-header:hover {
    color: var(--accent-color);
}

.accordion-icon {
    font-size: 28px;
    color: var(--accent-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 300;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
    background: var(--gold-gradient);
    color: var(--primary-color);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.5s ease;
    padding: 0 40px;
}

.accordion-item.active .accordion-content {
    max-height: 800px;
    padding: 0 40px 40px;
}

.accordion-content p {
    margin-bottom: 20px;
    line-height: 1.9;
    font-size: 16px;
    color: var(--light-text);
}

.accordion-content ul {
    list-style: none;
    padding-left: 0;
}

.accordion-content li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    font-size: 16px;
    line-height: 1.8;
    color: var(--light-text);
}

.accordion-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 18px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold-gradient);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

/* Products Section - Premium with Tilt */
.products-section {
    background: var(--bg-gradient);
    position: relative;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.product-card {
    position: relative;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    cursor: pointer;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gold-gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

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

.product-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 0;
}

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

.product-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

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

.product-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    position: relative;
    background: var(--bg-light);
}

.product-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
    pointer-events: none;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.product-hover-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: width 0.6s, height 0.6s;
    z-index: 2;
    pointer-events: none;
}

.product-card:hover .product-hover-effect {
    width: 300px;
    height: 300px;
}

.product-info {
    padding: 32px;
    background: var(--white);
    position: relative;
    z-index: 2;
}

.product-category {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 12px;
}

.product-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--primary-color);
    font-weight: 600;
    line-height: 1.3;
}

.product-info p {
    color: var(--light-text);
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 24px;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

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

.product-card:hover .product-link {
    gap: 12px;
}

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

/* Process Section - Premium */
.process-section {
    background: var(--white);
    position: relative;
}

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

.step-item {
    text-align: center;
    padding: 40px 30px;
    position: relative;
    transition: transform 0.4s ease;
}

.step-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 0;
    background: var(--gold-gradient);
    transition: height 0.6s ease;
}

.step-item:hover::before {
    height: 100%;
    opacity: 0.1;
}

.step-item:hover {
    transform: translateY(-8px);
}

.step-number {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1;
    position: relative;
    display: inline-block;
}

.step-number::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gold-gradient);
    border-radius: 2px;
    opacity: 0.3;
}

.step-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    margin-bottom: 16px;
    color: var(--primary-color);
    font-weight: 600;
}

.step-item p {
    color: var(--light-text);
    line-height: 1.8;
    font-size: 16px;
}

/* Benefits Section - Premium */
.benefits-section {
    background: var(--bg-gradient);
    position: relative;
}

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

.benefit-item {
    background: var(--white);
    padding: 48px 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-item:hover::before {
    transform: scaleX(1);
}

.benefit-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(212, 175, 55, 0.2);
}

.benefit-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 600;
}

.benefit-item p {
    color: var(--light-text);
    line-height: 1.9;
    font-size: 16px;
}

/* Contact Section - Premium */
.contact-section {
    background: var(--white);
    position: relative;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    position: relative;
    z-index: 1;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-item {
    padding: 32px;
    background: var(--bg-light);
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.contact-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-color);
    font-weight: 600;
}

.contact-item p {
    color: var(--light-text);
    line-height: 1.9;
    font-size: 16px;
}

.contact-item a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-item a:hover {
    color: var(--accent-color-dark);
    transform: translateX(4px);
}

.contact-form-container {
    background: linear-gradient(135deg, rgba(250, 250, 250, 0.8) 0%, rgba(245, 245, 245, 0.9) 100%);
    backdrop-filter: blur(20px);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.form-group {
    margin-bottom: 32px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 15px;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.submit-button {
    background: var(--gold-gradient);
    color: var(--primary-color);
    border: none;
    padding: 18px 48px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.submit-button:hover::before {
    width: 400px;
    height: 400px;
}

.submit-button:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.4);
}

.submit-button:active {
    transform: translateY(-2px) scale(1);
}

/* Footer - Premium */
.main-footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: var(--white);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gold-gradient);
    opacity: 0.3;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 60px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 28px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.footer-section p {
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section a:hover {
    color: var(--accent-color);
    transform: translateX(4px);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    position: relative;
    z-index: 1;
}

/* Policy Pages Styles */
.policy-page {
    padding: 140px 40px 100px;
    max-width: 1000px;
    margin: 0 auto;
    background: var(--white);
}

.policy-page h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-weight: 700;
}

.policy-page h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 24px;
    color: var(--primary-color);
    font-weight: 600;
}

.policy-page h3 {
    font-size: 24px;
    margin-top: 36px;
    margin-bottom: 18px;
    color: var(--primary-color);
    font-weight: 600;
}

.policy-page p {
    margin-bottom: 24px;
    line-height: 1.9;
    color: var(--text-color);
    font-size: 16px;
}

.policy-page ul,
.policy-page ol {
    margin-bottom: 24px;
    padding-left: 30px;
    line-height: 1.9;
}

.policy-page li {
    margin-bottom: 12px;
    font-size: 16px;
    color: var(--light-text);
}

.policy-page a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.policy-page a:hover {
    border-bottom-color: var(--accent-color);
}

/* Thanks Page */
.thanks-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 40px 100px;
    background: var(--bg-gradient);
}

.thanks-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    margin-bottom: 24px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.thanks-content p {
    font-size: 20px;
    color: var(--light-text);
    margin-bottom: 40px;
    line-height: 1.8;
}

.thanks-content a {
    display: inline-block;
    padding: 18px 48px;
    background: var(--gold-gradient);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
    letter-spacing: 0.5px;
}

.thanks-content a:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.4);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-title {
        font-size: 56px;
    }
    
    .section-title {
        font-size: 48px;
    }
    
    .about-content {
        gap: 60px;
    }
    
    .contact-content {
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        box-shadow: 0 8px 32px rgba(0,0,0,0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .main-nav.active {
        max-height: 400px;
    }

    .main-nav ul {
        flex-direction: column;
        padding: 30px;
        gap: 20px;
    }

    .burger-menu {
        display: flex;
    }

    .hero-title {
        font-size: 42px;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    .hero-title .title-line-1,
    .hero-title .title-line-2 {
        font-size: 42px;
        display: block;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 30px;
        padding: 0 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .hero-section {
        height: 85vh;
        min-height: 600px;
    }
    
    .hero-content {
        padding: 0 20px;
        max-width: 100%;
    }
    
    .hero-slide {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
    
    .hero-slide.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    
    .hero-controls {
        padding: 0 20px;
    }
    
    .hero-prev,
    .hero-next {
        width: 50px;
        height: 50px;
    }

    .section-title {
        font-size: 36px;
    }
    
    section {
        padding: 80px 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-form-container {
        padding: 35px;
    }

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

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

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-accept {
        width: 100%;
    }
    
    .accordion-header {
        padding: 24px 30px;
        font-size: 20px;
    }
    
    .accordion-content {
        padding: 0 30px;
    }
    
    .accordion-item.active .accordion-content {
        padding: 0 30px 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 16px;
    }
    
    .hero-title .title-line-1,
    .hero-title .title-line-2 {
        font-size: 32px;
        display: block;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 24px;
        padding: 0 15px;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .hero-badge {
        font-size: 11px;
        padding: 8px 16px;
        margin-bottom: 20px;
    }

    .hero-button {
        padding: 16px 32px;
        font-size: 15px;
    }

    .contact-form-container {
        padding: 28px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .policy-page {
        padding: 120px 20px 80px;
    }
    
    .policy-page h1 {
        font-size: 36px;
    }
    
    .thanks-content h1 {
        font-size: 42px;
    }
}
