/* =========================================
   RAZVOD LANDING — Global Variables & Reset
   File: css/razvod-landing.css
   ========================================= */
:root {
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-cormorant: 'Cormorant Garamond', Georgia, serif;
    --bg-left: #F8F8F8;
    --bg-right: #EAEAEA;
    --bg-bottom: #FFFFFF;
    --text-main: #1A1A1A;
    --text-muted: #666666;
    --btn-bg: #2C2C2C;
    --btn-text: #FFFFFF;
    --btn-muted: #A0A0A0;
    --glass-bg: rgba(255, 255, 255, 0.25);
    --glass-border: rgba(255, 255, 255, 0.4);
    --radius-lg: 16px;
    --cases-bg: #F7F6F4;
    --cases-text-main: #2D2C2A;
    --cases-text-muted: #6B6A68;
    --cases-card-bg: #FFFFFF;
    --cases-accent-gold: #CBAA73;
    --cases-accent-gold-light: #F1E8D9;
    --cases-shadow-card: 0 8px 24px rgba(0, 0, 0, 0.04);
    --cases-radius-card: 16px;
    --methods-bg-main: #ffffff;
    --methods-text-dark: #222222;
    --methods-text-body: #333333;
    --methods-text-muted: #666666;
    --methods-bg-card-online: #f4f5f7;
    --methods-shadow-card-court: #f0e4d3;
    --methods-border-light: #f0f0f0;
    --methods-radius: 24px;
    --srv-bg-color: #F9F8F6;
    --srv-text-main: #33322E;
    --srv-text-secondary: #2A2A2A;
    --srv-text-muted: #666666;
    --srv-accent-gold-light: #DAB97B;
    --srv-accent-gold-dark: #B89656;
    --doc-bg-color: #FAFAFA;
    --doc-text-color: #2D313A;
    --doc-heading-color: #263238;
    --doc-card-bg: #FFFFFF;
    --doc-accent-color: #C19A6B;
    --doc-shadow-color: rgba(0, 0, 0, 0.04);
    --law-bg: #f9f9fa;
    --law-text-main: #2a3342;
    --law-text-muted: #555f6d;
    --law-accent-gold: #ceb586;
    --dur-bg-color: #FAFAF8;
    --dur-text-heading: #2B2D33;
    --dur-text-main: #222222;
    --dur-text-muted: #7A7A7A;
    --dur-accent-gold: #D8B475;
    --dur-accent-cream: #F2EBE1;
    --price-color-white: #ffffff;
    --price-color-black: #1a1a1a;
    --price-color-gray-dark: #333333;
    --price-color-gray-text: #666666;
    --price-color-card-bg: #F4F5F7;
    --price-color-gold: #D2AB66;
    --price-color-gold-light: #F8F3E9;
    --price-color-gold-hover: #c49d56;
    --price-border-radius-card: 12px;
    --price-border-radius-btn: 8px;
    --price-shadow-card: 0 20px 40px rgba(0, 0, 0, 0.04);
    --sit-bg-page: #f8f8f8;
    --sit-bg-card: #ffffff;
    --sit-bg-image-wrapper: #e6e4df;
    --sit-shadow-card: 0 4px 20px rgba(0, 0, 0, 0.04);
    --trust-bg-color: #fcfcfc;
    --trust-text-dark: #2b2b2b;
    --trust-text-gray: #4a4a4a;
    --trust-text-light-gray: #6b6b6b;
    --trust-accent-gold: #c6a261;
    --trust-card-bg: #ffffff;
    --trust-card-img-bg: #e6e6e6;
    --trust-border-radius: 12px;
    --trust-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    --cs-bg-color: #f6f6f7;
    --cs-text-dark: #222222;
    --cs-text-gray: #666666;
    --cs-text-light-gray: #888888;
    --cs-gold-accent: #c4a773;
    --cs-gold-light: #e6d8b8;
    --cs-card-bg: #ffffff;
    --faq-bg-color: #FAFAFA;
    --faq-text-main: #22252A;
    --faq-text-muted: #4A515A;
    --faq-card-bg: #FFFFFF;
    --faq-card-active-bg: #F5EEE4;
    --faq-icon-color: #C8A97E;
    --faq-border-color: #EFEFEF;
    --faq-shadow: 0 4px 12px rgba(0, 0, 0, 0.03), 0 1px 3px rgba(0, 0, 0, 0.02);
    --faq-radius: 8px;
}

.razvod-landing,
.razvod-landing * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    color: var(--text-main);
    background-color: var(--bg-left);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.6s forwards ease-out;
    animation-play-state: paused;
}

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

