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

:root {
    --dark-bg: #0a0e27;
    --dark-blue: #1a1f3a;
    --dark-purple: #2d1b4e;
    --card-bg: #1e2338;
    --text-white: #ffffff;
    --text-light: #e0e0e0;
    --yellow: #ffd700;
    --yellow-gradient: linear-gradient(135deg, #ffd700 0%, #ffb800 100%);
    --gold: #d4af37;
    --green: #4ade80;
    --red: #ef4444;
    --blue-accent: #3b82f6;
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-purple) 50%, var(--dark-bg) 100%);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header .container {
    position: relative;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 0;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-white);
    flex-shrink: 0;
}

.logo-img {
    height: 30px;
    width: auto;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

/* Navigation - Desktop: horizontal */
.nav {
    display: flex;
    gap: 20px;
    flex: 1;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.nav-link {
    color: var(--text-white);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
    padding: 5px 0;
}

.nav-link:hover {
    color: var(--yellow);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--yellow);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.header-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    cursor: pointer;
    padding: 10px;
    transition: var(--transition);
    flex-shrink: 0;
    position: relative;
    z-index: 1001;
}

.mobile-menu-toggle:hover {
    border-color: var(--yellow);
    background: rgba(255, 215, 0, 0.1);
    transform: scale(1.05);
}

.mobile-menu-toggle:active {
    transform: scale(0.95);
}

.mobile-menu-toggle:focus {
    outline: 2px solid var(--yellow);
    outline-offset: 2px;
}

.mobile-menu-toggle.active {
    border-color: var(--yellow);
    background: rgba(255, 215, 0, 0.15);
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: var(--text-white);
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    background: var(--yellow);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    background: var(--yellow);
}

/* Mobile Menu Dropdown - Скрыто по умолчанию */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: linear-gradient(180deg, var(--card-bg) 0%, var(--dark-bg) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.4s ease,
                padding 0.4s ease;
    padding: 0;
}

.mobile-menu.active {
    display: block;
    max-height: 100vh;
    opacity: 1;
    padding: 30px 0;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0 20px;
    margin-bottom: 25px;
}

.mobile-nav-link {
    color: var(--text-white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 18px 20px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.mobile-nav-link::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--yellow);
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition);
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
    background: rgba(255, 215, 0, 0.1);
    color: var(--yellow);
    padding-left: 30px;
    transform: translateX(5px);
}

.mobile-nav-link:hover::before,
.mobile-nav-link:active::before {
    opacity: 1;
}

.mobile-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 0 20px;
}

.mobile-buttons .btn {
    padding: 16px 24px;
    font-size: 15px;
    font-weight: 700;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.mobile-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

.mobile-buttons .btn:active {
    transform: translateY(0);
}

/* Desktop: always show nav and buttons, hide mobile menu */
@media (min-width: 769px) {
    .nav {
        display: flex !important;
    }
    
    .header-buttons {
        display: flex !important;
    }
    
    .mobile-menu-toggle {
        display: none !important;
    }
    
    .mobile-menu {
        display: none !important;
    }
}

/* Buttons */
.btn {
    padding: 10px 18px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    white-space: nowrap;
    line-height: 1.4;
}

.header-buttons .btn {
    padding: 10px 16px;
    font-size: 12px;
}

.btn-dark {
    background: var(--card-bg);
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-dark:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-yellow {
    background: var(--yellow-gradient);
    color: var(--dark-bg);
    font-weight: 700;
}

.btn-yellow:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

.btn-full {
    width: 100%;
}

/* Hero Section */
.hero {
    margin-top: 0;
    padding-top: 85px;
    padding-bottom: 40px;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
    position: relative;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hero-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hero-image-wrapper {
    width: 100%;
    max-height: 600px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    transition: var(--transition);
}

.hero-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.3);
}

.hero-image {
    width: 100%;
    height: 600px;
    display: block;
    object-fit: cover;
    object-position: center top;
    transition: var(--transition);
}

.hero-image-wrapper:hover .hero-image {
    transform: scale(1.05);
}

.tags {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.tag {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tag-active {
    background: var(--yellow-gradient);
    color: var(--dark-bg);
    border: none;
    font-weight: 600;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-white);
    letter-spacing: -0.5px;
}

.hero-description {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
}

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

.features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
}

.feature-icon {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--text-white);
}

.feature-icon-green {
    background: var(--green);
    border-color: var(--green);
}

