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

:root {
    --gold: #D7A067;
    --gold-light: #FCEFA9;
    --gold-dark: #DBB972;
    --black: #0A0A0C;
    --white: #FFFFFF;
    --gray: #F5F5F5;
    --dark-bg: #1a1a1a;
    --dark-section: #252525;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--white);
    background: #1a1a1a;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

h1, h2, h3 {
    font-family: 'Forum', serif;
    font-weight: 400;
}

.header {
    background: rgba(10, 10, 12, 0.85);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.5);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(215, 160, 103, 0.1);
}


.header .container {
    position: relative;
}

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

.logo a {
    display: block;
    line-height: 0;
}

.logo img {
    height: 50px;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    transition: color 0.3s;
}

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

.phone {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
}

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

.burger-menu span {
    width: 24px;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 0;
    background: rgba(10, 10, 12, 0.88);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    border-top: 1px solid rgba(215, 160, 103, 0.2);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.mobile-nav.active {
    max-height: 450px;
}

.mobile-nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(215, 160, 103, 0.1);
    transition: all 0.3s;
    display: block;
}

.mobile-nav a:hover {
    color: var(--gold);
    background: rgba(215, 160, 103, 0.05);
}

.mobile-nav a:last-child {
    border-bottom: none;
}

.mobile-phone {
    color: var(--gold) !important;
    font-weight: 600;
    font-size: 16px;
    background: rgba(215, 160, 103, 0.1) !important;
}

.hero {
    padding: 120px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/moscow-city.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 12, 0.6) 0%, rgba(26, 26, 26, 0.7) 100%);
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 64px;
    margin-bottom: 30px;
    color: var(--white);
    background: linear-gradient(135deg, var(--white) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.15;
    letter-spacing: -1.5px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle-inline {
    display: block;
    font-size: 38px;
    font-weight: 300;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.95);
    font-family: 'Forum', serif;
    letter-spacing: 1px;
    text-shadow: 0 0 20px rgba(215, 160, 103, 0.6), 0 0 40px rgba(215, 160, 103, 0.3);
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
}