.action-btn-outline {
    background-color: transparent;
    border: 1px solid var(--cases-accent-gold);
    color: var(--cases-accent-gold-dark);
    border-radius: 30px;
    padding: 12px 28px;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.action-btn-outline:hover {
    background-color: var(--cases-accent-gold);
    color: #fff;
    box-shadow: 0 4px 15px rgba(203, 170, 115, 0.4);
}

/* ===== HERO ===== */
.hero-screen {
    height: 100vh;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.layout-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    flex-grow: 1;
    position: relative;
}

.content-section {
    background-color: var(--bg-left);
    padding: calc(85px + 3rem) clamp(2rem, 6vw, 6rem) 3rem clamp(2rem, 6vw, 6rem);
    display: flex;
    flex-direction: column;
}

.breadcrumbs {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
    margin-bottom: auto;
}

.breadcrumbs a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumbs a:hover {
    color: var(--text-main);
}

.breadcrumbs .separator {
    margin: 0 8px;
    color: #CCCCCC;
}

.breadcrumbs .current {
    color: var(--text-main);
}

.text-content {
    margin-bottom: auto;
}

.hero-main-heading {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 4vw, 4.2rem);
    line-height: 1.05;
    font-weight: 400;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
    color: var(--text-main);
}

.subtitle-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-muted);
    max-width: 480px;
}

.highlight-practice {
    display: block;
    margin-top: 12px;
    font-size: 17px;
    font-weight: 600;
    color: var(--text-main);
}

.visual-section {
    background-color: var(--bg-right);
    position: relative;
    overflow: hidden;
}

.image-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    z-index: 1;
}

.hero-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.tg-video-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, background 0.3s ease;
}

.tg-video-circle:hover {
    transform: translate(-50%, -50%) scale(1.05);
    background: rgba(255, 255, 255, 0.4);
}

.tg-icon {
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 16px solid var(--text-main);
    margin-left: 4px;
}

.cta-overlay {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    width: calc(100% - 4rem);
    max-width: 380px;
}

.cta-button {
    background-color: var(--btn-bg);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 24px 32px;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    display: block;
    width: 100%;
    font-family: inherit;
}

.cta-button:hover,
.cta-button:focus-visible {
    background-color: #1a1a1a;
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
    outline: none;
}

.card-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 6px;
}

.cta-button .card-hex {
    color: var(--btn-muted);
    font-size: 14px;
}

.bottom-bar {
    background-color: var(--bg-bottom);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding: 0 clamp(2rem, 5vw, 4rem);
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 10;
}

.benefit-item {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 12px;
}

.benefit-item:not(:last-child)::after {
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--cases-accent-gold);
    margin-left: clamp(1rem, 3vw, 3rem);
    box-shadow: 0 0 4px rgba(203, 170, 115, 0.4);
}

/* ===== CASES GRID ===== */
.section-cases {
    background-color: var(--cases-bg);
    color: var(--cases-text-main);
    position: relative;
    padding: 80px 0;
    display: flex;
    align-items: center;
    min-height: 100vh;
}

.decorations {
    position: absolute;
    top: 0;
    right: -5%;
    width: 400px;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: visible;
}

.gold-sphere-1 {
    position: absolute;
    top: 50%;
    right: -50px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle at 30% 30%, #FFF4D0 0%, #D4AF37 30%, #A67C00 70%, #4A3512 100%);
    border-radius: 50%;
    box-shadow: -15px 15px 30px rgba(0, 0, 0, 0.1), inset -10px -10px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(-90%);
}

.gold-sphere-2 {
    position: absolute;
    top: 50%;
    right: 20px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle at 35% 35%, #FFF4D0 0%, #D4AF37 40%, #8A6327 80%, #3A2508 100%);
    border-radius: 50%;
    box-shadow: -10px 10px 25px rgba(0, 0, 0, 0.15), inset -10px -10px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(20%);
}

.gold-stem {
    position: absolute;
    top: 50%;
    right: 80px;
    width: 8px;
    height: 150px;
    background: linear-gradient(to right, #D4AF37, #FFF4D0, #8A6327);
    transform: translateY(-120%) rotate(25deg);
    border-radius: 10px;
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.section-header {
    margin-bottom: 50px;
    max-width: 700px;
}

.cases-main-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 500;
    line-height: 1.1;
    color: var(--cases-text-main);
    letter-spacing: -0.02em;
}

.cards-grid {
    column-count: 3;
    column-gap: 24px;
    margin-bottom: 40px;
}

.card {
    background-color: var(--cases-card-bg);
    border-radius: var(--cases-radius-card);
    padding: 32px 28px;
    margin-bottom: 24px;
    break-inside: avoid;
    position: relative;
    overflow: hidden;
    box-shadow: var(--cases-shadow-card);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.card.card-tall {
    min-height: 220px;
}

.card-content {
    position: relative;
    z-index: 2;
    max-width: 85%;
}

.case-card-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--cases-text-main);
}

.card-desc {
    font-size: 0.85rem;
    color: var(--cases-text-muted);
    line-height: 1.5;
    font-weight: 400;
}

.card-icon {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 130px;
    height: 130px;
    z-index: 1;
    pointer-events: none;
}

/* ===== CTA STRIPE ===== */
.cta-stripe {
    background-color: var(--btn-bg);
    color: #FFFFFF;
    padding: 70px 0;
    width: 100%;
    position: relative;
    z-index: 5;
}

.cta-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-text-block {
    flex: 1;
    min-width: 320px;
}

