/* ===== CSS Variables ===== */
:root {
    --color-black: #1a1a1a;
    --color-gray-dark: #2d2d2d;
    --color-gray: #4a4a4a;
    --color-gray-light: #6a6a6a;
    --color-gray-lighter: #9a9a9a;
    --color-gray-lightest: #e5e5e5;
    --color-white: #ffffff;
    --color-gold: #bd9840;
    --color-gold-dark: #a08335;
    --color-gold-light: #d4b35e;
    
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
}

/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--color-gray-dark);
    background: var(--color-white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== Typography ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-black);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== Container ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Utilities ===== */
.text-center {
    text-align: center;
}

.honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
}

/* ===== Section Title ===== */
.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--color-gold);
    margin: 1.5rem auto 0;
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-gray-lightest);
    z-index: 1000;
    transition: var(--transition);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.header__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    gap: 2rem;
}

.logo__image {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.nav__list {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav__link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--color-gray);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: var(--transition);
}

.nav__link:hover,
.nav__link:focus {
    color: var(--color-black);
}

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

.header__contacts {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header__phone {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--color-black);
    white-space: nowrap;
}

.header__phone:hover {
    color: var(--color-gold);
}

/* ===== Burger Menu ===== */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.burger span {
    width: 25px;
    height: 2px;
    background: var(--color-black);
    transition: var(--transition);
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 2px;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn--primary {
    background: var(--color-black);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.btn--primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(189, 152, 64, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn--primary:hover::after {
    width: 300px;
    height: 300px;
}

.btn--primary:hover {
    background: var(--color-gray-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn--gold {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(189, 152, 64, 0.3);
    position: relative;
    overflow: hidden;
}

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

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

.btn--gold:hover {
    background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(189, 152, 64, 0.4);
}

.btn--outline {
    background: transparent;
    color: var(--color-black);
    border: 2px solid var(--color-black);
}

.btn--outline:hover {
    background: var(--color-black);
    color: var(--color-white);
}

.btn--large {
    padding: 1.125rem 2.5rem;
    font-size: 1rem;
}

/* ===== Hero Section ===== */
.hero {
    padding: 10rem 0 6rem;
    background: linear-gradient(135deg, var(--color-gray-lightest) 0%, var(--color-white) 100%);
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(189, 152, 64, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.hero__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero__title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero__title-accent {
    color: var(--color-gold);
    display: block;
}

.hero__subtitle {
    font-size: 1.25rem;
    color: var(--color-gray);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.hero__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--color-white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    position: relative;
    overflow: visible;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(189, 152, 64, 0.2);
}

.stat:hover::before {
    transform: scaleX(1);
}

.stat__value {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--font-display);
    margin-bottom: 0.75rem;
    line-height: 1.1;
    word-break: normal;
    white-space: nowrap;
    overflow: visible;
    hyphens: none;
    display: block;
    min-height: 1.2em;
    width: 100%;
    text-align: center;
}

.stat__label {
    font-size: 1rem;
    color: var(--color-gray);
    font-weight: 500;
    line-height: 1.4;
    padding: 0 0.5rem;
}

.hero__image-placeholder {
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--color-gray-dark) 0%, var(--color-black) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.hero__image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(189, 152, 64, 0.1), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.hero__icon {
    width: 120px;
    height: 120px;
    color: var(--color-gold);
    opacity: 0.3;
}

/* ===== About Section ===== */
.about {
    padding: 6rem 0;
}

.about__content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.about__image-placeholder {
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--color-gray-lightest) 0%, var(--color-gray-lighter) 100%);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about__icon {
    width: 80px;
    height: 80px;
    color: var(--color-gold);
    opacity: 0.4;
}

.about__description {
    margin-bottom: 1.5rem;
    color: var(--color-gray);
    font-size: 1.05rem;
}

/* ===== Documents Section ===== */
.documents {
    padding: 6rem 0;
    background: var(--color-gray-lightest);
}

.documents__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.documents__grid > * {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
}

.document-card {
    background: var(--color-white);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.document-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(189, 152, 64, 0.1), transparent);
    transition: left 0.5s ease;
}

.document-card:hover::after {
    left: 100%;
}

.document-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 12px 40px rgba(189, 152, 64, 0.25);
    border-color: var(--color-gold-light);
}

.document-card__placeholder {
    width: 80px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: var(--color-gray-lightest);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--color-gray-lighter);
}

.document-card__placeholder svg {
    width: 40px;
    height: 40px;
    color: var(--color-gold);
}

.document-card__title {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-gray-dark);
}

/* ===== Trust Section ===== */
.trust {
    padding: 6rem 0;
}

.trust__content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.trust__image-placeholder {
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 100%);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust__icon {
    width: 100px;
    height: 100px;
    color: var(--color-white);
    opacity: 0.5;
}

.trust__subtitle {
    font-size: 1.1rem;
    color: var(--color-gray);
    margin-bottom: 2rem;
}

.trust__list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.trust__item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.trust__item svg {
    width: 24px;
    height: 24px;
    color: var(--color-gold);
    flex-shrink: 0;
    margin-top: 2px;
}

/* ===== Debts Section ===== */
.debts {
    padding: 6rem 0;
    background: var(--color-gray-lightest);
}

.debts__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.debts__grid > * {
    flex: 1 1 calc(50% - 1rem);
    min-width: 200px;
}

.debt-card {
    background: var(--color-white);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    border: 2px solid var(--color-gray-lightest);
}

.debt-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.debt-card:hover::before {
    opacity: 0.1;
}

.debt-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 10px 35px rgba(189, 152, 64, 0.3);
    border-color: var(--color-gold);
}