.hero-subtitle {
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 60px;
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(215, 160, 103, 0.3);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

.hero-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.stat-item {
    background: linear-gradient(135deg, rgba(215, 160, 103, 0.1) 0%, rgba(37, 37, 37, 0.6) 100%);
    padding: 18px 30px;
    border-radius: 12px;
    border: 1px solid rgba(215, 160, 103, 0.4);
    font-weight: 600;
    color: var(--white);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.stat-item:hover {
    transform: translateY(-3px);
    border-color: var(--gold);
    box-shadow: 0 8px 25px rgba(215, 160, 103, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.top-projects {
    padding: 80px 0;
    background: #000000;
}

.top-projects-title {
    font-size: 42px;
    text-align: left;
    margin-bottom: 50px;
    color: var(--gold-light);
    font-family: 'Forum', serif;
    line-height: 1.3;
    letter-spacing: 1px;
}

.projects-wrapper {
    position: relative;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
    align-items: center;
}

.projects-grid {
    display: contents;
}

.projects-grid .project-card:nth-child(1) {
    grid-column: 2 / 6;
    grid-row: 1;
}

.projects-grid .project-card:nth-child(2) {
    grid-column: 9 / 13;
    grid-row: 1;
}

.projects-grid .project-card:nth-child(3) {
    grid-column: 1 / 5;
    grid-row: 2;
}

.projects-grid .project-card:nth-child(4) {
    grid-column: 9 / 13;
    grid-row: 2;
}

.projects-grid .project-card:nth-child(5) {
    grid-column: 2 / 7;
    grid-row: 3;
}

.project-button-center {
    grid-column: 5 / 9;
    grid-row: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

@media (max-width: 900px) {
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 22px;
    }
    
    .stat-item {
        font-size: 14px;
        padding: 15px 25px;
    }
}

@media (max-width: 1024px) {
    .projects-wrapper {
        grid-template-columns: repeat(6, 1fr);
        gap: 15px;
    }
    
    .projects-grid .project-card:nth-child(1) {
        grid-column: 1 / 4;
        grid-row: 1;
    }
    
    .projects-grid .project-card:nth-child(2) {
        grid-column: 4 / 7;
        grid-row: 1;
    }
    
    .projects-grid .project-card:nth-child(3) {
        grid-column: 1 / 4;
        grid-row: 2;
    }
    
    .projects-grid .project-card:nth-child(4) {
        grid-column: 4 / 7;
        grid-row: 2;
    }
    
    .projects-grid .project-card:nth-child(5) {
        grid-column: 1 / 7;
        grid-row: 3;
    }
    
    .project-button-center {
        grid-column: 1 / 7;
        grid-row: 4;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .top-projects {
        padding: 50px 0;
    }
    
    .top-projects-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .projects-wrapper {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .projects-grid .project-card:nth-child(1),
    .projects-grid .project-card:nth-child(2),
    .projects-grid .project-card:nth-child(3),
    .projects-grid .project-card:nth-child(4),
    .projects-grid .project-card:nth-child(5) {
        grid-column: 1;
        grid-row: auto;
    }
    
    .project-button-center {
        grid-column: 1;
        grid-row: auto;
        margin-top: 10px;
    }
    
    .project-button-center .btn {
        width: 100%;
        padding: 16px 30px;
        font-size: 14px;
    }
}

.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 16/10;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(215, 160, 103, 0.3);
}

.project-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(215, 160, 103, 0.3);
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.project-card:hover img {
    transform: scale(1.05);
}

.project-label {
    position: absolute;
    top: 20px;
    left: 20px;
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.project-button-center .btn {
    white-space: nowrap;
}

.btn {
    display: inline-block;
    padding: 18px 40px;
    border: none;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    text-align: center;
    max-width: 450px;
    width: auto;
}

.btn::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;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
    color: var(--black);
    box-shadow: 0 4px 15px rgba(215, 160, 103, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(215, 160, 103, 0.5);
}

.btn-secondary {
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid var(--gold);
    color: var(--gold);
    box-shadow: 0 4px 15px rgba(215, 160, 103, 0.4);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--black);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(215, 160, 103, 0.5);
}

.section-title {
    font-size: 52px;
    text-align: center;
    margin-bottom: 30px;
    background: linear-gradient(135deg, var(--white) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    letter-spacing: -1.5px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    font-size: 22px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--gold);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.tasks {
    padding: 80px 0;
    background: var(--dark-section);
}

.tasks-modern-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

@media (max-width: 1024px) {
    .tasks-modern-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .tasks-modern-grid {
        grid-template-columns: 1fr;
    }
}

.task-modern {
    position: relative;
    min-height: 280px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.task-modern-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(215, 160, 103, 0.15) 0%, rgba(50, 50, 50, 0.7) 100%);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.task-modern-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(215, 160, 103, 0.1) 50%, transparent 70%);
    transform: rotate(45deg);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.task-modern-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.task-modern:hover .task-modern-bg {
    background: linear-gradient(135deg, rgba(215, 160, 103, 0.15) 0%, rgba(37, 37, 37, 1) 100%);
}

.task-modern:hover .task-modern-bg::before {
    top: -100%;
    right: -100%;
}

.task-modern:hover .task-modern-bg::after {
    transform: scaleX(1);
}

.task-modern:hover {
    transform: translateY(-8px);
}

.task-modern-content {
    position: relative;
    z-index: 2;
    padding: 40px 35px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.task-number {
    font-family: 'Forum', serif;
    font-size: 72px;
    font-weight: 400;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 20px;
    opacity: 0.5;
    transition: all 0.4s;
}

.task-modern:hover .task-number {
    opacity: 0.8;
    transform: scale(1.1);
}

.task-modern h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--white);
    font-weight: 500;
    transition: color 0.3s;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.task-modern:hover h3 {
    color: var(--gold-light);
}

.task-modern p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 1.6;
    margin-top: auto;
}

.task-modern[data-index="1"] .task-modern-bg {
    background: linear-gradient(135deg, rgba(215, 160, 103, 0.25) 0%, rgba(50, 50, 50, 0.7) 100%);
}

.task-modern[data-index="2"] .task-modern-bg {
    background: linear-gradient(135deg, rgba(252, 239, 169, 0.2) 0%, rgba(50, 50, 50, 0.7) 100%);
}

.task-modern[data-index="3"] .task-modern-bg {
    background: linear-gradient(135deg, rgba(219, 185, 114, 0.22) 0%, rgba(50, 50, 50, 0.7) 100%);
}

.task-modern[data-index="4"] .task-modern-bg {
    background: linear-gradient(135deg, rgba(215, 160, 103, 0.18) 0%, rgba(50, 50, 50, 0.7) 100%);
}

.task-modern[data-index="5"] .task-modern-bg {
    background: linear-gradient(135deg, rgba(252, 239, 169, 0.15) 0%, rgba(50, 50, 50, 0.7) 100%);
}

.task-modern[data-index="6"] .task-modern-bg {
    background: linear-gradient(135deg, rgba(219, 185, 114, 0.2) 0%, rgba(50, 50, 50, 0.7) 100%);
}

.tasks .btn {
    display: block;
    margin: 0 auto;
}

.trust {
    padding: 80px 0;
    background: var(--dark-bg);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    grid-auto-rows: 1fr;
}

@media (max-width: 1024px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }
}

.trust-item {
    background: var(--dark-section);
    padding: 35px;
    border-radius: 10px;
    border: 1px solid rgba(215, 160, 103, 0.3);
    text-align: left;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: flex-start;
}

.trust-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--gold);
    line-height: 1.4;
    font-weight: 400;
    margin-top: 0;
    flex-shrink: 0;
    min-height: 90px;
    display: flex;
    align-items: flex-start;
}

.trust-item p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-size: 15px;
    margin: 0;
}