.cta-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    margin-bottom: 12px;
    font-weight: 400;
    color: var(--cases-accent-gold);
}

.cta-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

.cta-form {
    display: flex;
    gap: 16px;
    flex: 1.2;
    min-width: 320px;
    width: 100%;
}

.cta-input {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
    padding: 18px 24px;
    border-radius: var(--radius-lg);
    font-family: var(--font-sans);
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.cta-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.cta-input:focus {
    border-color: var(--cases-accent-gold);
    background: rgba(255, 255, 255, 0.12);
}

.cta-form.two-inputs .name-input {
    flex: 1;
    min-width: 150px;
}

.cta-form.two-inputs .phone-input-wrapper {
    position: relative;
    flex: 1.5;
    display: flex;
}

.cta-form.single-input .question-input-wrapper {
    position: relative;
    flex: 1;
    display: flex;
    width: 100%;
}

.phone-input,
.question-input {
    width: 100%;
    padding-right: 68px;
}

.tg-submit-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--cases-accent-gold);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(203, 170, 115, 0.3);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.tg-submit-btn:hover {
    transform: translateY(-50%) scale(1.05);
    background-color: #D4AF37;
}

.tg-submit-btn svg {
    width: 20px;
    height: 20px;
    stroke: var(--btn-bg);
    margin-right: 2px;
    margin-top: 1px;
}

/* ===== METHODS ===== */
.section-methods {
    background-color: var(--methods-bg-main);
    color: var(--methods-text-body);
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.methods-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 80px;
    position: relative;
}

.methods-decor {
    position: absolute;
    top: 40px;
    right: 80px;
    width: 140px;
    height: auto;
    pointer-events: none;
    z-index: 10;
}

.methods-main-title {
    font-family: var(--font-serif);
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 400;
    line-height: 1.15;
    color: var(--methods-text-dark);
    margin-bottom: 60px;
    max-width: 700px;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1100px;
}

.method-card {
    padding: 50px 48px;
    border-radius: var(--methods-radius);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.method-card-title {
    font-family: var(--font-serif);
    font-size: 26px;
    font-weight: 500;
    color: var(--methods-text-dark);
    margin-bottom: 30px;
}

.method-list {
    list-style: none;
    padding-left: 0;
}

.method-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 14px;
    font-size: 17px;
    color: var(--methods-text-body);
}

.method-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 20px;
    color: #555;
    line-height: 1.5;
}

.method-court {
    background-color: #ffffff;
    border: 1px solid var(--methods-border-light);
    box-shadow: -14px 14px 0 0 var(--methods-shadow-card-court);
    margin-left: 14px;
}

.method-online {
    background-color: var(--methods-bg-card-online);
}

.methods-action-footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-top: 50px;
}

.methods-action-text {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    color: var(--methods-text-dark);
    font-weight: 500;
}

/* ===== SERVICES ===== */
.section-services {
    background-color: var(--srv-bg-color);
    color: var(--srv-text-main);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.srv-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.srv-geo-1 {
    position: absolute;
    top: -50px;
    left: -100px;
    width: 400px;
    height: 400px;
    border: 2px solid var(--srv-accent-gold-light);
    transform: rotate(45deg);
    opacity: 0.3;
}

.srv-geo-2 {
    position: absolute;
    bottom: -100px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--srv-accent-gold-light) 0%, transparent 70%);
    transform: rotate(25deg);
    opacity: 0.2;
}

.srv-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.srv-header {
    margin-bottom: 80px;
    max-width: 850px;
}

.srv-main-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 4.5vw, 3.8rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--srv-text-main);
    letter-spacing: -0.01em;
    margin-bottom: 20px;
}

.srv-subtitle {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--srv-text-muted);
    max-width: 750px;
}

.srv-subtitle strong {
    font-weight: 600;
    color: var(--srv-text-main);
}

.srv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 65px;
    column-gap: 60px;
    list-style: none;
}

.srv-item {
    display: flex;
    align-items: flex-start;
    gap: 35px;
}

.srv-num {
    font-family: var(--font-serif);
    font-size: clamp(3.5rem, 5vw, 4.2rem);
    font-weight: 400;
    line-height: 0.8;
    background: linear-gradient(135deg, var(--srv-accent-gold-light), var(--srv-accent-gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: var(--srv-accent-gold-dark);
    min-width: 85px;
    letter-spacing: -0.03em;
    display: inline-block;
    padding-top: 5px;
}

.srv-text-wrap {
    display: flex;
    flex-direction: column;
}

.srv-name {
    font-family: var(--font-sans);
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    font-weight: 500;
    line-height: 1.35;
    color: var(--srv-text-secondary);
    margin-bottom: 8px;
}

.srv-desc {
    font-size: 15px;
    color: var(--srv-text-muted);
    line-height: 1.4;
    font-weight: 400;
}

/* ===== DOCUMENTS ===== */
.section-documents {
    background-color: var(--doc-bg-color);
    color: var(--doc-text-color);
    padding: 100px 0;
}

.doc-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
}

.doc-header-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 50px;
    align-items: center;
}