.debt-card__icon,
.debt-card__title {
    position: relative;
    z-index: 1;
}

.debt-card__icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(189, 152, 64, 0.3);
}

.debt-card:hover .debt-card__icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 6px 20px rgba(189, 152, 64, 0.5);
}

.debt-card__icon svg {
    width: 32px;
    height: 32px;
    color: var(--color-white);
}

.debt-card__title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-gray-dark);
}

/* ===== Consequences Section ===== */
.consequences {
    padding: 6rem 0;
}

.consequences__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.consequence-card {
    padding: 3rem;
    border-radius: 12px;
    border: 2px solid;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.consequence-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.consequence-card--negative::before {
    background: radial-gradient(circle at center, rgba(255, 68, 68, 0.1) 0%, transparent 70%);
}

.consequence-card--positive::before {
    background: radial-gradient(circle at center, rgba(189, 152, 64, 0.1) 0%, transparent 70%);
}

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

.consequence-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.consequence-card--negative {
    background: #fff5f5;
    border-color: #ff4444;
}

.consequence-card--positive {
    background: #f0fdf4;
    border-color: var(--color-gold);
}

.consequence-card__title {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    text-align: center;
}

.consequence-card__list {
    list-style: none;
    position: relative;
    z-index: 1;
}

.consequence-card__list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    font-size: 1rem;
    line-height: 1.5;
}

.consequence-card--negative svg {
    width: 20px;
    height: 20px;
    color: #ff4444;
    flex-shrink: 0;
    margin-top: 2px;
}

.consequence-card--positive svg {
    width: 20px;
    height: 20px;
    color: var(--color-gold);
    flex-shrink: 0;
    margin-top: 2px;
}

/* ===== Why Choose Section ===== */
.why-choose {
    padding: 6rem 0;
    background: var(--color-black);
    color: var(--color-white);
}

.why-choose .section-title {
    color: var(--color-white);
}

.why-choose__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, var(--color-gray-dark) 0%, #1f1f1f 100%);
    border-radius: 12px;
    position: relative;
    transition: var(--transition);
    border: 1px solid rgba(189, 152, 64, 0.1);
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(189, 152, 64, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: linear-gradient(135deg, var(--color-gray) 0%, var(--color-gray-dark) 100%);
    border-color: rgba(189, 152, 64, 0.3);
    box-shadow: 0 12px 40px rgba(189, 152, 64, 0.2);
}

.feature-card__number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-gold);
    opacity: 0.2;
    font-family: var(--font-display);
}

.feature-card__icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1.5rem;
    color: var(--color-gold);
}

.feature-card__icon svg {
    width: 100%;
    height: 100%;
}

.feature-card__title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-white);
}

/* ===== Cases Section ===== */
.cases {
    padding: 6rem 0;
}

.cases__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.cases__grid > * {
    flex: 1 1 calc(50% - 1rem);
    min-width: 300px;
}

.case-card {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 5px solid var(--color-gold);
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease;
}

.case-card:hover::before {
    transform: scaleY(1);
}

.case-card:hover {
    transform: translateY(-8px) translateX(5px);
    box-shadow: 0 12px 40px rgba(189, 152, 64, 0.25);
    border-left-color: var(--color-gold-light);
}

.case-card__number {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 1.5rem;
    font-family: var(--font-display);
}

.case-card__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-gray-lighter);
}

.case-card__row:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.case-card__label {
    font-size: 0.9rem;
    color: var(--color-gray);
    font-weight: 500;
}

.case-card__value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-black);
}

