/* Взыскание ущерба Landing - Design Tokens */
:root {
    --gold: #e3c37a;
    --gold-gradient: linear-gradient(135deg, #e3c37a 0%, #d4b85a 100%);
    --gold-text-gradient: linear-gradient(to right, #b5891f, #d4b85a, #b5891f);
    --bg-dark: #232228;
    --bg-darker: #1a1a1f;
    --bg-light: #fdfcfb;
    --text-light: #ffffff;
    --text-dark: #1a1a1f;
    --text-gray: #555555;
    --font-display: 'Cormorant Garamond', serif;
    --font-ui: 'Inter', sans-serif;
    --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --font-size-h2: clamp(32px, 5vw, 56px);
    --font-size-h3: clamp(20px, 3vw, 24px);
}

/* Scoped global resets */
.vzuskanie-landing { background-color: var(--bg-dark); color: var(--text-light); font-family: var(--font-ui); overflow-x: hidden; line-height: 1.6; }
:where(.vzuskanie-landing) * { margin: 0; padding: 0; box-sizing: border-box; }
.vzuskanie-landing section { max-width: 100vw; max-height: max-content; }
.vzuskanie-landing img { max-width: 100%; max-height: 100%; object-fit: cover; display: block; }

/* Button */
.btn-premium { display: inline-flex; align-items: center; justify-content: center; padding: 20px 48px; font-family: var(--font-ui); font-size: 16px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; background: var(--gold-gradient); color: var(--bg-dark); border: none; position: relative; z-index: 2; overflow: hidden; cursor: pointer; transition: var(--transition); border-radius: 2px; }
.btn-premium:hover { transform: translateY(-3px); box-shadow: 0 15px 40px -10px rgba(227, 195, 122, 0.7); }

/* 1. HERO */
.hero-creative { min-height: 100vh; height: auto; padding: 120px 5% 40px; display: flex; align-items: center; position: relative; background: var(--bg-dark) url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MDAiIGhlaWdodD0iNDAwIiBvcGFjaXR5PSIxIj48cGF0aCBkPSJNMCAwaDQwMHY0MDBIMHoiIGZpbGw9IiMyMzIyMjgiLz48cGF0aCBkPSJNMCAwaDQwMHY0MDBIMHoiIGZpbGw9InVybCgjYSkiLz48ZGVmcz48ZmlsdGVyIGlkPSJhIiB4PSIwJSIgeT0iMCUiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxmZUNvbG9yTWF0cml4IHR5cGU9Im1hdHJpeCIgdmFsdWVzPSIxIDAgMCAwIDAgMCAxIDAgMCAwIDAgMCAxIDAgMCAwIDAgMCAwLjAyIDAiLz48L2ZpbHRlcj48L2RlZnM+PC9zdmc+'); }
.hero-bg-lines { position: absolute; inset: 0; pointer-events: none; z-index: 0; opacity: 0.1; background: linear-gradient(45deg, transparent 48%, var(--gold) 50%, transparent 52%), linear-gradient(-45deg, transparent 48%, var(--gold) 50%, transparent 52%); background-size: 60px 60px; }
.hero-container { width: 100%; max-width: 1400px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; gap: 40px; position: relative; z-index: 1; }
.hero-content { flex: 0 0 52%; max-width: 52%; position: relative; z-index: 5; }
.top-tag { display: inline-block; font-family: var(--font-ui); font-size: 14px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 30px; padding-left: 60px; position: relative; }
.top-tag::before { content: ''; position: absolute; left: 0; top: 50%; width: 40px; height: 2px; background: var(--gold); }
.hero-title { font-family: var(--font-display); font-size: clamp(36px, 7vw, 96px); font-weight: 700; line-height: 1.1; margin-bottom: 30px; }
.hero-title span.gold-highlight { display: block; background: linear-gradient(to right, #e3c37a, #f0dfa0, #d4b85a); -webkit-background-clip: text; -webkit-text-fill-color: transparent; transform: skewX(-5deg); margin-left: -10px; }
.hero-subtitle { font-size: clamp(16px, 3vw, 20px); line-height: 1.6; color: rgba(255, 255, 255, 0.8); max-width: 500px; margin-bottom: 50px; border-left: 3px solid rgba(227, 195, 122, 0.3); padding-left: 20px; font-weight: 300; }
.hero-visual-container { flex: 0 0 45%; max-width: 45%; position: relative; height: 75vh; min-height: 400px; display: flex; justify-content: center; align-items: center; }
.visual-frame { position: absolute; inset: 0; border: 3px solid var(--gold); clip-path: polygon(0 0, 100% 0, 100% 85%, 85% 100%, 0 100%); z-index: 3; pointer-events: none; }
.image-slider { position: absolute; top: 20px; left: 20px; right: 20px; bottom: 20px; clip-path: polygon(0 0, 100% 0, 100% 85%, 85% 100%, 0 100%); overflow: hidden; background: #111; }
.slide-img { position: absolute; inset: 0; width: 100%; height: 100%; max-width: 100%; max-height: 100%; object-fit: cover; filter: contrast(1.1) saturate(0.9); animation: slideFade 12s infinite; opacity: 0; }
.slide-img:nth-child(2) { animation-delay: 6s; }
@keyframes slideFade { 0% { opacity: 0; transform: scale(1.05); } 10% { opacity: 1; transform: scale(1); } 50% { opacity: 1; transform: scale(1); } 60% { opacity: 0; transform: scale(1.05); } 100% { opacity: 0; transform: scale(1.05); } }
.team-caption { position: absolute; bottom: 50px; left: -40px; background: rgba(26, 26, 31, 0.95); border-left: 4px solid var(--gold); padding: 30px; max-width: 350px; z-index: 10; box-shadow: 20px 20px 60px rgba(0,0,0,0.5); backdrop-filter: blur(10px); }
.team-caption h3 { font-family: var(--font-ui); color: var(--gold); font-size: 14px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.team-caption p { font-size: 15px; color: white; line-height: 1.5; font-weight: 300; }

/* 2. TICKER */
.advantages-ticker { background: var(--bg-darker); border-top: 1px solid rgba(227, 195, 122, 0.1); border-bottom: 1px solid rgba(227, 195, 122, 0.1); padding: 24px 0; overflow: hidden; display: flex; white-space: nowrap; position: relative; z-index: 10; }
.ticker-track { display: flex; align-items: center; animation: scrollTicker 40s linear infinite; }
.ticker-item { display: inline-flex; align-items: center; font-family: var(--font-ui); font-size: clamp(12px, 2vw, 14px); font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); padding: 0 30px; }
.ticker-separator { font-size: 20px; color: rgba(255,255,255,0.2); }
@keyframes scrollTicker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* 3. TWO COLS */
.section-two-cols { background-color: #f4f2f0; color: var(--text-dark); padding: 100px 5%; }
.compact-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 60px; align-items: start; }
.col-left { position: sticky; top: 100px; }
.block-title { font-family: var(--font-display); font-size: var(--font-size-h2); line-height: 1.1; font-weight: 700; margin-bottom: 25px; color: var(--text-dark); }
.block-title span { color: #b5891f; display: block; font-style: italic; }
.lead-paragraph { font-size: clamp(16px, 3vw, 18px); color: var(--text-gray); margin-bottom: 30px; line-height: 1.6; }
.accent-box { background: var(--bg-dark); color: white; padding: 30px; border-radius: 8px; border-bottom: 4px solid var(--gold); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.accent-box p { margin-bottom: 15px; font-size: clamp(14px, 3vw, 16px); color: rgba(255,255,255,0.9); }
.accent-box p:last-child { margin-bottom: 0; }
.accent-box strong { color: var(--gold); font-family: var(--font-display); font-size: clamp(18px, 4vw, 22px); font-weight: 600; line-height: 1.2; display: block; margin-bottom: 10px; }
.col-right { display: flex; flex-direction: column; gap: 20px; }
.right-intro { font-family: var(--font-display); font-size: clamp(24px, 4vw, 28px); color: var(--text-dark); margin-bottom: 10px; border-bottom: 1px solid rgba(0,0,0,0.1); padding-bottom: 15px; }
.case-card { display: flex; gap: 20px; background: #ffffff; padding: 25px; border-radius: 6px; border-left: 3px solid transparent; box-shadow: 0 4px 15px rgba(0,0,0,0.03); transition: var(--transition); }
.case-card:hover { border-left-color: #b5891f; box-shadow: 0 10px 25px rgba(0,0,0,0.06); transform: translateX(5px); }
.case-badge { flex-shrink: 0; width: 50px; height: 50px; background: #f4f2f0; color: #b5891f; font-family: var(--font-display); font-size: 24px; font-weight: 700; display: flex; align-items: center; justify-content: center; border-radius: 50%; }
.case-card-text h3 { font-family: var(--font-ui); font-size: 18px; color: var(--text-dark); margin-bottom: 8px; font-weight: 600; }
.case-card-text p { font-size: 16px; color: var(--text-gray); margin: 0; line-height: 1.6; }

/* 4. WHY US */
.section-why-us-light { background-color: var(--bg-light); color: var(--text-dark); position: relative; z-index: 1; padding: 100px 5% 40px; }
.why-us-container { max-width: 1300px; margin: 0 auto; width: 100%; }
.why-us-top { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; flex-wrap: wrap; gap: 20px; }
.why-us-title-light { font-family: var(--font-display); font-size: var(--font-size-h2); color: var(--text-dark); line-height: 1.1; margin: 0; }
.why-us-title-light span { background: var(--gold-text-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-style: italic; display: inline-block; }
.link-company { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-ui); font-size: 16px; font-weight: 500; color: #b5891f; text-decoration: none; text-transform: uppercase; letter-spacing: 1px; padding-bottom: 5px; border-bottom: 1px solid rgba(181, 137, 31, 0.3); transition: var(--transition); }
.link-company:hover { color: var(--text-dark); border-bottom-color: var(--text-dark); gap: 15px; }
.stats-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; padding: 30px 0 0 0; border-top: 1px solid rgba(0,0,0,0.05); }
.stat-item { text-align: left; }
.stat-number { font-family: var(--font-display); font-size: clamp(40px, 5vw, 64px); font-weight: 700; color: #b5891f; line-height: 1; margin-bottom: 10px; }
.stat-number span:not(.counter-text) { font-size: 0.5em; font-family: var(--font-ui); font-weight: 500; vertical-align: middle; margin-left: 5px; }
.stat-label { font-size: 15px; color: var(--text-gray); font-weight: 500; line-height: 1.4; }

/* 5. STRATEGY TWO COLS */
.strategy-section-light { background-color: var(--bg-light); padding: 40px 5% 0px; position: relative; }
.text-columns-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; padding-bottom: 100px; }
.text-col { display: flex; flex-direction: column; }
.text-col.col-accent { position: relative; }
.text-col.col-accent::before { content: ''; position: absolute; left: -40px; top: 10px; bottom: 10px; width: 1px; background: linear-gradient(to bottom, transparent, rgba(181, 137, 31, 0.3), transparent); }
.tc-header { margin-bottom: 25px; }
.tc-title { font-family: var(--font-display); font-size: clamp(32px, 4vw, 42px); color: var(--text-dark); line-height: 1.1; margin-bottom: 15px; font-weight: 700; }
.col-accent .tc-title { background: var(--gold-text-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-style: italic; }
.tc-subtitle { font-family: var(--font-ui); font-size: 18px; color: var(--text-gray); font-weight: 500; }
.tc-list { list-style: none; margin-bottom: 30px; }
.tc-list li { position: relative; padding-left: 30px; margin-bottom: 15px; font-family: var(--font-ui); font-size: 16px; color: var(--text-dark); line-height: 1.8; font-weight: 400; }
.tc-list li::before { content: '♦'; position: absolute; left: 0; top: 4px; color: var(--gold); font-size: 14px; }
.col-accent .tc-list li { padding-left: 36px; }
.col-accent .tc-list li::before { content: ''; width: 20px; height: 20px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23b5891f' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M5 13l4 4L19 7'%3E%3C/path%3E%3C/svg%3E"); background-size: contain; background-repeat: no-repeat; top: 6px; }
.tc-footer { padding: 20px 25px; background: #f4f2f0; border-left: 3px solid var(--gold); font-size: 15px; color: var(--text-gray); line-height: 1.8; border-radius: 0 8px 8px 0; margin-top: auto; }

/* 6. CTA BANNER */
.cta-wrapper { position: relative; z-index: 5; width: 100%; }
.cta-banner { width: 100%; position: relative; display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 120px 5%; text-align: center; color: var(--text-dark); overflow: hidden; }
.cta-fluid-bg { position: absolute; inset: -150px; z-index: 0; background: linear-gradient(135deg, #fdfcfb, #f0dfa0, #e3c37a, #ffffff); background-size: 200% 200%; filter: url(#ethereal-shadows) blur(6px); }
.cta-noise { position: absolute; inset: 0; z-index: 1; background-image: url("https://framerusercontent.com/images/g0QcWrxr87K0ufOxIUFBakwYA8.png"); background-size: 150px; background-repeat: repeat; opacity: 0.15; pointer-events: none; mix-blend-mode: overlay; }
.cta-banner-content { position: relative; z-index: 5; width: 100%; max-width: 1200px; }
.cta-banner-title { font-family: var(--font-display); font-size: clamp(48px, 6vw, 72px); font-weight: 700; line-height: 1.1; margin-bottom: 20px; color: #1a1a1f; }
.cta-banner-subtitle { font-family: var(--font-ui); font-size: clamp(18px, 2.5vw, 24px); font-weight: 500; max-width: 650px; margin: 0 auto 50px; line-height: 1.5; color: rgba(26, 26, 31, 0.85); }
.cta-flex-form { display: flex; gap: 15px; max-width: 700px; margin: 0 auto; }
.cta-form-input { background: rgba(255, 255, 255, 0.95); border: 2px solid transparent; border-radius: 12px; padding: 24px 28px; font-family: var(--font-ui); font-size: 18px; color: var(--text-dark); outline: none; width: 100%; transition: var(--transition); box-shadow: 0 15px 40px rgba(0,0,0,0.08); backdrop-filter: blur(10px); }
.cta-form-input::placeholder { color: #888; font-weight: 400; }
.cta-form-input:focus { background: #ffffff; border-color: #1a1a1f; }
.name-wrapper { flex: 1; }
.phone-wrapper { flex: 1.2; position: relative; display: flex; align-items: center; }
.phone-wrapper .cta-form-input { padding-right: 80px; }
.tg-send-btn { position: absolute; right: 8px; width: 56px; height: 56px; border-radius: 10px; background: #1a1a1f; border: none; color: var(--gold); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--transition); }
.tg-send-btn svg { width: 24px; height: 24px; transform: translateX(-2px) translateY(1px); }
.tg-send-btn:hover { background: #333; transform: scale(1.05); box-shadow: 0 8px 20px rgba(0,0,0,0.3); }

/* 7. ARTICLE */
.article-section { background-color: var(--bg-light); color: var(--text-dark); padding: 100px 5%; position: relative; z-index: 1; }
.article-container { max-width: 900px; margin: 0 auto; text-align: center; }
.article-title { font-family: var(--font-display); font-size: var(--font-size-h2); font-weight: 700; margin-bottom: 25px; line-height: 1.2; color: var(--text-dark); }
.article-intro { font-family: var(--font-ui); font-size: 17px; color: var(--text-gray); line-height: 1.8; margin-bottom: 40px; font-weight: 400; max-width: 750px; margin-left: auto; margin-right: auto; }
.article-intro p { margin-bottom: 10px; }
.article-intro p:last-child { margin-bottom: 0; }
.article-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px 40px; text-align: left; margin-bottom: 50px; }
.article-grid-item { font-family: var(--font-ui); font-size: 16px; color: var(--text-gray); line-height: 1.8; font-weight: 400; }
.article-grid-item .gold-num { font-family: var(--font-display); color: #b5891f; font-size: 24px; font-weight: 700; margin-right: 5px; }
.article-quote { position: relative; max-width: 700px; margin: 0 auto 50px; padding: 0 40px; }
.article-quote::before, .article-quote::after { content: '«'; position: absolute; font-family: var(--font-display); font-size: 60px; color: rgba(227, 195, 122, 0.4); line-height: 1; }
.article-quote::before { top: -15px; left: 0; }
.article-quote::after { content: '»'; bottom: -35px; right: 0; }
.article-quote p { font-family: var(--font-ui); font-size: 18px; color: var(--text-dark); font-style: italic; line-height: 1.8; font-weight: 400; margin: 0; }
.article-text-centered { font-family: var(--font-ui); font-size: 16px; color: var(--text-gray); line-height: 1.8; font-weight: 400; margin-bottom: 20px; max-width: 800px; margin-left: auto; margin-right: auto; }
.article-container strong, .req-item strong, .nuance-accent-title, .hww-step-title { color: #b5891f; }
.article-grid-item strong, .req-item strong { font-family: var(--font-display); font-size: var(--font-size-h3); display: block; margin-bottom: 5px; line-height: 1.2; }

/* 8. TEAM */
.team-section { background-color: var(--bg-darker); padding: 100px 5%; color: var(--text-light); position: relative; z-index: 1; }
.team-container { max-width: 1200px; margin: 0 auto; display: flex; flex-wrap: nowrap; justify-content: space-between; align-items: center; gap: 80px; }
.team-slider-visual { flex: 0 0 40%; max-width: 40%; position: relative; }
.team-image-wrapper { position: relative; width: 100%; aspect-ratio: 4 / 5; border-radius: 16px; z-index: 3; }
.team-image-wrapper::before, .team-image-wrapper::after { content: ''; position: absolute; border-radius: 16px; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(227, 195, 122, 0.1); transition: var(--transition); }
.team-image-wrapper::before { inset: 15px -15px -15px 15px; z-index: -1; background: rgba(227, 195, 122, 0.05); }
.team-image-wrapper::after { inset: 30px -30px -30px 30px; z-index: -2; }
.team-img { position: absolute; inset: 0; width: 100%; height: 100%; max-width: 100%; max-height: 100%; object-fit: cover; border-radius: 16px; opacity: 0; transition: opacity 0.5s ease; box-shadow: 0 20px 40px rgba(0,0,0,0.4); border: 1px solid rgba(255,255,255,0.05); }
.team-img.active { opacity: 1; z-index: 2; }
.team-pagination { position: absolute; bottom: 20px; left: 20px; display: flex; gap: 8px; z-index: 10; background: rgba(26, 26, 31, 0.6); padding: 8px 12px; border-radius: 20px; backdrop-filter: blur(5px); }
.team-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.4); cursor: pointer; transition: var(--transition); }
.team-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }
.team-slider-content { flex: 0 0 50%; max-width: 50%; display: flex; flex-direction: column; }
.team-member-info { margin-bottom: 40px; min-height: 220px; }
.team-name { font-family: var(--font-display); font-size: clamp(32px, 4vw, 42px); color: var(--text-light); line-height: 1.2; margin-bottom: 5px; transition: var(--transition); }
.team-role { font-family: var(--font-ui); font-size: 16px; color: var(--gold); margin-bottom: 25px; text-transform: uppercase; letter-spacing: 1px; font-weight: 500; }
.team-quote p { font-family: var(--font-ui); font-size: 18px; color: rgba(255, 255, 255, 0.8); line-height: 1.7; font-weight: 300; }
.team-controls-wrapper { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; flex-wrap: wrap; gap: 20px; }
.team-arrows { display: flex; gap: 15px; }
.team-btn { width: 50px; height: 50px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, 0.2); background: transparent; color: var(--text-light); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--transition); }
.team-btn svg { width: 24px; height: 24px; }
.team-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(227, 195, 122, 0.05); transform: translateX(3px); }
.team-btn.prev-btn:hover { transform: translateX(-3px); }
.team-link { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-ui); font-size: 15px; font-weight: 500; color: var(--gold); text-decoration: none; text-transform: uppercase; letter-spacing: 1px; transition: var(--transition); }
.team-link:hover { color: #ffffff; gap: 15px; }

/* 9. EDITORIAL 2 (ISK) */
.editorial-section-2 { background-color: #ffffff; color: var(--text-dark); padding: 100px 5%; position: relative; z-index: 1; }
.editorial-container-2 { max-width: 800px; margin: 0 auto; }
.editorial-title-2 { font-family: var(--font-display); font-size: var(--font-size-h2); font-weight: 700; margin-bottom: 30px; line-height: 1.2; color: var(--text-dark); text-align: center; }
.editorial-intro-2 { font-family: var(--font-ui); font-size: 17px; color: var(--text-gray); line-height: 1.8; margin-bottom: 50px; text-align: center; }
.editorial-intro-2 p { margin-bottom: 15px; }
.editorial-intro-2 p:last-child { margin-bottom: 0; }
.req-list { margin: 0 0 50px 0; display: flex; flex-direction: column; gap: 25px; }
.req-item { position: relative; padding-left: 30px; font-family: var(--font-ui); font-size: 17px; color: var(--text-gray); line-height: 1.8; }
.req-item::before { content: ''; position: absolute; left: 0; top: 10px; width: 8px; height: 8px; background: var(--gold-gradient); border-radius: 50%; }
.editorial-outro-box { position: relative; padding: 35px 50px; border-radius: 100px; border: 2px solid #e74c3c; background: rgba(231, 76, 60, 0.03); display: flex; align-items: center; gap: 25px; }
.editorial-outro-box::before { content: '!'; font-family: var(--font-display); font-size: 56px; color: #e74c3c; line-height: 1; font-weight: 700; flex-shrink: 0; }
.editorial-outro-box p { font-family: var(--font-ui); font-size: 17px; color: var(--text-dark); line-height: 1.6; margin: 0; font-weight: 500; }
.inline-consult-btn { display: inline-block; margin-left: 12px; padding: 8px 24px; background: #e74c3c; color: white; text-decoration: none; border-radius: 30px; font-family: var(--font-ui); font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; transition: background 0.3s ease; vertical-align: middle; white-space: nowrap; }
.inline-consult-btn:hover { background: #c0392b; }

/* 10. ERRORS */
.errors-section-light { background-color: var(--bg-light); padding: 100px 5%; position: relative; z-index: 1; color: var(--text-dark); }
.errors-container-light { max-width: 1200px; margin: 0 auto; }
.errors-header-light { text-align: center; margin-bottom: 60px; }
.errors-title-light { font-family: var(--font-display); font-size: var(--font-size-h2); font-weight: 500; color: var(--text-dark); margin-bottom: 20px; line-height: 1.2; }
.errors-title-light span.gold-text { color: #b5891f; }
.errors-intro-light { font-family: var(--font-ui); font-size: 17px; color: var(--text-dark); line-height: 1.8; max-width: 850px; margin: 0 auto; font-weight: 400; }
.errors-grid-light { display: grid; grid-template-columns: repeat(3, 1fr); gap: 50px 40px; }
.error-item-light { display: flex; flex-direction: column; }
.error-top-light { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 15px; }
.error-big-num { font-family: var(--font-display); font-size: 48px; color: #b5891f; font-weight: 600; line-height: 1; }
.error-item-title { font-family: var(--font-display); font-size: var(--font-size-h3); font-weight: 600; color: var(--text-dark); margin-bottom: 10px; line-height: 1.2; }
.error-item-text { font-family: var(--font-ui); font-size: 15px; color: var(--text-gray); line-height: 1.8; margin: 0; }

/* 11. SPIN */
.spin-section { background-color: var(--bg-darker); color: var(--text-light); padding: 100px 5%; position: relative; z-index: 1; border-top: 1px solid rgba(227, 195, 122, 0.1); }
.spin-container { max-width: 800px; margin: 0 auto; }
.spin-title { font-family: var(--font-display); font-size: var(--font-size-h2); margin-bottom: 60px; font-weight: 700; line-height: 1.2; text-align: center; }
.spin-title span { color: #e74c3c; font-style: italic; }
.spin-list { display: flex; flex-direction: column; gap: 40px; margin-bottom: 60px; }
.spin-item { position: relative; padding-left: 30px; border-left: 3px solid #e74c3c; }
.spin-item-title { font-family: var(--font-display); font-size: var(--font-size-h3); color: #e74c3c; margin-bottom: 10px; font-weight: 700; letter-spacing: 0.5px; line-height: 1.2; }
.spin-item-text { font-family: var(--font-ui); font-size: 17px; color: rgba(255,255,255,0.85); line-height: 1.8; margin: 0; }
.spin-solution { background: rgba(227, 195, 122, 0.05); border: 1px solid rgba(227, 195, 122, 0.2); padding: 40px; border-radius: 8px; text-align: center; }
.spin-solution-title { font-family: var(--font-display); font-size: clamp(24px, 4vw, 32px); color: var(--gold); margin-bottom: 20px; font-weight: 700; }
.spin-solution-text { font-family: var(--font-ui); font-size: 17px; color: var(--text-light); line-height: 1.8; margin: 0; }

/* 12. HOW WE WORK */
.how-we-work-light { background-color: var(--bg-light); padding: 100px 5%; position: relative; z-index: 1; min-height: 100vh; display: flex; flex-direction: column; justify-content: center; }
.hww-bg-grid { position: absolute; inset: 0; pointer-events: none; z-index: 0; opacity: 0.05; background: linear-gradient(45deg, transparent 48%, var(--gold) 50%, transparent 52%), linear-gradient(-45deg, transparent 48%, var(--gold) 50%, transparent 52%); background-size: 60px 60px; }
.hww-container { max-width: 1300px; width: 100%; margin: 0 auto; position: relative; z-index: 10; }
.hww-header { margin-bottom: 80px; position: relative; }
.hww-title { font-family: var(--font-display); font-size: var(--font-size-h2); font-weight: 700; color: var(--text-dark); margin: 0; line-height: 1.1; }
.hww-title span { background: var(--gold-text-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-style: italic; }
.hww-stats { position: absolute; top: 0; right: 0; font-family: var(--font-ui); font-size: 14px; color: var(--text-dark); text-align: right; line-height: 1.5; }
.hww-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; align-items: start; }
.hww-step { position: relative; display: flex; flex-direction: column; }
.hww-step-top { display: flex; flex-direction: column; align-items: flex-start; }
.hww-icon-wrapper { width: 60px; height: 60px; margin-bottom: 20px; color: var(--gold); }
.hww-icon-wrapper svg { width: 100%; height: 100%; }
.hww-step:not(:last-child)::after { content: ''; position: absolute; top: 100px; left: 80px; width: calc(100% - 60px); height: 1px; background: rgba(181, 137, 31, 0.3); z-index: -1; }
.hww-step:not(:last-child)::before { content: ''; position: absolute; top: 97px; right: -25px; width: 6px; height: 6px; border-top: 1px solid rgba(181, 137, 31, 0.5); border-right: 1px solid rgba(181, 137, 31, 0.5); transform: rotate(45deg); z-index: 0; }
.hww-num-container { display: flex; align-items: center; margin-bottom: 20px; }
.hww-step-num { font-family: var(--font-display); font-size: 56px; font-weight: 700; color: #b5891f; background: var(--gold-text-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; line-height: 1; padding-right: 15px; background-color: var(--bg-light); }
.hww-mobile-arrow { display: none; }
.hww-step-title { font-family: var(--font-display); font-size: var(--font-size-h3); color: var(--text-dark); font-weight: 600; margin-bottom: 10px; line-height: 1.2; }
.hww-step-text { font-family: var(--font-ui); font-size: 14px; color: var(--text-gray); line-height: 1.8; margin: 0; }
.hww-footer-flex { margin-top: 80px; display: flex; justify-content: space-between; align-items: flex-end; }
.hww-outro { max-width: 400px; }
.hww-outro-title { font-family: var(--font-ui); font-size: 18px; font-weight: 600; color: var(--text-dark); margin-bottom: 5px; }
.hww-outro-text { font-family: var(--font-ui); font-size: 14px; color: var(--text-gray); }
.hww-cta-box { display: flex; align-items: center; gap: 30px; background: #ffffff; padding: 15px 15px 15px 30px; border-radius: 8px; border: 1px solid rgba(227, 195, 122, 0.3); box-shadow: 0 10px 30px rgba(0,0,0,0.03); }
.hww-cta-text { display: flex; flex-direction: column; }
.hww-cta-text strong { font-family: var(--font-display); font-size: 28px; color: var(--gold); line-height: 1; margin-bottom: 5px; font-weight: 700; }
.hww-cta-text span { font-family: var(--font-ui); font-size: 13px; color: var(--text-gray); }
.hww-cta-btn { background: #a88444; color: white; padding: 15px 40px; border-radius: 6px; font-family: var(--font-ui); font-size: 16px; font-weight: 500; text-decoration: none; transition: var(--transition); }
.hww-cta-btn:hover { background: #8b6d38; transform: translateY(-2px); }

/* 13. NUANCES + STAGES */
.nuances-text-section { background-color: var(--bg-light); color: var(--text-dark); padding: 100px 5%; position: relative; z-index: 1; }
.cta-wrapper-final { position: relative; z-index: 5; width: 100%; }
.stages-text-section { background-color: var(--bg-light); color: var(--text-dark); padding: 100px 5%; position: relative; z-index: 1; }

/* 14. FAQ */
.faq-section { background-color: var(--bg-dark); color: var(--text-light); padding: 100px 5%; position: relative; z-index: 1; }
.faq-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 60px; align-items: start; }
.faq-left { position: sticky; top: 100px; }
.faq-title { font-family: var(--font-display); font-size: var(--font-size-h2); line-height: 1.1; margin-bottom: 20px; font-weight: 700; }
.faq-title span { color: var(--gold); font-style: italic; }
.faq-intro { font-family: var(--font-ui); font-size: 16px; color: rgba(255, 255, 255, 0.7); line-height: 1.8; }
.faq-accordion { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.faq-question { width: 100%; text-align: left; background: none; border: none; padding: 30px 0; font-family: var(--font-ui); font-size: 20px; font-weight: 500; color: var(--text-light); cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: var(--transition); gap: 20px; }
.faq-question:hover { color: var(--gold); }
.faq-icon { width: 24px; height: 24px; position: relative; flex-shrink: 0; }
.faq-icon::before, .faq-icon::after { content: ''; position: absolute; background: var(--gold); top: 50%; left: 50%; transform: translate(-50%, -50%); transition: transform 0.4s ease, opacity 0.4s ease; }
.faq-icon::before { width: 16px; height: 2px; }
.faq-icon::after { width: 2px; height: 16px; }
.faq-item.active .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-item.active .faq-question { color: var(--gold); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.5s cubic-bezier(0, 1, 0, 1); }
.faq-answer-inner { padding-bottom: 30px; font-family: var(--font-ui); font-size: 16px; color: rgba(255, 255, 255, 0.7); line-height: 1.8; }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-creative { height: auto; padding-top: 140px; }
    .hero-container { flex-direction: column; justify-content: center; gap: 50px; }
    .hero-content { flex: 0 0 100%; max-width: 100%; order: 1; text-align: center; }
    .hero-subtitle { margin: 0 auto 40px; }
    .hero-visual-container { flex: 0 0 100%; max-width: 100%; order: 2; height: 60vh; width: 100%; min-height: 400px; margin-left: 0; margin-right: 0; }
    .compact-container { grid-template-columns: 1fr; gap: 40px; }
    .col-left { position: static; }
    .section-why-us-light { padding: 80px 5% 40px; }
    .strategy-section-light { padding: 40px 5% 0px; }
    .text-columns-container { gap: 60px; padding-bottom: 80px; }
    .article-section { padding: 80px 5%; }
    .team-container { flex-direction: column; gap: 50px; }
    .team-slider-visual, .team-slider-content { flex: 0 0 100%; max-width: 100%; }
    .team-image-wrapper { width: 70%; margin: 0 auto; }
    .editorial-section-2 { padding: 80px 5%; }
    .errors-grid-light { grid-template-columns: repeat(2, 1fr); }
    .spin-grid { grid-template-columns: 1fr; gap: 30px; }
    .how-we-work-light { min-height: auto; padding: 80px 5%; }
    .hww-grid { grid-template-columns: 1fr 1fr; gap: 60px 40px; }
    .hww-step::after, .hww-step::before { display: none; }
    .hww-stats { position: static; text-align: left; margin-top: 20px; }
    .hww-footer-flex { flex-direction: column; align-items: flex-start; gap: 40px; }
    .nuances-text-section { padding: 80px 5%; }
    .stages-text-section { padding: 80px 5%; }
    .faq-container { grid-template-columns: 1fr; gap: 40px; }
    .faq-left { position: static; }
}

@media (max-width: 768px) {
    .hero-creative { padding: 100px 5% 40px; height: auto; }
    .hero-visual-container { height: 50vh; }
    .top-tag { padding-left: 0; margin-bottom: 20px; }
    .top-tag::before { display: none; }
    .hero-title span.gold-highlight { transform: none; margin-left: 0; }
    .btn-premium { width: 100%; text-align: center; }
    .visual-frame { display: none; }
    .image-slider { inset: 0; clip-path: none; border-radius: 12px; }
    .team-caption { left: 10px; right: 10px; bottom: -20px; max-width: none; padding: 20px; border-left: none; border-top: 4px solid var(--gold); }
    .section-two-cols { padding: 60px 5%; }
    .accent-box { padding: 20px; }
    .case-card { flex-direction: column; gap: 15px; padding: 20px; }
    .why-us-top { flex-direction: column; align-items: flex-start; gap: 20px; margin-bottom: 30px; }
    .stats-row { grid-template-columns: 1fr 1fr; gap: 20px; padding: 20px 0 0 0; }
    .stat-number { font-size: 36px; }
    .text-columns-container { grid-template-columns: 1fr; gap: 50px; }
    .text-col.col-accent::before { display: none; }
    .cta-banner { padding: 80px 5%; }
    .cta-flex-form { flex-direction: column; }
    .name-wrapper, .phone-wrapper { width: 100%; }
    .article-section { padding: 60px 5%; }
    .article-grid { grid-template-columns: 1fr; gap: 20px; }
    .article-quote { padding: 0 20px; }
    .article-quote::before { left: -10px; }
    .article-quote::after { right: -10px; }
    .team-section { padding: 60px 5%; }
    .team-container { grid-template-columns: 1fr; gap: 40px; }
    .team-slider-visual { width: 100%; max-width: 100%; }
    .team-image-wrapper::before { inset: 10px -10px -10px 10px; }
    .team-image-wrapper::after { display: none; }
    .team-member-info { min-height: auto; }
    .team-controls-wrapper { flex-direction: column; align-items: flex-start; }
    .editorial-section-2 { padding: 60px 5%; }
    .req-item { padding-left: 20px; }
    .editorial-outro-box { padding: 30px 20px; flex-direction: column; align-items: center; text-align: center; border-radius: 30px; }
    .editorial-outro-box::before { margin-top: 0; margin-bottom: 5px; font-size: 40px; }
    .inline-consult-btn { margin-left: 0; margin-top: 15px; display: inline-block; white-space: normal; }
    .errors-section-light { padding: 60px 5%; }
    .errors-grid-light { grid-template-columns: 1fr; gap: 40px; }
    .spin-section { padding: 60px 5%; }
    .spin-item-title { font-size: 24px; }
    .spin-solution { padding: 25px; }
    .how-we-work-light { padding: 60px 5%; background: var(--bg-light); }
    .hww-container { z-index: 2; position: relative; }
    .hww-stats { display: none; }
    .hww-grid { grid-template-columns: 1fr; gap: 30px; }
    .hww-step { padding: 10px 0; }
    .hww-step-top { display: flex; flex-direction: row-reverse; justify-content: flex-end; align-items: center; margin-bottom: 15px; }
    .hww-icon-wrapper { margin-bottom: 0; width: 36px; height: 36px; flex-shrink: 0; }
    .hww-num-container { margin-bottom: 0; }
    .hww-step-num { padding-right: 0; font-size: 42px; background: none; -webkit-text-fill-color: var(--text-dark); color: var(--text-dark); }
    .hww-mobile-arrow { display: block; width: 40px; height: 1px; background: var(--gold); position: relative; margin: 0 15px; flex-shrink: 0; }
    .hww-mobile-arrow::after { content: ''; position: absolute; right: 0; top: -3px; width: 6px; height: 6px; border-top: 1px solid var(--gold); border-right: 1px solid var(--gold); transform: rotate(45deg); }
    .hww-footer-flex { margin-top: 40px; flex-direction: column; align-items: stretch; }
    .hww-outro { display: none; }
    .hww-cta-box { flex-direction: column; align-items: stretch; padding: 25px; background: #ffffff; border-color: rgba(227, 195, 122, 0.3); text-align: center; }
    .hww-cta-btn { text-align: center; }
    .nuances-text-section { padding: 60px 5%; }
    .stages-text-section { padding: 60px 5%; }
    .faq-section { padding: 60px 5%; }
}

@media (max-width: 480px) {
    .stats-row { grid-template-columns: 1fr 1fr; gap: 15px; }
    .stat-item { text-align: left; }
    .team-image-wrapper { aspect-ratio: 1 / 1; }
}