.doc-main-title {
    font-family: var(--font-serif);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 400;
    color: var(--doc-heading-color);
    margin-bottom: 12px;
    text-align: center;
    letter-spacing: -0.5px;
}

.doc-subtitle-right {
    width: 100%;
    text-align: right;
    font-size: 16px;
    color: var(--text-muted);
    padding-right: 15px;
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 32px;
    width: 100%;
    margin-bottom: 40px;
}

.document-card {
    background: var(--doc-card-bg);
    border-radius: 12px;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 20px var(--doc-shadow-color);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.document-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.doc-card-icon {
    display: flex;
    align-items: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.doc-icon-svg {
    width: 36px;
    height: 36px;
}

.doc-check-circle {
    fill: none;
    stroke: var(--doc-accent-color);
    stroke-width: 1;
}

.doc-check-mark {
    fill: none;
    stroke: var(--doc-accent-color);
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.doc-card-number {
    font-family: var(--font-serif);
    font-size: 24px;
    color: var(--doc-text-color);
    margin-left: 12px;
    font-variant-numeric: lining-nums;
}

.doc-card-text {
    font-size: 20px;
    font-weight: 400;
    color: var(--doc-text-color);
    line-height: 1.3;
}

.doc-card-1 {
    justify-self: end;
    width: 100%;
    max-width: 480px;
}

.doc-card-2 {
    justify-self: start;
    width: 100%;
    max-width: 480px;
}

.doc-card-3 {
    justify-self: end;
    width: 100%;
    max-width: 510px;
    margin-right: -30px;
}

.doc-card-4 {
    justify-self: start;
    width: 100%;
    max-width: 450px;
    margin-left: 30px;
}

.doc-card-5 {
    justify-self: end;
    width: 100%;
    max-width: 490px;
    margin-right: -10px;
}

.doc-card-6 {
    justify-self: start;
    width: 100%;
    max-width: 420px;
    margin-left: 10px;
}

.doc-action-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    margin-top: 20px;
}

.doc-action-text {
    font-size: 1.1rem;
    color: var(--text-main);
    font-weight: 500;
}

/* ===== INSTALLMENT ===== */
.section-installment {
    background-color: var(--doc-bg-color);
    padding: 70px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.installment-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.installment-text-block {
    flex: 1;
}

.installment-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 2.6rem);
    color: var(--text-main);
    margin-bottom: 16px;
    font-weight: 400;
    line-height: 1.2;
}

.installment-highlight {
    color: var(--doc-accent-color);
    font-family: var(--font-sans);
    font-weight: 600;
}

.installment-link {
    text-decoration: underline;
    text-decoration-color: var(--doc-accent-color);
    text-underline-offset: 4px;
    transition: color 0.3s, text-decoration-color 0.3s;
    cursor: pointer;
}

.installment-link:hover {
    color: #A67C00;
    text-decoration-color: #A67C00;
}

.installment-text {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-muted);
    max-width: 650px;
}

.installment-text strong {
    color: var(--text-main);
    font-weight: 600;
    font-size: 1.05em;
}

.installment-logo-block {
    flex-shrink: 0;
    background: #fff;
    padding: 16px 32px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
}

.installment-logo {
    max-width: 180px;
    height: auto;
    display: block;
}

/* ===== LAWSUIT ===== */
.section-lawsuit {
    background-color: var(--law-bg);
    padding: 100px 0;
    overflow: hidden;
}

.lawsuit-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.lawsuit-main-title {
    font-family: var(--font-serif);
    font-size: clamp(32px, 4vw, 46px);
    font-weight: 400;
    color: var(--law-text-main);
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.lawsuit-subtitle {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--law-text-muted);
    max-width: 900px;
    margin: 0 auto;
}

.lawsuit-subtitle strong {
    font-weight: 600;
    color: var(--law-text-main);
}

.lawsuit-row-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.lawsuit-step-card {
    background: #ffffff;
    padding: 32px 24px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    border-top: 3px solid var(--law-accent-gold);
}

.lawsuit-step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.lawsuit-step-num {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--law-accent-gold);
    margin-bottom: 16px;
    font-weight: 600;
}

.lawsuit-step-card h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--law-text-main);
    margin-bottom: 12px;
    line-height: 1.3;
}

.lawsuit-step-card p {
    font-size: 14px;
    color: var(--law-text-muted);
    line-height: 1.5;
}

.lawsuit-cta-banner {
    background-color: #fdf8f4;
    border-radius: 8px;
    padding: 24px 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 12px;
}

.lawsuit-cta-title {
    font-size: 20px;
    font-weight: 500;
    color: #3b4554;
    margin: 0;
}

.lawsuit-cta-desc {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 750px;
    line-height: 1.5;
    margin: 0;
}

/* ===== WORKFLOW ===== */
.wf-section {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 80px 40px;
    gap: 40px;
    align-items: center;
    background-color: #ffffff;
    border-radius: 24px;
    margin-bottom: 60px;
}

.wf-content {
    max-width: 540px;
    width: 100%;
    justify-self: center;
}