.how-we-work {
    padding: 80px 0;
    background: #000000;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.process-step {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(215, 160, 103, 0.15);
    border-radius: 12px;
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
}

.process-step:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(215, 160, 103, 0.3);
    transform: translateY(-5px);
}

.step-number {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--black);
    width: 60px;
    height: 60px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.step-content {
    flex: 1;
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--white);
    line-height: 1.4;
    font-weight: 600;
}

.process-step p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    font-size: 15px;
}

.why-us {
    padding: 80px 0;
    background: var(--dark-bg);
}

.section-description {
    text-align: center;
    font-size: 19px;
    margin-bottom: 50px;
    font-weight: 500;
    line-height: 1.8;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(135deg, rgba(40, 40, 45, 0.6) 0%, rgba(30, 30, 35, 0.8) 100%);
    padding: 35px 45px;
    border-radius: 15px;
    border: 1px solid rgba(215, 160, 103, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.highlight-text {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(215, 160, 103, 0.4);
    text-underline-offset: 4px;
}

.highlight-gold {
    color: var(--gold);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(215, 160, 103, 0.3);
}

.why-us-content h3 {
    font-size: 26px;
    margin-bottom: 25px;
    line-height: 1.4;
    font-weight: 400;
}

.why-us-list {
    list-style: none;
    margin-bottom: 35px;
}

.why-us-list li {
    padding: 15px 0;
    padding-left: 35px;
    position: relative;
    font-size: 17px;
    line-height: 1.7;
}

.why-us-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
    font-size: 20px;
}

.why-us-highlight {
    background: var(--dark-section);
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid var(--gold);
}

.why-us-highlight p {
    color: rgba(255, 255, 255, 0.9);
}

.cases {
    padding: 80px 0;
    background: var(--dark-section);
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.case-card {
    background: rgba(10, 10, 12, 0.75);
    border: 1px solid rgba(215, 160, 103, 0.3);
    border-radius: 12px;
    padding: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 15px;
    min-height: 250px;
    backdrop-filter: blur(10px);
}

.case-card:hover {
    background: rgba(10, 10, 12, 1);
    border-color: rgba(215, 160, 103, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(215, 160, 103, 0.3);
}

.case-card .case-number {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--black);
    width: 60px;
    height: 60px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.case-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--white);
    line-height: 1.4;
    font-weight: 600;
}

.case-preview {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    font-size: 14px;
    flex-grow: 1;
    margin-bottom: 15px;
}

.case-read-more {
    color: var(--gold);
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
    margin-top: auto;
}

.case-card:hover .case-read-more {
    color: var(--gold-light);
    transform: translateX(5px);
}

.case-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    overflow: auto;
}

.case-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-modal-content {
    background: var(--dark-bg);
    margin: 20px;
    padding: 50px;
    border: 2px solid rgba(215, 160, 103, 0.3);
    border-radius: 20px;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

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

.case-modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    font-weight: 300;
    color: var(--gold);
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
    padding: 0;
    width: 40px;
    height: 40px;
}