.feature-icon-grey {
    background: var(--card-bg);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Hero Table and Phone */
.hero-table-wrapper {
    position: absolute;
    left: 0;
    bottom: 0;
    width: calc(50% - 30px);
    max-width: none;
    margin-top: 0;
    display: block;
    z-index: 1;
}

.hero-table-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: left center;
}

.hero-phone-link-shadow {
    position: absolute;
    bottom: 42%;
    right: 37.5%;
    width: 10%;
    height: 25%;
    transform: rotate(4deg);
}

.hero-phone-link {
    position: absolute;
    bottom: 39.5%;
    right: 34.8%;
    display: block;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    transform-origin: center;
    transform: rotate(4deg);
}

.hero-phone-image {
    width: auto;
    height: 135px;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
    transition: var(--transition);
}

.hero-phone-link:hover + .hero-phone-link-shadow {
    box-shadow: 0 0px 45px rgba(255, 215, 0, 1);
    transform: rotate(4deg);
}

/* Скрываем на мобильных устройствах */
@media (max-width: 1205px) {
    .hero-table-wrapper {
        display: none;
    }
}

/* Form Container */
.form-container {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    backdrop-filter: blur(10px);
}

.form-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-white);
}

.form-note {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 25px;
    opacity: 0.7;
}

.quick-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.form-input {
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    color: var(--text-white);
    font-size: 14px;
    font-family: inherit;
    transition: var(--transition);
}

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

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

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

.form-info {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.form-message {
    margin-top: 15px;
    padding: 12px 18px;
    border-radius: var(--border-radius);
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    animation: fadeInUp 0.3s ease;
}

.form-message-success {
    background: rgba(74, 222, 128, 0.15);
    border: 1px solid rgba(74, 222, 128, 0.3);
    color: var(--green);
}

.form-message-error {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: var(--red);
}

.info-box {
    flex: 1;
    min-width: 120px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-label {
    font-size: 11px;
    color: var(--text-light);
    opacity: 0.7;
}

.info-value {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-white);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-white);
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 18px;
    text-align: center;
    color: var(--text-light);
    max-width: 900px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

/* About Section */
.about {
    background: rgba(0, 0, 0, 0.2);
}

.about-content {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 50px;
}

.about-main {
    margin-bottom: 50px;
}

.about-heading {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-white);
}

.about-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
}

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

.about-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 30px;
    position: relative;
    transition: var(--transition);
}

.about-card:hover {
    transform: translateY(-5px);
    border-color: var(--yellow);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.card-number {
    position: absolute;
    top: -15px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: var(--gold);
    border: 3px solid var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    color: var(--dark-bg);
}

.card-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-white);
    margin-top: 10px;
}

.card-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
}

/* Stages Section */
.stages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stage-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: var(--transition);
}

.stage-card:hover {
    transform: translateY(-5px);
    border-color: var(--yellow);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.stage-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-white);
    min-height: 90px;
    line-height: 1.4;
}

.stage-description {
    font-size: 16px;
    color: var(--text-light);
    min-height: 108px;
    line-height: 1.7;
}

.stage-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    min-height: 144px;
    gap: 12px;
    margin: 10px 0;
}

.stage-list li {
    padding-left: 25px;
    position: relative;
    font-size: 15px;
    /* min-height: 48px; */
    color: var(--text-light);
    line-height: 1.6;
}

.stage-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--blue-accent);
    border-radius: 50%;
}

/* Goals Section */
.goals {
    background: rgba(0, 0, 0, 0.2);
}

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

.goal-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 35px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.goal-card:hover {
    transform: translateY(-5px);
    border-color: var(--yellow);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.goal-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 25px;
    margin-top: 0;
    line-height: 1.4;
    min-height: 56px;
    display: flex;
    align-items: flex-start;
}

.goal-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.goal-item {
    padding-left: 25px;
    position: relative;
    font-size: 15px;
    /* min-height: 72px; */
    color: var(--text-light);
    line-height: 1.6;
}

.goal-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.goal-item-red::before {
    background: var(--red);
}

.goal-item-yellow::before {
    background: var(--yellow);
}

.goal-item-green::before {
    background: var(--green);
}

/* Workflow Section */
.workflow-steps {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 50px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.workflow-step {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 25px;
    align-items: start;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gold);
    border: 3px solid var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    color: var(--dark-bg);
    flex-shrink: 0;
}

.step-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.step-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-white);
    margin: 0;
    line-height: 1.3;
}