.wf-title {
    font-family: var(--font-cormorant);
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 400;
    color: #4A4843;
    margin-bottom: 40px;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.wf-timeline {
    position: relative;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.wf-timeline::before {
    content: '';
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 22px;
    width: 1px;
    background-color: #E8E8E8;
    z-index: 0;
    transform: translateX(-50%);
}

.wf-item {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.wf-marker {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-cormorant);
    font-size: 20px;
    flex-shrink: 0;
    background-color: #fff;
    transition: transform 0.3s ease;
}

.wf-item:hover .wf-marker {
    transform: scale(1.05);
}

.wf-marker-1 {
    background-color: #DDBB7D;
    color: #ffffff;
}

.wf-marker-2 {
    border: 1px solid #DDBB7D;
    color: #DDBB7D;
}

.wf-marker-3 {
    background-color: #F3EBD9;
    color: #DDBB7D;
}

.wf-marker-4 {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    color: #DDBB7D;
}

.wf-marker-5 {
    background-color: #F8F8F8;
    color: #A3A3A3;
}

.wf-marker-6 {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    color: #DDBB7D;
}

.wf-text-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 10px;
}

.wf-step-text {
    font-size: 17px;
    font-weight: 500;
    color: #2D2D2D;
    letter-spacing: 0.01em;
    margin: 0;
    line-height: 1.2;
}

.wf-step-desc {
    font-size: 14px;
    color: #666;
    margin-top: 6px;
    line-height: 1.4;
}

.wf-visual {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wf-image {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* ===== DURATION ===== */
.section-duration {
    background-color: var(--dur-bg-color);
    padding: 100px 0;
}

.duration-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.duration-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.duration-header h2 {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(3rem, 5vw, 5rem);
    color: var(--dur-text-heading);
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.duration-subtitle {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--dur-text-muted);
    margin-top: 24px;
    max-width: 480px;
}

.dur-text-link {
    color: var(--dur-accent-gold);
    text-decoration: none;
    border-bottom: 1px dashed var(--dur-accent-gold);
    transition: color 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}

.dur-text-link:hover {
    color: #b89552;
    border-color: #b89552;
}

.duration-content {
    display: flex;
    flex-direction: column;
    max-width: 500px;
    margin-left: auto;
}

.duration-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.duration-item {
    display: flex;
    align-items: center;
    gap: 28px;
}

.duration-chart {
    position: relative;
    width: 64px;
    height: 64px;
    flex-shrink: 0;
}

.duration-chart-bg {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.duration-chart-bg.dark {
    background-color: var(--dur-accent-gold);
    color: #FFFFFF;
    box-shadow: 0 10px 20px -6px rgba(216, 180, 117, 0.45);
}

.duration-chart-bg.light {
    background-color: var(--dur-accent-cream);
    color: var(--dur-text-muted);
    box-shadow: 0 10px 20px -6px rgba(0, 0, 0, 0.04);
}

.duration-arc {
    position: absolute;
    top: -8px;
    left: -8px;
    width: 80px;
    height: 80px;
    z-index: 1;
    pointer-events: none;
}

.duration-arc circle {
    fill: none;
    stroke: var(--dur-accent-gold);
    stroke-width: 3.5;
    stroke-linecap: round;
    stroke-dasharray: 219.9;
    stroke-dashoffset: 219.9;
    transform-origin: center;
    transform: rotate(-120deg);
    transition: stroke-dashoffset 1.5s ease-out;
}

.duration-arc circle.animated {
    stroke-dashoffset: var(--target-offset);
}

.duration-label {
    font-size: 1.125rem;
    color: var(--dur-text-main);
    font-weight: 400;
}

.duration-progress-sec {
    margin-top: 50px;
    padding-top: 10px;
}

.duration-track {
    display: flex;
    height: 5px;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 12px;
}

.duration-light {
    flex: 1;
    background-color: var(--dur-accent-cream);
}

.duration-dark {
    width: 48px;
    background-color: var(--dur-accent-gold);
}

.duration-labels {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--dur-text-muted);
}

/* ===== PRICING ===== */
.section-pricing {
    background-color: var(--price-color-white);
    padding: 100px 0;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.pricing-hero {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.pricing-content {
    z-index: 2;
}

.pricing-main-title {
    font-family: var(--font-serif);
    font-size: clamp(36px, 4.5vw, 64px);
    font-weight: 400;
    line-height: 1.1;
    color: var(--price-color-gray-dark);
    margin-bottom: 24px;
}

.pricing-subtitle {
    font-size: clamp(16px, 1.5vw, 18px);
    color: var(--price-color-gray-text);
    line-height: 1.6;
    margin-bottom: 48px;
}

.pricing-subtitle span {
    display: block;
    margin-top: 4px;
}

.pricing-included-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--price-color-black);
}

.pricing-included-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pricing-included-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 18px;
    color: var(--price-color-gray-dark);
}

.pricing-included-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background-color: var(--price-color-gold-light);
    border-radius: 50%;
    flex-shrink: 0;
}

.pricing-included-icon svg {
    width: 14px;
    height: 14px;
    stroke: var(--price-color-gold);
    stroke-width: 2.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.pricing-visuals {
    position: relative;
    z-index: 2;
}

.pricing-spheres-bg {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 500px;
    height: 600px;
    z-index: -1;
    pointer-events: none;
}

.pricing-spheres-bg::before {
    content: '';
    position: absolute;
    top: 100px;
    right: 100px;
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, #F5E6B8 0%, #D4AF37 100%);
    transform: rotate(45deg);
    box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.08);
}

.pricing-spheres-bg::after {
    content: '';
    position: absolute;
    top: 280px;
    right: 200px;
    width: 120px;
    height: 120px;
    border: 4px solid #E8D08D;
    transform: rotate(15deg);
}

.pricing-card {
    background-color: var(--price-color-card-bg);
    border-radius: var(--price-border-radius-card);
    padding: 40px;
    box-shadow: var(--price-shadow-card);
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 440px;
    margin-left: auto;
}

.pricing-card-title {
    font-size: 18px;
    font-weight: 500;
    color: var(--price-color-black);
    margin-bottom: 12px;
    line-height: 1.3;
}

.pricing-card-divider {
    width: 40px;
    height: 1px;
    background-color: var(--price-color-gold);
    margin-bottom: 24px;
}

.pricing-card-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.pricing-card-list li {
    font-size: 15px;
    color: var(--price-color-gray-dark);
    line-height: 1.4;
}

.pricing-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 16px 24px;
    background-color: var(--price-color-gold);
    color: var(--price-color-white);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border: none;
    border-radius: var(--price-border-radius-btn);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.pricing-btn:hover {
    background-color: var(--price-color-gold-hover);
}

/* ===== SITUATIONS ===== */
.section-situations {
    background-color: var(--sit-bg-page);
    padding: 100px 0;
}

.sit-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.sit-header {
    margin-bottom: 50px;
}

.sit-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 4vw, 3.2rem);
    font-weight: 400;
    color: var(--text-main);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.sit-subtitle {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-muted);
    max-width: 700px;
}