/* ===== CTA Section ===== */
.cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.cta__content {
    position: relative;
    z-index: 1;
}

.cta__content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 3s ease-in-out infinite;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

.cta__icon svg {
    width: 40px;
    height: 40px;
    color: var(--color-white);
}

.cta__title {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--color-white);
    margin-bottom: 1rem;
}

.cta__text {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

/* ===== Process Section ===== */
.process {
    padding: 6rem 0;
}

.process__timeline {
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    left: 30px;
    top: 70px;
    width: 2px;
    height: calc(100% + 3rem);
    background: var(--color-gray-lightest);
}

.process-step:last-child::after {
    display: none;
}

.process-step__number {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-display);
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(189, 152, 64, 0.3);
    transition: var(--transition);
}

.process-step:hover .process-step__number {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(189, 152, 64, 0.5);
}

.process-step__content {
    flex: 1;
    padding: 1rem 0;
}

.process-step__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.process-step__duration {
    font-size: 0.9rem;
    color: var(--color-gold);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.process-step__description {
    color: var(--color-gray);
    line-height: 1.6;
}

/* ===== Warning Section ===== */
.warning {
    padding: 6rem 0;
    background: #fff8e1;
}

.warning__content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: start;
}

.warning__icon {
    width: 80px;
    height: 80px;
    background: #ff9800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.warning__icon svg {
    width: 40px;
    height: 40px;
    color: var(--color-white);
}

.warning__title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--color-black);
}

.warning__subtitle {
    font-size: 1.1rem;
    color: var(--color-gray);
    margin-bottom: 2rem;
}

.warning__list {
    list-style: none;
}

.warning__list li {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.warning__list strong {
    color: var(--color-black);
    font-weight: 700;
}

/* ===== Contacts Section ===== */
.contacts {
    padding: 0;
    background: var(--color-gray-lightest);
}

.contacts .container {
    padding: 0;
}

.contacts .section-title {
    padding: 4rem 24px 2rem;
    margin-bottom: 0;
}

.contacts__grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contacts__info {
    padding: 4rem 24px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.contacts__info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 0;
}

.contact-item {
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateX(10px);
}

.contact-item__icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(189, 152, 64, 0.3);
    transition: var(--transition);
}

.contact-item:hover .contact-item__icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(189, 152, 64, 0.5);
}

.contact-item__icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-white);
}

.contact-item__title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-black);
}

.contact-item__text {
    font-size: 1.05rem;
    color: var(--color-gray);
}

.contact-item__text a:hover {
    color: var(--color-gold);
}

.contact-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(189, 152, 64, 0.15);
}

.contact-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-black);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-card__title i {
    width: 24px;
    height: 24px;
    color: var(--color-gold);
}

.contact-hours {
    margin-bottom: 0;
}

.contact-hours__title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--color-black);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-hours__title i {
    width: 24px;
    height: 24px;
    color: var(--color-gold);
}

.contact-hours__row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-gray-lightest);
    font-size: 0.95rem;
}

.contact-hours__row:last-child {
    border-bottom: none;
}

.contact-hours__row span:first-child {
    color: var(--color-gray);
}

.contact-hours__row span:last-child {
    font-weight: 600;
    color: var(--color-black);
}

.contact-social {
    margin-bottom: 0;
}

.contact-social__title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--color-black);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-social__title i {
    width: 24px;
    height: 24px;
    color: var(--color-gold);
}

.contact-social__link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    color: var(--color-white);
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(189, 152, 64, 0.3);
}

.contact-social__link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(189, 152, 64, 0.4);
}

.contact-social__link i {
    width: 20px;
    height: 20px;
}

.contact-visit {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(189, 152, 64, 0.05) 0%, rgba(189, 152, 64, 0.1) 100%);
    border-radius: 12px;
    border-left: 4px solid var(--color-gold);
    transition: var(--transition);
}

.contact-visit:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(189, 152, 64, 0.2);
}

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

.contact-visit__icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-white);
}

.contact-visit__title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.contact-visit__text {
    color: var(--color-gray);
}

.contacts__map {
    width: 100vw;
    height: 400px;
    overflow: hidden;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.contacts__map::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    box-shadow: inset 0 0 0 1px rgba(189, 152, 64, 0.2);
    pointer-events: none;
    z-index: 1;
}

.contacts__map iframe {
    width: 100vw !important;
    height: 400px !important;
    display: block;
    border: none;
    max-width: none !important;
}

.contacts__map > div,
.contacts__map [id*="ymaps"] {
    width: 100vw !important;
    height: 400px !important;
}