.step-description {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* FAQ Section */
.faq {
    background: rgba(0, 0, 0, 0.2);
    padding-bottom: 40px;
}

.faq-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

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

.faq-item {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--yellow);
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: transparent;
    border: none;
    color: var(--text-white);
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--yellow);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
}

.faq-item.active .faq-answer {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 15px;
    margin: 0;
}

.cta-box {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 35px;
    margin-bottom: 30px;
}

.cta-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-white);
}

.cta-text {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 25px;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 10px 18px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    color: var(--text-white);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.cta-btn-active {
    border-color: var(--green);
    background: rgba(74, 222, 128, 0.1);
}

.cta-btn:hover {
    border-color: var(--yellow);
    color: var(--yellow);
}

.contacts-box {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 35px;
}

.contacts-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-white);
}

.contacts-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.contacts-info p {
    font-size: 15px;
    color: var(--text-light);
}

.contacts-info a {
    color: var(--yellow);
    text-decoration: none;
    transition: var(--transition);
}

.contacts-info a:hover {
    text-decoration: underline;
}

.contacts-messengers {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.messenger-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-white);
}

.messenger-btn:hover {
    transform: translateY(-2px);
    border-color: var(--yellow);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

.messenger-btn-telegram {
    background: linear-gradient(135deg, rgba(37, 150, 190, 0.2) 0%, rgba(37, 150, 190, 0.1) 100%);
    border-color: rgba(37, 150, 190, 0.4);
}

.messenger-btn-telegram:hover {
    background: linear-gradient(135deg, rgba(37, 150, 190, 0.3) 0%, rgba(37, 150, 190, 0.2) 100%);
    border-color: rgba(37, 150, 190, 0.6);
    box-shadow: 0 6px 20px rgba(37, 150, 190, 0.4);
    color: #2596BE;
}

.messenger-btn-max {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0.1) 100%);
    border-color: rgba(255, 215, 0, 0.4);
}

.messenger-btn-max:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3) 0%, rgba(255, 215, 0, 0.2) 100%);
    border-color: var(--yellow);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    color: var(--yellow);
}

.messenger-btn svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.messenger-btn span {
    white-space: nowrap;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, var(--dark-bg) 0%, #050810 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 0;
}

.footer__top {
    padding: 60px 0 40px;
}

.footer__main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
}

.footer__company {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer__company-name {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-white);
    margin: 0;
    letter-spacing: 0.5px;
}

.footer__ogrn {
    font-size: 14px;
    color: var(--text-light);
    opacity: 0.8;
    margin: 0;
}

.footer__address {
    font-size: 14px;
    color: var(--text-light);
    opacity: 0.8;
    margin: 0;
    line-height: 1.6;
}

.footer__contact {
    margin-top: 5px;
}

.footer__contact:first-of-type {
    margin-top: 10px;
}

.footer__phone,
.footer__email {
    font-size: 16px;
    color: var(--yellow);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 600;
    display: inline-block;
}

.footer__phone:hover,
.footer__email:hover {
    color: var(--text-white);
    transform: translateX(5px);
}

.footer__nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer__nav-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer__nav-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-white);
    margin: 0;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 10px;
}

.footer__nav-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--yellow);
}

.footer__nav-title:not(:first-child) {
    margin-top: 10px;
}

.footer__nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0;
    padding: 0;
}

.footer__nav-link {
    font-size: 14px;
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    padding-left: 0;
    display: inline-block;
}

.footer__nav-link::before {
    content: '•';
    position: absolute;
    left: -15px;
    color: var(--yellow);
    opacity: 0;
    transition: var(--transition);
}

.footer__nav-link:hover {
    color: var(--yellow);
    padding-left: 15px;
    transform: translateX(5px);
}

.footer__nav-link:hover::before {
    opacity: 1;
}

.footer__consultation {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
}

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

.footer__consultation-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-white);
    margin: 0 0 15px;
    letter-spacing: -0.5px;
}

.footer__consultation-text {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0 0 30px;
}

.footer__consultation-btn {
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 700;
}