.sit-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.sit-card {
    background-color: var(--sit-bg-card);
    border-radius: var(--radius-lg);
    display: flex;
    overflow: hidden;
    box-shadow: var(--sit-shadow-card);
    transition: all 0.3s ease;
    min-height: 180px;
}

.sit-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.sit-card--image-left {
    flex-direction: row-reverse;
}

.sit-card-content {
    flex: 1 1 60%;
    padding: 24px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sit-card-title {
    font-family: var(--font-sans);
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--text-main);
}

.sit-card-text {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-muted);
}

.sit-card-image-wrap {
    flex: 0 0 40%;
    background-color: var(--sit-bg-image-wrapper);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.sit-gold-svg {
    width: 80%;
    height: auto;
    max-width: 150px;
    filter: drop-shadow(0px 8px 12px rgba(0, 0, 0, 0.15));
}

/* ===== TRUST ===== */
.section-trust {
    background-color: var(--trust-bg-color);
    padding: 100px 0;
}

.trust-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.trust-section-header {
    font-family: var(--font-serif);
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 400;
    color: var(--trust-text-gray);
    margin-bottom: 40px;
}

.trust-quote-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 60px;
    max-width: 900px;
}

.trust-quote-mark {
    font-family: var(--font-serif);
    font-size: clamp(40px, 6vw, 64px);
    color: var(--trust-accent-gold);
    line-height: 0.8;
    margin-top: 8px;
    user-select: none;
}

.trust-quote-text {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(24px, 3.5vw, 34px);
    font-weight: 400;
    line-height: 1.3;
    color: var(--trust-text-dark);
}

.trust-quote-highlight {
    position: relative;
    display: inline-block;
}

.trust-quote-highlight::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 2px;
    background-color: var(--trust-accent-gold);
}

.trust-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.trust-feature-card {
    background-color: var(--trust-card-bg);
    border-radius: var(--trust-border-radius);
    box-shadow: var(--trust-shadow);
    display: flex;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 180px;
}

.trust-feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.trust-feature-content {
    flex: 1;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trust-feature-title {
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 500;
    color: var(--trust-text-dark);
    margin-bottom: 12px;
}

.trust-feature-text {
    font-family: var(--font-sans);
    font-size: 13px;
    line-height: 1.6;
    color: var(--trust-text-light-gray);
}

.trust-feature-image-wrapper {
    width: 38%;
    min-width: 160px;
    background-color: var(--trust-card-img-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.trust-feature-img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}

/* ===== CASES SLIDER ===== */
.section-cases-slider {
    background-color: var(--cs-bg-color);
    padding: 100px 0;
    overflow: hidden;
}

.cs-container {
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
    padding: 0 80px;
    position: relative;
    z-index: 2;
}

.cs-header {
    margin-bottom: 50px;
}

.cs-main-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 400;
    color: #2b3035;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.cs-subtitle {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--cs-text-gray);
    max-width: 800px;
}

.cs-slider-area {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: -30px;
}

.cs-nav-btn {
    background-color: var(--cs-gold-accent);
    color: #fff;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(196, 167, 115, 0.3);
    transition: transform 0.3s ease;
    z-index: 10;
    flex-shrink: 0;
}

.cs-nav-btn:hover {
    background-color: #b39562;
    transform: scale(1.05);
}

.cs-nav-btn:active {
    transform: scale(0.95);
}

.cs-nav-btn.prev {
    margin-right: 20px;
}

.cs-nav-btn.next {
    margin-left: 20px;
}

.cs-nav-btn svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cs-cards-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 20px 0;
    scrollbar-width: none;
    flex-grow: 1;
}

