:root {
    --primary-color: #ff006e;
    --light-shade: #ffe6f2;
    --dark-shade: #b8004f;
    --text-color: #333333;
    --background-color: #ffffff;
    --border-color: var(--primary-color);
    --heading-font: 'Roboto', sans-serif;
    --body-font: 'PT Sans', sans-serif;
    --container-width: 1200px;
    --border-radius: 0;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: var(--body-font);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    color: var(--dark-shade);
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--dark-shade);
}

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

.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 80px 0;
}

.section__title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 15px;
}

.section__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.section__description {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: transparent;
    border: 2px solid var(--border-color);
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn--primary {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.btn--primary:hover {
    background-color: var(--dark-shade);
    border-color: var(--dark-shade);
    color: white;
}

.btn--secondary {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn--secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    position: relative;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-brand img {
    height: 50px;
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
}

.hamburger {
    width: 30px;
    height: 3px;
    background: var(--dark-shade);
    position: relative;
    transition: all 0.3s ease;
}

.hamburger:before,
.hamburger:after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background: var(--dark-shade);
    transition: all 0.3s ease;
}

.hamburger:before {
    top: -8px;
}

.hamburger:after {
    top: 8px;
}

@media screen and (max-width: 768px) {
    .nav-toggle-label {
        display: block;
        cursor: pointer;
        padding: 15px;
        z-index: 2;
    }

    .nav-wrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--background-color);
        transition: all 0.3s ease;
        padding-top: 80px;
    }

    .navbar-nav {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .nav-item {
        width: 100%;
        text-align: center;
        margin: 15px 0;
    }

    .nav-link {
        display: inline-block;
        padding: 10px 20px;
        font-size: 18px;
        color: var(--text-color);
    }

    .nav-toggle:checked ~ .nav-wrapper {
        left: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger {
        background: transparent;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger:before {
        transform: rotate(45deg);
        top: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger:after {
        transform: rotate(-45deg);
        top: 0;
    }
}

@media screen and (min-width: 769px) {
    .nav-wrapper {
        display: block;
    }

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

.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-item {
    list-style: none;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-size: 16px;
}

@media screen and (max-width: 768px) {
    .nav-wrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--background-color);
        transition: all 0.3s ease;
        padding-top: 80px;
        flex-direction: column;
        align-items: center;
    }

    .nav-toggle:checked ~ .nav-wrapper {
        left: 0;
    }

    .nav-item {
        margin: 15px 0;
    }
}

.main-header {
    background-color: var(--background-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.hero {
    background-color: var(--light-shade);
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-color: var(--primary-color);
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
    opacity: 0.1;
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

.hero__title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero__subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.crisis-radar,
.survival-matrix,
.transformation-map,
.revival-stories,
.resilience-tools,
.express-diagnosis {
    border-top: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    position: relative;
}

.crisis-radar:nth-child(odd),
.transformation-map:nth-child(odd),
.resilience-tools:nth-child(odd) {
    background-color: var(--light-shade);
}

.radar-graphic {
    position: relative;
    margin: 40px auto;
    max-width: 800px;
}

.radar-graphic img {
    width: 100%;
    border: 3px solid var(--primary-color);
}

.radar-points {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.radar-point {
    position: absolute;
    background-color: var(--primary-color);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.radar-point:hover {
    background-color: var(--dark-shade);
    transform: scale(1.05);
}

.radar-point[data-risk="financial"] {
    top: 20%;
    left: 15%;
}

.radar-point[data-risk="operational"] {
    top: 40%;
    right: 10%;
}

.radar-point[data-risk="market"] {
    bottom: 30%;
    left: 20%;
}

.radar-point[data-risk="leadership"] {
    top: 15%;
    right: 25%;
}

.radar-point[data-risk="innovation"] {
    bottom: 20%;
    right: 30%;
}

.matrix-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.matrix-cell {
    border: 3px solid var(--primary-color);
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.matrix-cell:hover {
    background-color: var(--light-shade);
    transform: scale(1.02);
}

.map-container {
    position: relative;
    margin: 40px auto;
    max-width: 900px;
}

.map-container img {
    width: 100%;
    border: 3px solid var(--primary-color);
}

.map-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    position: relative;
}

.map-steps::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 50px;
    right: 50px;
    height: 3px;
    background-color: var(--primary-color);
    z-index: 1;
}

.map-step {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 18%;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 15px;
}

.stories-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.story-card {
    border: 3px solid var(--primary-color);
    overflow: hidden;
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
}

.story-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.story-card h3,
.story-card p {
    padding: 0 20px;
}

.story-card h3 {
    margin-top: 20px;
}

.story-card .btn {
    margin: 20px;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.tool-item {
    border: 3px solid var(--primary-color);
    padding: 25px;
    transition: all 0.3s ease;
}

.tool-item:hover {
    background-color: var(--light-shade);
    transform: translateY(-5px);
}

.diagnosis-steps {
    max-width: 700px;
    margin: 40px auto;
    border: 3px solid var(--primary-color);
    padding: 30px;
}

.step-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.step {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    position: relative;
}

.step::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 100%;
    width: 100%;
    height: 2px;
    background-color: #eee;
    transform: translateY(-50%);
}

.step:first-child::before {
    display: none;
}

.step.active {
    background-color: var(--primary-color);
    color: white;
}

.step.active::before {
    background-color: var(--primary-color);
}

.question {
    display: none;
}

.question.active {
    display: block;
}

.answer-options {
    margin: 20px 0;
}

.answer-options label {
    display: block;
    margin: 10px 0;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.answer-options label:hover {
    background-color: var(--light-shade);
}

.diagnosis-next {
    margin-top: 20px;
}

.cta-section {
    background-color: var(--primary-color);
    color: white;
    padding: 80px 0;
}

.cta-wrapper {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-wrapper h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-wrapper p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-wrapper .btn--primary {
    background-color: white;
    color: var(--primary-color);
    border-color: white;
}

.cta-wrapper .btn--primary:hover {
    background-color: transparent;
    color: white;
}

.contact-section {
    background-color: var(--light-shade);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-top: 40px;
}

.contact-info {
    padding-right: 40px;
}

.info-item {
    margin-bottom: 30px;
}

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.contact-form {
    background-color: white;
    padding: 30px;
    border: 3px solid var(--primary-color);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 0;
    font-family: var(--body-font);
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.main-footer {
    background-color: #222;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-logo img {
    height: 50px;
    margin-bottom: 15px;
}

.footer-logo p {
    opacity: 0.8;
}

.footer-links h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: white;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    opacity: 0.6;
    font-size: 14px;
}

@media screen and (max-width: 992px) {
    .section__title {
        font-size: 2rem;
    }

    .hero__title {
        font-size: 2.8rem;
    }

    .map-steps {
        flex-direction: column;
        align-items: flex-start;
    }

    .map-steps::before {
        display: none;
    }

    .map-step {
        width: 100%;
        margin-bottom: 30px;
        display: flex;
        align-items: center;
        text-align: left;
    }

    .step-number {
        margin: 0 15px 0 0;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-info {
        padding-right: 0;
    }
}

@media screen and (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    .hero {
        padding: 80px 0;
    }

    .hero__title {
        font-size: 2.2rem;
    }

    .matrix-wrapper {
        grid-template-columns: 1fr;
    }

    .story-card img {
        height: 180px;
    }

    .tools-grid {
        gap: 15px;
    }

    .footer-content {
        gap: 30px;
    }
}

@media screen and (max-width: 576px) {
    .section__title {
        font-size: 1.8rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .hero {
        padding: 60px 0;
    }

    .hero__title {
        font-size: 1.8rem;
    }

    .hero__subtitle {
        font-size: 1rem;
    }

    .radar-point {
        padding: 5px 10px;
        font-size: 12px;
    }

    .diagnosis-steps {
        padding: 20px;
    }

    .step {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .cta-wrapper h2 {
        font-size: 1.8rem;
    }

    .cta-wrapper p {
        font-size: 1rem;
    }
}


/* Стили для страницы About */
.about-hero {
    background-color: var(--primary-color);
    color: white;
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.about-hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-color: white;
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
    opacity: 0.1;
    z-index: 1;
}

.about-hero .hero__title,
.about-hero .hero__subtitle {
    color: white;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 40px auto;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background-color: var(--primary-color);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    width: 100%;
}

.timeline-item:nth-child(odd) {
    padding-right: calc(50% + 30px);
    text-align: right;
}

.timeline-item:nth-child(even) {
    padding-left: calc(50% + 30px);
}

.timeline-date {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: bold;
}

.timeline-content {
    padding: 20px;
    border: 3px solid var(--primary-color);
    background-color: white;
}

.methodology-diagram {
    position: relative;
    margin: 40px auto;
    max-width: 900px;
}

.methodology-diagram img {
    width: 100%;
    border: 3px solid var(--primary-color);
    margin-bottom: 30px;
}

.methodology-elements {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.methodology-element {
    padding: 25px;
    border: 3px solid var(--primary-color);
    transition: all 0.3s ease;
}

.methodology-element:hover {
    background-color: var(--light-shade);
    transform: translateY(-5px);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.team-member {
    border: 3px solid var(--primary-color);
    padding: 30px;
    transition: all 0.3s ease;
}

.team-member:hover {
    background-color: var(--light-shade);
    transform: translateY(-5px);
}

.member-position {
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 15px;
}

.results-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.stat-item {
    text-align: center;
    padding: 30px;
    border: 3px solid var(--primary-color);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background-color: var(--light-shade);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.partners-map {
    position: relative;
    margin: 40px auto;
    max-width: 900px;
}

.partners-map img {
    width: 100%;
    border: 3px solid var(--primary-color);
    margin-bottom: 30px;
}

.partners-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.partner-category {
    padding: 25px;
    border: 3px solid var(--primary-color);
    transition: all 0.3s ease;
}

.partner-category:hover {
    background-color: var(--light-shade);
    transform: translateY(-5px);
}

.research-papers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.paper-item {
    padding: 25px;
    border: 3px solid var(--primary-color);
    transition: all 0.3s ease;
}

.paper-item:hover {
    background-color: var(--light-shade);
    transform: translateY(-5px);
}

.paper-authors {
    color: var(--primary-color);
    font-style: italic;
    margin-bottom: 15px;
}

/* Стили для страницы Thank You */
.thankyou-section {
    background-color: var(--light-shade);
    padding: 100px 0;
    text-align: center;
}

.thankyou-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
    background-color: white;
    border: 3px solid var(--primary-color);
}

.thankyou-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    color: white;
    font-size: 40px;
    border-radius: 50%;
    margin: 0 auto 30px;
}

.thankyou-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.thankyou-message {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.thankyou-reference {
    font-family: monospace;
    background-color: var(--light-shade);
    padding: 10px;
    margin-bottom: 30px;
    font-weight: bold;
}

.next-steps {
    padding: 80px 0;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 40px;
}

.next-step {
    flex-basis: 30%;
    text-align: center;
    padding: 30px;
    border: 3px solid var(--primary-color);
    transition: all 0.3s ease;
}

.next-step:hover {
    background-color: var(--light-shade);
    transform: translateY(-5px);
}

.next-step .step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.resources-section {
    background-color: var(--light-shade);
    padding: 80px 0;
}

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

.resource-item {
    background-color: white;
    padding: 30px;
    border: 3px solid var(--primary-color);
    transition: all 0.3s ease;
}

.resource-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.resource-item h3 {
    margin-bottom: 15px;
}

.resource-item .btn {
    margin-top: 20px;
}

@media screen and (max-width: 992px) {
    .timeline::before {
        left: 30px;
    }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        padding-left: 80px;
        padding-right: 0;
        text-align: left;
    }

    .timeline-date {
        left: 30px;
        transform: translateX(-50%);
    }

    .steps-container {
        flex-direction: column;
        gap: 30px;
    }

    .next-step {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .timeline-content,
    .methodology-element,
    .team-member,
    .stat-item,
    .partner-category,
    .paper-item {
        padding: 20px;
    }

    .methodology-elements,
    .partners-categories {
        grid-template-columns: 1fr;
    }

    .thankyou-title {
        font-size: 2rem;
    }

    .thankyou-content {
        padding: 30px 20px;
    }
}

@media screen and (max-width: 576px) {
    .timeline::before {
        left: 20px;
    }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        padding-left: 60px;
    }

    .timeline-date {
        left: 20px;
        padding: 5px 10px;
        font-size: 14px;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}