.case-modal-close:hover {
    color: var(--gold-light);
    transform: rotate(90deg);
}

#caseModalBody .case-number {
    font-family: 'Forum', serif;
    font-size: 80px;
    font-weight: 400;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 20px;
}

#caseModalBody h3 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--white);
    font-weight: 600;
}

.case-task, .case-solution, .case-result {
    margin-bottom: 0;
}

.case-task strong, .case-solution strong, .case-result strong {
    display: block;
    color: var(--gold);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    font-weight: 700;
}

.case-task p, .case-solution p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-size: 16px;
    margin: 0;
}

.case-result ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.case-result li {
    color: rgba(255, 255, 255, 0.9);
    padding: 0;
    padding-left: 28px;
    position: relative;
    line-height: 1.7;
    font-size: 16px;
}

.case-result li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
    font-size: 18px;
}

.case-result .highlight {
    color: var(--gold-light);
    font-weight: 700;
    white-space: nowrap;
}

.personal-brand {
    padding: 80px 0;
    background: var(--dark-bg);
}

.personal-brand-content {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 80px;
    align-items: center;
}

.personal-brand-image img {
    width: 100%;
    max-width: 380px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.achievements-list {
    list-style: none;
    margin-bottom: 40px;
    background: rgba(30, 30, 35, 0.5);
    padding: 30px 35px;
    border-radius: 12px;
    border-left: 3px solid var(--gold);
}

.achievements-list li {
    padding: 14px 0;
    padding-left: 35px;
    position: relative;
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
}

.achievements-list li:not(:last-child) {
    margin-bottom: 8px;
}

.achievements-list li:before {
    content: "★";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 18px;
}

.personal-brand-text {
    text-align: center;
}

.personal-brand .btn {
    margin-top: 30px;
}

.free-services {
    padding: 80px 0;
    background: var(--dark-section);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-item {
    background: var(--dark-bg);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(215, 160, 103, 0.3);
}

.service-item h3 {
    font-size: 18px;
    color: var(--white);
}

.free-services .btn {
    display: block;
    margin: 0 auto;
}

.reviews {
    padding: 80px 0;
    background: #000000;
}

.reviews-yell-link {
    text-align: center;
    margin: 40px 0;
}

.reviews-yell-link .btn {
    display: inline-block;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

@media (max-width: 1024px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

.review-item {
    background: linear-gradient(135deg, rgba(215, 160, 103, 0.05) 0%, rgba(20, 20, 20, 0.6) 100%);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(215, 160, 103, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.review-item:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(215, 160, 103, 0.2);
}

.review-date {
    color: var(--gold);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.review-text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-size: 15px;
    margin: 0;
}

.footer {
    background: linear-gradient(180deg, #0A0A0C 0%, #000000 100%);
    color: var(--white);
    padding: 80px 0 30px;
    position: relative;
    border-top: 1px solid rgba(215, 160, 103, 0.2);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
    align-items: start;
}

.footer-main {
    max-width: 300px;
}

.footer-logo img {
    height: 70px;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 10px rgba(215, 160, 103, 0.3));
}

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

.footer h3 {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 400;
    font-family: 'Forum', serif;
}

.footer-contacts p,
.footer-links a {
    margin-bottom: 12px;
    line-height: 1.7;
}

.footer-contacts strong {
    color: var(--gold);
    font-weight: 500;
}

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

.footer a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.footer-social {
    overflow: visible;
}

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

.social-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    padding: 8px 0;
    border-left: 2px solid transparent;
    padding-left: 12px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-links a i {
    font-size: 20px;
    color: var(--gold);
    transition: all 0.3s ease;
    min-width: 20px;
}

.social-links a:hover {
    color: var(--gold);
    border-left-color: var(--gold);
    padding-left: 18px;
    transform: translateX(0);
}

.social-links a:hover i {
    transform: scale(1.15);
    color: #f4d03f;
}

.footer-bottom {
    border-top: 1px solid rgba(215, 160, 103, 0.2);
    padding-top: 30px;
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 25px;
}

.footer-legal a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-legal a:hover {
    color: var(--gold);
    transform: translateX(0);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle-inline {
        font-size: 22px;
        margin-top: 10px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .personal-brand-content {
        grid-template-columns: 1fr;
    }
    
    .nav {
        display: none;
    }
    
    .phone {
        display: none;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .mobile-nav {
        display: flex;
    }
    
    .logo img {
        height: 35px;
    }
    
    .header {
        padding: 12px 0;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
    }
    
    .header-content {
        gap: 10px;
    }
    
    body {
        padding-top: 60px;
    }
    
    .hero {
        padding: 60px 0 50px;
        min-height: auto;
    }
    
    .hero-title {
        line-height: 1.2;
        letter-spacing: -0.5px;
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 40px;
    }
    
    .footer {
        padding: 50px 0 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-main {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .footer-logo img {
        height: 60px;
        margin: 0 auto 20px;
    }
    
    .footer h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .footer-contacts,
    .footer-social,
    .footer-links {
        text-align: center;
    }
    
    .footer-contacts p {
        font-size: 14px;
    }
    
    .social-links {
        align-items: center;
    }
    
    .social-links a {
        border-left: none;
        padding-left: 0;
    }
    
    .social-links a:hover {
        padding-left: 0;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 15px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .stat-item {
        width: 100%;
        padding: 15px 20px;
        font-size: 14px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        padding: 15px 30px;
        font-size: 14px;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .case-content {
        padding: 20px 15px;
        gap: 15px;
    }
    
    .case-number {
        font-size: 40px;
    }
    
    .case-content h3 {
        font-size: 18px;
    }
    
    .case-task p, .case-solution p {
        font-size: 13px;
    }
    
    .case-result li {
        font-size: 13px;
    }
    
    .cases-wrapper {
        padding: 0 10px;
    }
    
    .tasks,
    .trust,
    .how-we-work,
    .why-us,
    .cases,
    .personal-brand,
    .free-services {
        padding: 50px 0;
    }
    
    .section-title {
        margin-bottom: 20px;
    }
    
    .section-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .btn {
        font-size: 14px;
        padding: 16px 25px;
        min-height: 48px;
    }
    
    .mobile-nav a {
        min-height: 48px;
        display: flex;
        align-items: center;
    }
    
    .burger-menu {
        min-width: 44px;
        min-height: 44px;
    }
    
    .task-modern h3 {
        font-size: 18px;
    }
    
    .task-modern p {
        font-size: 14px;
    }
    
    .process-step h3 {
        font-size: 18px;
    }
    
    .why-us-content h3 {
        font-size: 20px;
    }
    
    .why-us-list li {
        font-size: 15px;
    }
    
    .section-description {
        font-size: 16px;
    }
}

.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    overflow: auto;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--dark-bg);
    margin: 20px auto;
    padding: 50px;
    border: 2px solid rgba(215, 160, 103, 0.3);
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    font-weight: 300;
    color: var(--gold);
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    color: var(--gold-light);
    transform: rotate(90deg);
}

.modal h2 {
    color: var(--white);
    margin-bottom: 10px;
    font-size: 32px;
}

.modal-subtitle {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    font-size: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(215, 160, 103, 0.3);
    border-radius: 10px;
    color: var(--white);
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-full {
    width: 100%;
    margin-top: 10px;
}

.form-privacy {
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 15px;
}

.success-message {
    text-align: center;
    padding: 40px 20px;
}

.success-message h3 {
    color: var(--gold);
    font-size: 28px;
    margin-bottom: 15px;
}

.success-message p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
}

@media (max-width: 768px) {
    .modal-content {
        padding: 30px 20px;
        margin: 10px;
    }
    
    .modal h2 {
        font-size: 24px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .case-modal-content {
        padding: 30px 20px;
        margin: 10px;
        width: calc(100% - 20px);
        max-height: 95vh;
    }
    
    .case-modal-close {
        top: 10px;
        right: 15px;
        font-size: 32px;
        width: 32px;
        height: 32px;
    }
    
    #caseModalBody .case-number {
        font-size: 50px;
        margin-bottom: 15px;
    }
    
    #caseModalBody h3 {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .case-task p, .case-solution p {
        font-size: 14px;
    }
    
    .case-result li {
        font-size: 14px;
        padding-left: 24px;
    }
    
    .case-task, .case-solution, .case-result {
        margin-bottom: 20px;
    }
}