.cs-cards-track::-webkit-scrollbar {
    display: none;
}

.cs-card {
    flex: 0 0 340px;
    scroll-snap-align: start;
    background: var(--cs-card-bg);
    border-radius: 16px;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.02);
    min-height: 400px;
    position: relative;
    transition: all 0.3s ease;
}

.cs-card.highlighted {
    border: 1px solid var(--cs-gold-light);
    box-shadow: 0 15px 50px rgba(196, 167, 115, 0.1);
}

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

.cs-card-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--cs-text-dark);
    margin-bottom: 20px;
}

.cs-card-desc {
    font-size: 15px;
    line-height: 1.6;
    color: var(--cs-text-dark);
    margin-bottom: 30px;
}

.cs-card-result {
    margin-top: auto;
    font-size: 15px;
    line-height: 1.5;
    color: var(--cs-text-dark);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 16px;
}

.cs-card-result strong {
    font-weight: 600;
}

.cs-text-gold {
    color: var(--cs-gold-accent);
}

.cs-action-block {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

/* ===== FAQ ===== */
.section-faq {
    background-color: var(--faq-bg-color);
    padding: 100px 0;
    display: flex;
    justify-content: center;
}

.faq-wrapper-inner {
    width: 100%;
    max-width: 1000px;
    padding: 0 20px;
}

.faq-container-box {
    width: 100%;
    background-color: #FFFFFF;
    padding: 60px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
}

.faq-title {
    font-family: var(--font-serif);
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 500;
    color: #1A202C;
    margin-bottom: 40px;
    letter-spacing: -0.01em;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 24px;
    align-items: start;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background-color: var(--faq-card-bg);
    border: 1px solid var(--faq-border-color);
    border-radius: var(--faq-radius);
    box-shadow: var(--faq-shadow);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 500;
    color: var(--faq-text-main);
    transition: background-color 0.3s ease;
}

.faq-header:focus-visible {
    outline: 2px solid var(--faq-icon-color);
    outline-offset: -2px;
}

.faq-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-left: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--faq-icon-color);
    transition: transform 0.3s ease;
}

.faq-icon-minus {
    display: none;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    opacity: 0;
    background-color: var(--faq-card-bg);
}

.faq-content-inner {
    padding: 0 20px 20px 20px;
    font-size: 14px;
    color: var(--faq-text-muted);
    line-height: 1.6;
}