.btn--primary {
    background: var(--yellow-gradient);
    color: var(--dark-bg);
    border: none;
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

.btn--with-arrow::after {
    content: ' →';
    transition: var(--transition);
}

.btn--with-arrow:hover::after {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1400px) {
    .container {
        padding: 0 30px;
    }
    
    .nav {
        gap: 15px;
    }
    
    .nav-link {
        font-size: 12px;
    }
}

@media (max-width: 1200px) {
    .header-content {
        gap: 15px;
    }
    
    .nav {
        gap: 12px;
    }
    
    .nav-link {
        font-size: 11px;
    }
    
    .header-buttons .btn {
        padding: 8px 14px;
        font-size: 11px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .hero-right {
        gap: 25px;
    }
    
    .hero-image-wrapper {
        order: -1;
        margin-bottom: 0;
        max-height: 1200px;
    }
    
    .hero-image {
        height: 1200px;
        object-position: center top;
    }
    
    .about-cards,
    .stages-grid,
    .goals-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-content {
        grid-template-columns: 1fr;
    }
    
    .workflow-step {
        grid-template-columns: 50px 1fr;
        gap: 20px;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .footer__main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer__nav {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .header-content {
        padding: 15px 0;
    }
    
    .logo-text {
        font-size: 18px;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .header-content {
        padding: 15px 0;
        gap: 15px;
    }
    
    .logo {
        flex: 1;
        min-width: 0;
    }
    
    /* Скрываем навигацию и кнопки на мобильных */
    .nav {
        display: none !important;
    }
    
    .header-buttons {
        display: none !important;
    }
    
    /* Показываем гамбургер */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .footer__top {
        padding: 40px 0 25px;
    }
    
    .footer__main {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .footer__nav {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer__nav-column {
        gap: 15px;
    }
    
    .footer__company-name {
        font-size: 20px;
    }
    
    .footer__consultation {
        padding: 30px 0;
    }
    
    .footer__consultation-title {
        font-size: 24px;
    }
    
    .footer__consultation-text {
        font-size: 15px;
    }
    
    .hero {
        margin-top: 0;
        padding-top: 120px;
        padding-bottom: 30px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .about-content,
    .workflow-steps {
        padding: 25px 20px;
    }
    
    .workflow-step {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .step-title {
        font-size: 20px;
    }
    
    .step-description {
        font-size: 15px;
    }
    
    .form-container {
        padding: 25px;
    }
    
    .about-cards,
    .stages-grid,
    .goals-grid {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        padding: 12px 0;
        gap: 12px;
    }
    
    .logo-text {
        font-size: 16px;
    }
    
    .logo-img {
        height: 30px;
    }
    
    .mobile-menu-toggle {
        width: 40px;
        height: 40px;
        padding: 8px;
    }
    
    .mobile-menu.active {
        padding: 25px 0;
    }
    
    .mobile-nav {
        padding: 0 15px;
        margin-bottom: 20px;
    }
    
    .mobile-nav-link {
        font-size: 15px;
        padding: 16px 15px;
    }
    
    .mobile-buttons {
        padding: 0 15px;
        gap: 12px;
    }
    
    .mobile-buttons .btn {
        padding: 14px 20px;
        font-size: 14px;
    }
    
    .footer__top {
        padding: 30px 0 20px;
    }
    
    .footer__main {
        gap: 30px;
    }
    
    .footer__nav {
        gap: 25px;
    }
    
    .footer__nav-title {
        font-size: 15px;
    }
    
    .footer__nav-link {
        font-size: 13px;
    }
    
    .footer__company-name {
        font-size: 18px;
    }
    
    .footer__phone,
    .footer__email {
        font-size: 14px;
    }
    
    .footer__consultation {
        padding: 25px 0;
    }
    
    .footer__consultation-title {
        font-size: 20px;
    }
    
    .footer__consultation-text {
        font-size: 14px;
    }
    
    .footer__consultation-btn {
        padding: 14px 28px;
        font-size: 14px;
    }
    
    .hero {
        margin-top: 0;
        padding-top: 70px;
        padding-bottom: 25px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .hero-image-wrapper {
        max-height: 600px;
    }
    
    .hero-image {
        height: 600px;
        object-position: center top;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .section-subtitle {
        font-size: 14px;
    }
    
    .about-content,
    .workflow-steps,
    .form-container,
    .cta-box,
    .contacts-box {
        padding: 20px;
    }
    
    .contacts-messengers {
        flex-direction: column;
        gap: 12px;
    }
    
    .messenger-btn {
        padding: 12px 18px;
        font-size: 14px;
    }
    
    .step-title {
        font-size: 18px;
    }
    
    .step-description {
        font-size: 14px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-left,
.hero-right,
.about-card,
.stage-card,
.goal-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Selection */
::selection {
    background: var(--yellow);
    color: var(--dark-bg);
}