.contacts__map ymaps,
.contacts__map [class*="ymaps"] {
    width: 100vw !important;
    height: 400px !important;
}

/* ===== Footer ===== */
.footer {
    padding: 3rem 0 2rem;
    background: #000;
    color: var(--color-white);
}

.footer__content {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 2rem;
    gap: 3rem;
}

.footer__logo-image {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
}

.footer__tagline {
    font-size: 0.95rem;
    color: var(--color-gray-lighter);
}

.footer__address,
.footer__phone,
.footer__email {
    margin-bottom: 0.5rem;
    color: var(--color-gray-lighter);
}

.footer__phone a:hover,
.footer__email a:hover {
    color: var(--color-gold);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--color-gray-dark);
}

.footer__copyright,
.footer__info {
    font-size: 0.9rem;
    color: var(--color-gray-lighter);
}

/* ===== Modal ===== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal.active {
    display: flex;
}

.modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.modal__content {
    position: relative;
    background: var(--color-white);
    border-radius: 16px;
    padding: 3rem;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
    border: 1px solid rgba(189, 152, 64, 0.1);
}

.modal__content--large {
    max-width: 700px;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal__close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 36px;
    height: 36px;
    background: var(--color-gray-lightest);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.modal__close:hover {
    background: var(--color-gray-lighter);
    transform: rotate(90deg);
}

.modal__close svg {
    width: 20px;
    height: 20px;
}

.modal__title {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.modal__subtitle {
    color: var(--color-gray);
    margin-bottom: 2rem;
}

/* ===== Form ===== */
.form__group {
    margin-bottom: 1.5rem;
}

.form__label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-gray-dark);
}

.form__input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--color-gray-lightest);
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--color-white);
}

.form__input:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(189, 152, 64, 0.1);
    transform: translateY(-2px);
}

/* ===== Calculator ===== */
.calculator__step {
    display: none;
}

.calculator__step--active {
    display: block;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.calculator__step-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.calculator__step-subtitle {
    color: var(--color-gray);
    margin-bottom: 2rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.calculator__options {
    margin-bottom: 2rem;
}

.calculator__option {
    display: block;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1rem;
    background: var(--color-gray-lightest);
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
}

.calculator__option:hover {
    background: var(--color-gold-light);
    color: var(--color-white);
    transform: translateX(8px);
    box-shadow: 0 4px 15px rgba(189, 152, 64, 0.3);
    border-color: var(--color-gold);
}

.calculator__option input {
    position: absolute;
    opacity: 0;
}

.calculator__option input:checked + span {
    font-weight: 700;
}

.calculator__option input:checked ~ * {
    color: var(--color-white);
}

.calculator__option:has(input:checked) {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    color: var(--color-white);
    border-color: var(--color-gold-dark);
    box-shadow: 0 4px 15px rgba(189, 152, 64, 0.4);
}

.calculator__option span {
    font-size: 1.05rem;
}

.calculator__buttons {
    display: flex;
    gap: 1rem;
}

.calculator__buttons .btn {
    flex: 1;
}

/* ===== Responsive ===== */
@media (max-width: 968px) {
    .nav {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        border-top: 1px solid var(--color-gray-lightest);
        padding: 2rem;
        transform: translateY(-100%);
        opacity: 0;
        transition: var(--transition);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .nav__list {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .burger {
        display: flex;
    }
    
    .header__phone {
        display: none;
    }
    
    .hero__content {
        grid-template-columns: 1fr;
    }
    
    .hero__stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .stat {
        padding: 2rem 1rem;
        min-height: 120px;
    }
    
    .stat__value {
        font-size: clamp(2rem, 4vw, 2.5rem);
    }
    
    .stat__label {
        font-size: 0.9rem;
    }
    
    .about__content,
    .trust__content {
        grid-template-columns: 1fr;
    }
    
    .consequences__grid {
        grid-template-columns: 1fr;
    }
    
    .contacts__grid {
        flex-direction: column;
    }
    
    .contacts__info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contacts__info {
        padding: 3rem 24px;
    }
    
    .warning__content {
        grid-template-columns: 1fr;
    }
    
    .footer__content {
        flex-direction: column;
    }
    
    .documents__grid > *,
    .debts__grid > *,
    .cases__grid > * {
        flex: 1 1 100%;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 8rem 0 4rem;
    }
    
    .hero__stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat {
        padding: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .modal__content {
        padding: 2rem;
    }
    
    .calculator__buttons {
        flex-direction: column;
    }
    
    .footer__bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .documents__grid > *,
    .debts__grid > *,
    .cases__grid > * {
        flex: 1 1 100%;
        min-width: 100%;
    }
}