.faq-item.active {
    border-color: transparent;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.faq-item.active .faq-header {
    background-color: var(--faq-card-active-bg);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    padding-bottom: 16px;
}

.faq-item.active .faq-icon-plus {
    display: none;
}

.faq-item.active .faq-icon-minus {
    display: block;
}

.faq-item.active .faq-content {
    opacity: 1;
}

.faq-item.active .faq-content-inner {
    padding-top: 16px;
}

/* ===== MEDIA QUERIES ===== */
@media (max-width: 1200px) {
    .cs-container {
        padding: 0 40px;
    }
}

@media (max-width: 1024px) {
    .bottom-bar {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
        padding: 1.5rem 2rem;
    }

    .benefit-item:not(:last-child)::after {
        display: none;
    }

    .methods-container {
        padding: 0 40px;
    }

    .methods-decor {
        right: 40px;
        width: 100px;
    }

    .methods-grid {
        gap: 30px;
    }

    .method-card {
        padding: 40px 30px;
    }

    .srv-grid {
        column-gap: 40px;
        row-gap: 50px;
    }

    .wf-section {
        padding: 60px 40px;
        gap: 40px;
    }

    .duration-grid {
        gap: 40px;
    }

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

    .trust-feature-card {
        min-height: 160px;
        max-width: 800px;
        margin: 0 auto;
        width: 100%;
    }

    .cs-slider-area {
        margin-left: 0;
    }

    .cs-nav-btn.prev {
        display: none;
    }

    .lawsuit-row-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .cards-grid {
        column-count: 2;
    }

    .decorations {
        opacity: 0.3;
        right: -10%;
    }

    .cta-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .cta-form {
        width: 100%;
    }

    .documents-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .document-card {
        justify-self: center !important;
        margin: 0 !important;
        max-width: 600px !important;
        width: 100%;
    }

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

    .pricing-spheres-bg {
        top: 0;
        right: -50px;
        width: 300px;
        height: 400px;
        opacity: 0.5;
    }

    .pricing-card {
        margin: 0 auto;
        max-width: 100%;
    }

    .sit-cards-grid {
        grid-template-columns: 1fr;
    }

    .sit-card {
        max-width: 800px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 860px) {
    .hero-screen {
        height: auto;
    }

    .layout-wrapper {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column;
    }

    .content-section {
        padding: 3rem 2rem;
        min-height: 50vh;
    }

    .breadcrumbs {
        margin-bottom: 3rem;
    }

    .text-content {
        margin-bottom: 0;
    }

    .visual-section {
        min-height: 60vh;
    }

    .installment-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .installment-text {
        margin: 0 auto;
    }

    .wf-section {
        grid-template-columns: 1fr;
        padding: 40px 20px;
    }

    .wf-content {
        max-width: 100%;
    }

    .wf-visual {
        order: -1;
    }
}

@media (max-width: 768px) {
    .section-cases {
        padding: 40px 0;
    }

    .container {
        padding: 0 16px;
    }

    .cards-grid {
        column-count: 1;
    }

    .card-content {
        max-width: 100%;
    }

    .card-icon {
        opacity: 0.5;
        width: 110px;
        height: 110px;
    }

    .decorations {
        display: none;
    }

    .cta-form {
        flex-direction: column;
        gap: 12px;
    }

    .phone-input-wrapper,
    .question-input-wrapper {
        width: 100%;
    }

    .section-methods {
        padding: 60px 0;
    }

    .methods-container {
        padding: 0 20px;
    }

    .methods-decor {
        display: none;
    }

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

    .method-court {
        margin-left: 10px;
        box-shadow: -10px 10px 0 0 var(--methods-shadow-card-court);
    }

    .methods-main-title {
        margin-bottom: 40px;
    }

    .section-services {
        padding: 60px 0;
    }

    .srv-container {
        padding: 0 20px;
    }

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

    .srv-header {
        margin-bottom: 50px;
    }

    .srv-item {
        gap: 25px;
    }

    .srv-num {
        min-width: 70px;
    }

    .section-documents {
        padding: 60px 0;
    }

    .doc-container {
        padding: 0 16px;
    }

    .doc-subtitle-right {
        text-align: left;
        padding-right: 0;
    }

    .section-installment {
        padding: 50px 0;
    }

    .installment-title {
        font-size: 24px;
    }

    .installment-text {
        font-size: 16px;
    }

    .section-lawsuit {
        padding: 60px 0;
    }

    .lawsuit-row-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .lawsuit-cta-title {
        font-size: 18px;
    }

    .lawsuit-cta-desc {
        font-size: 15px;
    }

    .lawsuit-subtitle {
        margin-top: 16px;
    }

    .section-duration {
        padding: 60px 0;
    }

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

    .duration-header h2 {
        text-align: left;
        font-size: 3rem;
    }

    .duration-content {
        max-width: 100%;
        margin-left: 0;
    }

    .section-pricing {
        padding: 60px 0;
    }

    .pricing-container {
        padding: 0 16px;
    }

    .pricing-card {
        padding: 30px 24px;
    }

    .pricing-included-item {
        font-size: 16px;
    }

    .pricing-spheres-bg {
        display: none;
    }

    .section-situations {
        padding: 60px 0;
    }

    .sit-container {
        padding: 0 16px;
    }

    .section-trust {
        padding: 60px 0;
    }

    .trust-container {
        padding: 0 16px;
    }

    .section-cases-slider {
        padding: 60px 0;
    }

    .cs-container {
        padding: 0 20px;
    }

    .cs-main-title {
        margin-bottom: 24px;
    }

    .cs-card {
        flex: 0 0 280px;
        min-height: 420px;
        padding: 28px 24px;
    }

    .cs-nav-btn.next {
        display: none;
    }

    .section-faq {
        padding: 60px 0;
    }

    .faq-container-box {
        padding: 30px 20px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .faq-title {
        margin-bottom: 30px;
    }
}

@media (max-width: 600px) {

    .sit-card,
    .sit-card--image-left {
        flex-direction: column-reverse;
    }

    .sit-card-content {
        padding: 24px;
    }

    .sit-card-image-wrap {
        height: 160px;
        flex: none;
        width: 100%;
    }

    .sit-title {
        margin-bottom: 24px;
    }

    .trust-quote-wrapper {
        margin-bottom: 40px;
    }

    .trust-feature-card {
        flex-direction: column;
    }

    .trust-feature-image-wrapper {
        width: 100%;
        height: 160px;
        order: -1;
    }

    .trust-feature-content {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .method-card-title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .method-list li {
        font-size: 15px;
    }

    .document-card {
        padding: 20px;
    }

    .doc-card-icon {
        margin-right: 16px;
    }

    .doc-card-number {
        font-size: 20px;
    }

    .doc-card-text {
        font-size: 16px;
    }

    .wf-item {
        gap: 16px;
    }

    .wf-marker {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .wf-timeline::before {
        left: 25px;
    }

    .wf-step-text {
        font-size: 16px;
    }

    .duration-header h2 {
        font-size: 2.75rem;
    }

    .duration-labels {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .duration-labels span:last-child {
        align-self: flex-end;
    }
}