/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #fff9f9;
    color: #1e1e1e;
    line-height: 1.5;
    overflow-x: hidden;
    position: relative;
}

/* Background blur decoration */
.bg-blur {
    position: absolute;
    top: 114px;
    left: 0;
    width: 100%;
    height: 712px;
    filter: blur(6px);
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.bg-blur img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Decorative Abstract Elements */
.abstract {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.abstract img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.abstract-1 {
	width: 500px;
	height: 500px;
	left: -300px;
	top: 1795px;
	transform: rotate(-12.45deg);
}

.abstract-2 {
	width: 500px;
	height: 500px;
	right: -250px;
	top: 1100px;
	transform: rotate(120.95deg);
	opacity: 0.5;
}

.abstract-3 {
	width: 500px;
	height: 500px;
	right: -320px;
	top: 2380px;
	transform: rotate(-162.45deg);
}

/* Page Wrapper - centers all content with side margins */
.page-wrapper {
    max-width: 1445px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding-top: 119px; /* Offset for fixed header */
}

/* Section Inner - padding inside sections */
.section-inner {
    padding: 0 50px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 8px 24px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 24px;
    cursor: pointer;
    border: none;
    transition: opacity 0.3s ease;
}

.btn:hover {
    opacity: 0.9;
}

.btn-primary {
    background-color: #fc922d;
    color: white;
    border-radius: 10px;
}

/* Header */
.header {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 14px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 124px;
    max-width: 1445px;
    margin: 0 auto;
}

.logo {
    height: 91px;
    width: auto;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo:hover {
    transform: scale(1.03);
    opacity: 0.9;
}

.nav {
    display: flex;
    gap: 50px;
}

.nav-link {
    font-size: 24px;
    color: #22354e;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #fc922d;
}

/* Burger Menu */
.burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
}

.burger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #363d47;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.nav-cta {
    display: none;
    position: relative;
    overflow: hidden;
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.nav-cta:hover::before {
    left: 100%;
}

/* Hero Section */
.hero {
    display: flex;
    height: 700px;
    background-color: white;
    overflow: hidden;
}

.hero-left {
    width: 522px;
    min-width: 522px;
    background-color: #363d47;
    padding: 75px 50px;
    position: relative;
}

.hero-title {
    font-family: 'Alumni Sans', sans-serif;
    font-weight: 600;
    font-size: 70px;
    line-height: 60px;
    color: white;
    margin-bottom: 100px;
}

.hero-quote {
    font-family: 'Caveat', cursive;
    font-size: 35px;
    line-height: 48px;
    color: #fff9f9;
    transform: rotate(-2.71deg);
    margin-bottom: 60px;
}

.hero-description {
    font-family: 'Roboto Mono', monospace;
    font-size: 18px;
    color: white;
    margin-bottom: 30px;
    max-width: 359px;
}

.hero-btn {
    border-radius: 0;
}

.hero-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Stats Section */
.stats {
    display: flex;
    background-color: white;
    padding: 70px 53px;
    gap: 50px;
}

.stats-cards {
    display: flex;
    gap: 30px;
}

.stat-card {
    width: 235px;
    height: 213px;
    background-color: rgba(54, 61, 71, 0.64);
    border: 2px solid rgba(54, 61, 71, 0.64);
    border-radius: 5px;
    box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.8);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transform: rotate(-3deg);
}

.stat-card:nth-child(2) {
    transform: rotate(3deg);
}

.stat-card:nth-child(3) {
    transform: rotate(-2deg);
}

.stat-number {
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 700;
    font-size: 75px;
    color: #fc922d;
    line-height: 1;
}

.stat-text {
    font-size: 20px;
    color: #fff9f9;
    margin-top: 10px;
}

.stat-text strong {
    font-weight: 600;
}

.stats-text {
    flex: 1;
    padding-left: 50px;
}

.stats-title {
    font-family: 'Caveat', cursive;
    font-weight: 700;
    font-size: 52px;
    line-height: 55px;
    color: black;
    margin-bottom: 20px;
}

.stats-description {
    font-family: 'Anonymous Pro', monospace;
    font-weight: 700;
    font-size: 20px;
    line-height: 25px;
    color: black;
}

/* Situations Section */
.situations {
    padding: 54px 0 100px;
    position: relative;
    background-color: transparent;
}

.section-title {
    font-family: 'Alumni Sans', sans-serif;
    font-weight: 600;
    font-size: 70px;
    line-height: 60px;
    color: #1e1e1e;
    margin-bottom: 20px;
}

.section-title.center {
    text-align: center;
}

.section-title.light {
    color: #fff9f9;
}

.section-subtitle {
    font-family: 'Anonymous Pro', monospace;
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
    color: black;
    margin-bottom: 60px;
    max-width: 1175px;
}

.section-subtitle.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle.light {
    color: #fff9f9;
}

.situations-grid {
    display: grid;
    grid-template-columns: repeat(3, 384px);
    gap: 30px;
    justify-content: center;
}

.situation-card {
    text-align: center;
}

.situation-card img {
    width: 384px;
    height: 334px;
    object-fit: cover;
    box-shadow: 0px 4px 10.3px rgba(0, 0, 0, 0.8);
    margin-bottom: 18px;
}

.situation-card p {
    font-size: 24px;
    line-height: 28px;
    color: black;
    max-width: 384px;
}

/* Who We Are Section */
.who-we-are {
    padding: 0;
    position: relative;
}

.who-header {
    background-color: #363d47;
    padding: 71px 107px 60px;
    margin-left: -200px;
    padding-left: 307px;
    width: calc(100% + 200px - 200px);
}

.who-title {
    font-family: 'Anonymous Pro', monospace;
    font-weight: 700;
    font-size: 60px;
    color: #fff9f9;
    margin-bottom: 20px;
}

.who-intro {
    font-family: 'Anonymous Pro', monospace;
    font-size: 24px;
    line-height: 30px;
    color: #fff9f9;
    max-width: 771px;
}

.who-content {
    display: flex;
    padding: 50px 107px;
    gap: 80px;
}

.who-text {
    flex: 1;
    font-size: 22px;
    line-height: 1.6;
}

.who-text p {
    margin-bottom: 20px;
}

.who-image {
    flex: 1;
    position: relative;
}

.who-image img {
    width: 660px;
    height: 440px;
    object-fit: cover;
    transform: rotate(2.26deg);
}

.who-quote {
    font-family: 'Caveat', cursive;
    font-size: 30px;
    color: black;
    transform: rotate(2.26deg);
    margin-top: 20px;
}

/* Cooperation Section */
.cooperation {
    background-color: white;
    padding: 26px 0 0;
    position: relative;
}

.cooperation .section-title {
    margin-bottom: 10px;
}

.cooperation .section-subtitle {
    font-family: 'Anonymous Pro', monospace;
    font-weight: 700;
    font-size: 32px;
    line-height: 35px;
    max-width: 1018px;
}

.steps-grid {
    margin-top: 50px;
}

.step-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.bottom-row {
    justify-content: center;
    padding-left: 0;
}

.step-card {
    width: 356px;
    height: 307px;
    background-color: #fff9f9;
    border: 2px solid rgba(54, 61, 71, 0.64);
    border-radius: 5px;
    box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.55);
    padding: 30px;
    position: relative;
    transform: rotate(-2deg);
}

.step-card:nth-child(3) {
    transform: rotate(3deg);
}

.step-card:nth-child(5) {
    transform: rotate(-5deg);
}

.step-number {
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 700;
    font-size: 300px;
    color: rgba(252, 146, 45, 0.15);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 1;
    z-index: 0;
}

.step-card h3 {
    font-weight: 700;
    font-size: 28px;
    color: #363d47;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.step-card p {
    font-size: 18px;
    line-height: 24px;
    color: #363d47;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-arrow svg {
    width: 57px;
    height: 30px;
}

.step-arrow-between {
    display: none;
}

.cooperation-cta {
    background-color: #363d47;
    padding: 40px 50px;
    width: 388px;
    min-width: 388px;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 20px;
    position: relative;
    align-self: flex-start;
    top: 30px;
}

.cooperation-cta::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100vw;
    height: 100%;
    background-color: #363d47;
    z-index: 1;
}

.cta-text {
    font-family: 'Caveat', cursive;
    font-size: 28px;
    line-height: 38px;
    color: white;
    margin-bottom: 20px;
    z-index: 2;
    width: 400px;
}

.cta-link {
    font-family: 'Caveat', cursive;
    font-weight: 700;
    font-size: 36px;
    line-height: 45px;
    color: #fff9f9;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    z-index: 2;
}

.cta-link:hover {
    opacity: 0.9;
}

.cta-arrow-inline {
    font-size: 48px;
    line-height: 1;
}

/* Principles Section */
.principles {
    background-color: white;
    padding: 100px 0;
}

.principles-content {
    display: flex;
    gap: 80px;
}

.principles-image {
    flex: 0 0 507px;
}

.principles-image img {
    width: 507px;
    height: 698px;
    object-fit: cover;
}

.principles-list {
    flex: 1;
}

.principles-list .section-title {
    margin-bottom: 40px;
}

.principle {
    margin-bottom: 20px;
}

.principle h3 {
    font-weight: 800;
    font-size: 24px;
    line-height: 60px;
    color: black;
}

.principle p {
    font-weight: 300;
    font-size: 20px;
    line-height: 25px;
    color: black;
}

/* Formats Section */
.formats {
    background-color: rgba(54, 61, 71, 0.95);
    padding: 73px 0 100px;
}

.formats .section-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 25px;
    margin-bottom: 80px;
}

.formats-grid {
    display: grid;
    grid-template-columns: repeat(3, 403px);
    gap: 30px;
    justify-content: center;
}

.format-card {
    background-color: rgba(255, 249, 249, 0.75);
    border: 2px solid rgba(54, 61, 71, 0.64);
    border-radius: 5px;
    box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.55);
    padding: 50px 20px;
    text-align: center;
    height: 610px;
    display: flex;
    flex-direction: column;
}

.format-card h3 {
    font-weight: 900;
    font-size: 30px;
    color: #363d47;
    margin-bottom: 20px;
}

.format-subtitle {
    font-family: 'Caveat', cursive;
    font-weight: 700;
    font-size: 24px;
    line-height: 24px;
    color: #1e1e1e;
    margin-bottom: 20px;
    min-height: 55px;
}

.format-description {
    font-size: 24px;
    color: #363d47;
    flex: 1;
    min-height: 175px;
}

.format-card .btn {
    margin-top: auto;
    border-radius: 0;
    align-self: center;
}

/* Contact Section */
.contact {
    background-color: white;
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form-wrapper {
    padding-right: 50px;
    border-right: 2px solid #000;
}

.contact-intro {
    font-size: 20px;
    color: black;
    margin-bottom: 40px;
    max-width: 697px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: black;
    margin-bottom: 5px;
}

.form-group input {
    height: 51px;
    border: 1px solid black;
    background-color: #fff9f9;
    padding: 0 15px;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    color: #363d47;
}

.form-group input::placeholder {
    color: #363d47;
}

.contact-form .btn {
    align-self: flex-start;
    border-radius: 0;
}

.contact-form .btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Textarea стили */
.form-group textarea {
    width: 100%;
    min-height: 120px;
    border: 1px solid black;
    background-color: #fff9f9;
    padding: 15px;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    color: #363d47;
    resize: vertical;
}

.form-group textarea::placeholder {
    color: #363d47;
}

.form-group textarea:focus {
    border-color: #fc922d;
    box-shadow: 0 0 0 3px rgba(252, 146, 45, 0.12);
    transform: translateY(-2px);
    outline: none;
}

/* Сообщения формы */
.form__message {
    display: none;
    padding: 12px 16px;
    margin-top: 16px;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.5;
}

.form__message.success {
    display: block;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form__message.error {
    display: block;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.contact-info {
    padding-left: 50px;
}

.section-title-small {
    font-family: 'Alumni Sans', sans-serif;
    font-weight: 600;
    font-size: 65px;
    line-height: 60px;
    color: #1e1e1e;
    margin-bottom: 20px;
}

.contact-info > p {
    font-size: 20px;
    color: black;
}

.contact-details {
    margin-top: 40px;
}

.contact-details h3,
.contact-schedule h3 {
    font-weight: 700;
    font-size: 24px;
    color: black;
    margin-bottom: 15px;
}

.contact-item {
    font-size: 20px;
    color: black;
    margin-bottom: 10px;
}

.contact-schedule {
    margin-top: 30px;
}

.contact-schedule p {
    font-size: 20px;
    color: black;
    line-height: 1.5;
}

/* Footer */
.footer {
    background-color: #fff9f9;
    padding: 40px 0;
    border-top: 2px solid #000;
}

.footer .section-inner {
    padding: 0 50px;
    width: 100%;
    max-width: 100%;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 50px;
    width: 100%;
    margin-bottom: 40px;
}

.footer-logo {
    justify-self: start;
}

.footer-nav {
    justify-self: center;
}

.footer-legal {
    justify-self: end;
}

.footer-logo img {
    height: 83px;
    width: auto;
}

.footer-nav h4,
.footer-legal h4 {
    font-weight: 600;
    font-size: 20px;
    color: black;
    margin-bottom: 15px;
}

.footer-nav ul li,
.footer-legal ul li {
    font-size: 16px;
    color: black;
    margin-bottom: 5px;
}

.footer-nav ul li a:hover,
.footer-legal ul li a:hover {
    color: #fc922d;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
}

.footer-bottom p {
    font-size: 20px;
    color: black;
    margin-bottom: 10px;
}

.footer-bottom .copyright {
    font-size: 24px;
}

/* Responsive */
@media (max-width: 1600px) {
    .header-inner {
        padding: 0 50px;
    }

    .section-inner {
        padding: 0 30px;
    }

    .who-header {
        margin-left: 0;
        padding-left: 107px;
        width: 100%;
    }
}

@media (max-width: 1400px) {
    .situations-grid {
        grid-template-columns: repeat(2, 384px);
    }

    .formats-grid {
        grid-template-columns: repeat(2, 403px);
    }

    .abstract {
        display: none;
    }

    .bg-blur {
        display: none;
    }
}

@media (max-width: 1200px) {
    .hero {
        flex-direction: column;
        height: auto;
    }

    .hero-left {
        width: 100%;
        min-width: auto;
    }

    .hero-right {
        height: 400px;
    }

    .stats {
        flex-direction: column;
    }

    .stats-cards {
        justify-content: center;
        flex-wrap: wrap;
    }

    .who-content {
        flex-direction: column;
        padding: 40px 30px;
        gap: 40px;
    }

    .who-header {
        margin-left: 0;
        width: 100%;
        padding: 50px 30px;
    }

    .who-image img {
        width: 100%;
        height: auto;
        max-width: 500px;
    }

    .step-row {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

    .step-arrow-between {
        display: flex;
        transform: rotate(90deg);
        margin: 15px 0;
    }

    .bottom-row {
        padding-left: 0;
    }

    .cooperation-cta {
        width: 100%;
        min-width: auto;
        height: auto;
        margin-left: 0;
        margin-top: 30px;
        text-align: center;
    }

    .cta-text {
        width: 100%;
        max-width: 400px;
        margin: 0 auto 20px;
    }

    .principles-content {
        flex-direction: column;
    }

    .principles-image {
        flex: none;
    }

    .principles-image img {
        width: 100%;
        height: auto;
        max-width: 400px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        border-right: none;
        padding-right: 0;
        padding-bottom: 50px;
        border-bottom: 2px solid #000;
    }

    .contact-info {
        padding-left: 0;
    }
}

@media (max-width: 900px) {
    .section-title {
        font-size: 50px;
        line-height: 50px;
    }

    .situations-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .situation-card img {
        width: 100%;
        height: auto;
        aspect-ratio: 384/334;
    }

    .situation-card p {
        max-width: 100%;
    }

    .formats-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }

    .format-card {
        height: auto;
        min-height: 400px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-logo,
    .footer-nav,
    .footer-legal {
        justify-self: center;
    }
}

@media (max-width: 768px) {
    /* Header & Burger Menu */
    .page-wrapper {
        padding-top: 80px;
    }

    .header {
        padding: 10px 0;
    }

    .header-inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0 20px;
    }

    .logo {
        height: 60px;
    }

    .burger {
        display: flex;
    }

    .header-cta {
        display: none;
    }

    .nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 100;
    }

    .nav.active {
        transform: translateX(0);
    }

    .nav-link {
        font-size: 28px;
    }

    .nav-cta {
        display: inline-block;
        margin-top: 20px;
    }

    /* Hero Section */
    .hero-left {
        padding: 40px 20px;
    }

    .hero-title {
        font-size: 42px;
        line-height: 44px;
        margin-bottom: 40px;
    }

    .hero-quote {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 30px;
    }

    .hero-description {
        font-size: 16px;
        max-width: 100%;
    }

    .hero-right {
        height: 300px;
    }

    /* Stats Section */
    .stats {
        padding: 40px 20px;
        gap: 30px;
    }

    .stats-cards {
        gap: 20px;
    }

    .stat-card {
        width: 160px;
        height: 150px;
        padding: 15px;
        transform: rotate(-2deg);
    }

    .stat-card:nth-child(2) {
        transform: rotate(2deg);
    }

    .stat-card:nth-child(3) {
        transform: rotate(-1deg);
    }

    .stat-card.visible:nth-child(1) {
        animation: levitateMobile1 4s ease-in-out infinite;
    }

    .stat-card.visible:nth-child(2) {
        animation: levitateMobile2 4.5s ease-in-out infinite;
    }

    .stat-card.visible:nth-child(3) {
        animation: levitateMobile3 5s ease-in-out infinite;
    }

    .stat-number {
        font-size: 42px;
    }

    .stat-text {
        font-size: 14px;
    }

    .stats-text {
        padding-left: 0;
        text-align: center;
    }

    .stats-title {
        font-size: 38px;
        line-height: 42px;
    }

    .stats-description {
        font-size: 16px;
    }

    /* Situations Section */
    .situations {
        padding: 40px 0 60px;
    }

    .section-subtitle {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 40px;
    }

    /* Who We Are */
    .who-header {
        padding: 40px 20px;
    }

    .who-title {
        font-size: 42px;
        margin-bottom: 15px;
    }

    .who-intro {
        font-size: 18px;
        line-height: 26px;
    }

    .who-content {
        padding: 30px 20px;
        gap: 30px;
    }

    .who-text {
        font-size: 18px;
    }

    .who-image img {
        transform: rotate(0deg);
        max-width: 100%;
    }

    .who-quote {
        font-size: 24px;
        transform: rotate(0deg);
    }

    /* Cooperation Section */
    .cooperation {
        padding: 40px 0 0;
    }

    .cooperation .section-subtitle {
        font-size: 22px;
        line-height: 28px;
    }

    .steps-grid {
        margin-top: 30px;
    }

    .step-row {
        gap: 15px;
        margin-bottom: 15px;
    }

    .step-card {
        width: 100%;
        max-width: 320px;
        height: auto;
        min-height: 220px;
        padding: 25px 20px;
        transform: rotate(0deg) !important;
    }

    .step-number {
        font-size: 180px;
    }

    .step-card h3 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .step-card p {
        font-size: 15px;
        line-height: 22px;
    }

    .step-arrow {
        padding: 5px 0;
    }

    .step-arrow svg {
        width: 40px;
        height: 20px;
    }

    .cooperation-cta {
        padding: 30px 20px;
        top: 0;
    }

    .cta-text {
        font-size: 22px;
        line-height: 30px;
    }

    .cta-link {
        font-size: 28px;
    }

    /* Principles Section */
    .principles {
        padding: 60px 0;
    }

    .principles-content {
        gap: 40px;
        align-items: center;
    }

    .principles-image img {
        max-width: 300px;
    }

    .principles-list .section-title {
        margin-bottom: 25px;
    }

    .principle h3 {
        font-size: 20px;
        line-height: 40px;
    }

    .principle p {
        font-size: 16px;
        line-height: 22px;
    }

    /* Formats Section */
    .formats {
        padding: 50px 0 60px;
    }

    .formats .section-subtitle {
        font-size: 18px;
        margin-bottom: 40px;
    }

    .format-card {
        padding: 35px 20px;
        min-height: 350px;
    }

    .format-card h3 {
        font-size: 24px;
    }

    .format-subtitle {
        font-size: 20px;
        min-height: auto;
        margin-bottom: 15px;
    }

    .format-description {
        font-size: 18px;
        min-height: auto;
        margin-bottom: 20px;
    }

    .format-card .btn {
        font-size: 18px;
        padding: 10px 20px;
    }

    /* Contact Section */
    .contact {
        padding: 60px 0;
    }

    .section-title-small {
        font-size: 42px;
        line-height: 46px;
    }

    .contact-intro {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .form-group label {
        font-size: 16px;
    }

    .form-group input {
        height: 45px;
        font-size: 16px;
    }

    .form-group textarea {
        min-height: 100px;
        font-size: 16px;
        padding: 12px;
    }

    .contact-form .btn {
        font-size: 18px;
        width: 100%;
    }

    .contact-details h3,
    .contact-schedule h3 {
        font-size: 20px;
    }

    .contact-item,
    .contact-schedule p,
    .contact-info > p {
        font-size: 16px;
    }

    /* Footer */
    .footer {
        padding: 30px 0;
    }

    .footer .section-inner {
        padding: 0 20px;
    }

    .footer-logo img {
        height: 60px;
    }

    .footer-nav h4,
    .footer-legal h4 {
        font-size: 18px;
    }

    .footer-nav ul li,
    .footer-legal ul li {
        font-size: 14px;
    }

    .footer-bottom p {
        font-size: 14px;
    }

    .footer-bottom .copyright {
        font-size: 16px;
    }

    /* Buttons */
    .btn {
        font-size: 18px;
        padding: 10px 20px;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .page-wrapper {
        padding-top: 70px;
    }

    .logo {
        height: 50px;
    }

    .section-inner {
        padding: 0 15px;
    }

    .section-title {
        font-size: 36px;
        line-height: 40px;
    }

    .hero-title {
        font-size: 34px;
        line-height: 38px;
        margin-bottom: 30px;
    }

    .hero-quote {
        font-size: 20px;
        line-height: 28px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-right {
        height: 220px;
    }

    .stat-card {
        width: 140px;
        height: 130px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-text {
        font-size: 12px;
    }

    .stats-title {
        font-size: 32px;
        line-height: 36px;
    }

    .section-subtitle {
        font-size: 16px;
        line-height: 22px;
    }

    .situation-card p {
        font-size: 18px;
        line-height: 24px;
    }

    .who-title {
        font-size: 34px;
    }

    .who-intro {
        font-size: 16px;
        line-height: 24px;
    }

    .who-text {
        font-size: 16px;
    }

    .who-quote {
        font-size: 20px;
    }

    .cooperation .section-subtitle {
        font-size: 18px;
        line-height: 24px;
    }

    .step-card {
        max-width: 100%;
        min-height: 200px;
        padding: 20px 15px;
    }

    .step-number {
        font-size: 140px;
    }

    .step-card h3 {
        font-size: 20px;
    }

    .step-card p {
        font-size: 14px;
        line-height: 20px;
    }

    .cta-text {
        font-size: 18px;
        line-height: 26px;
    }

    .cta-link {
        font-size: 24px;
    }

    .principle h3 {
        font-size: 18px;
        line-height: 36px;
    }

    .principle p {
        font-size: 15px;
    }

    .format-card {
        min-height: 320px;
        padding: 25px 15px;
    }

    .format-card h3 {
        font-size: 22px;
    }

    .format-subtitle {
        font-size: 18px;
    }

    .format-description {
        font-size: 16px;
    }

    .section-title-small {
        font-size: 34px;
        line-height: 38px;
    }

    .contact-form-wrapper {
        padding-bottom: 40px;
    }

    .contact-intro {
        font-size: 15px;
    }

    .form-group label {
        font-size: 15px;
    }

    .form-group input {
        height: 42px;
        font-size: 15px;
    }

    .form-group textarea {
        min-height: 90px;
        font-size: 15px;
    }

    .btn {
        font-size: 16px;
        padding: 10px 16px;
    }
}

/* Very small devices (iPhone SE, etc.) */
@media (max-width: 375px) {
    .hero-title {
        font-size: 30px;
        line-height: 34px;
    }

    .stat-card {
        width: 130px;
        height: 120px;
        padding: 10px;
    }

    .stat-number {
        font-size: 32px;
    }

    .stat-text {
        font-size: 11px;
    }

    .section-title {
        font-size: 32px;
        line-height: 36px;
    }

    .who-title {
        font-size: 30px;
    }

    .step-number {
        font-size: 120px;
    }

    .section-title-small {
        font-size: 30px;
    }
}

/* ==========================================
   ANIMATIONS SYSTEM
   ========================================== */

/* Keyframes */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes heroTitleReveal {
    from {
        opacity: 0;
        transform: translateY(40px);
        clip-path: inset(100% 0 0 0);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        clip-path: inset(0 0 0 0);
    }
}

@keyframes buttonPulseIn {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    70% {
        transform: scale(1.03);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(var(--rotation, 0deg));
    }
    50% {
        transform: translateY(-15px) rotate(calc(var(--rotation, 0deg) + 3deg));
    }
}

@keyframes numberGlow {
    0%, 100% { text-shadow: none; }
    50% { text-shadow: 0 0 15px rgba(252, 146, 45, 0.6); }
}

/* Levitation for stat cards */
@keyframes levitate1 {
    0%, 100% {
        transform: translateY(0) rotate(-3deg);
    }
    50% {
        transform: translateY(-8px) rotate(-2deg);
    }
}

@keyframes levitate2 {
    0%, 100% {
        transform: translateY(0) rotate(3deg);
    }
    50% {
        transform: translateY(-10px) rotate(4deg);
    }
}

@keyframes levitate3 {
    0%, 100% {
        transform: translateY(0) rotate(-2deg);
    }
    50% {
        transform: translateY(-6px) rotate(-1deg);
    }
}

/* Mobile levitation (smaller angles) */
@keyframes levitateMobile1 {
    0%, 100% {
        transform: translateY(0) rotate(-2deg);
    }
    50% {
        transform: translateY(-6px) rotate(-1deg);
    }
}

@keyframes levitateMobile2 {
    0%, 100% {
        transform: translateY(0) rotate(2deg);
    }
    50% {
        transform: translateY(-7px) rotate(3deg);
    }
}

@keyframes levitateMobile3 {
    0%, 100% {
        transform: translateY(0) rotate(-1deg);
    }
    50% {
        transform: translateY(-5px) rotate(0deg);
    }
}

/* ==========================================
   HEADER ANIMATIONS (On Load)
   ========================================== */
.header .logo {
    animation: fadeIn 0.5s ease 0.1s both;
}

.header .nav-link {
    animation: fadeInDown 0.4s ease both;
}

.header .nav-link:nth-child(1) { animation-delay: 0.2s; }
.header .nav-link:nth-child(2) { animation-delay: 0.3s; }
.header .nav-link:nth-child(3) { animation-delay: 0.4s; }

.header .header-cta {
    animation: scaleIn 0.4s ease 0.5s both, headerCtaPulse 2s ease-in-out 1s infinite;
    position: relative;
    overflow: hidden;
}

@keyframes headerCtaPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(252, 146, 45, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px 5px rgba(252, 146, 45, 0.3);
    }
}

.header .header-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.header .header-cta:hover::before {
    left: 100%;
}

/* ==========================================
   HERO SECTION ANIMATIONS (On Load)
   ========================================== */
.hero-title {
    animation: heroTitleReveal 0.7s ease-out 0.2s both;
}

.hero-quote {
    animation: fadeIn 0.6s ease 0.5s both;
}

.hero-description {
    animation: fadeInUp 0.5s ease 0.6s both;
}

.hero-btn {
    animation: buttonPulseIn 0.5s ease 0.8s both;
    position: relative;
    overflow: hidden;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.hero-btn:hover::before {
    left: 100%;
}

.hero-right {
    animation: fadeIn 1s ease 0.3s both;
}

/* ==========================================
   SCROLL ANIMATIONS - Base States
   ========================================== */

/* Stats Cards */
.stat-card {
    opacity: 0;
    transform: translateY(50px) rotate(0deg) scale(0.95);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.stat-card.visible {
    opacity: 1;
}

.stat-card.visible:nth-child(1) {
    transform: translateY(0) rotate(-3deg) scale(1);
    transition-delay: 0.1s;
    animation: levitate1 4s ease-in-out infinite;
    animation-delay: 0.7s;
}

.stat-card.visible:nth-child(2) {
    transform: translateY(0) rotate(3deg) scale(1);
    transition-delay: 0.2s;
    animation: levitate2 4.5s ease-in-out infinite;
    animation-delay: 0.9s;
}

.stat-card.visible:nth-child(3) {
    transform: translateY(0) rotate(-2deg) scale(1);
    transition-delay: 0.3s;
    animation: levitate3 5s ease-in-out infinite;
    animation-delay: 1.1s;
}

.stat-card:hover {
    box-shadow: 0px 8px 35px rgba(0, 0, 0, 0.85);
}

/* Stats Number Glow */
.stat-number.counted {
    animation: numberGlow 0.4s ease;
}

/* Stats Text */
.stats-title {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease 0.4s, transform 0.6s ease 0.4s;
}

.stats-title.visible {
    opacity: 1;
    transform: translateX(0);
}

.stats-description {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease 0.5s, transform 0.5s ease 0.5s;
}

.stats-description.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   SITUATIONS SECTION
   ========================================== */
.situations .section-title,
.situations .section-subtitle {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.situations .section-title.visible,
.situations .section-subtitle.visible {
    opacity: 1;
    transform: translateY(0);
}

.situations .section-subtitle {
    transition-delay: 0.1s;
}

.situation-card {
    opacity: 0;
    transform: translateY(35px) scale(0.97);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.situation-card.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.situations-grid .situation-card:nth-child(1) { transition-delay: 0.1s; }
.situations-grid .situation-card:nth-child(2) { transition-delay: 0.15s; }
.situations-grid .situation-card:nth-child(3) { transition-delay: 0.2s; }
.situations-grid .situation-card:nth-child(4) { transition-delay: 0.25s; }
.situations-grid .situation-card:nth-child(5) { transition-delay: 0.3s; }
.situations-grid .situation-card:nth-child(6) { transition-delay: 0.35s; }

/* Situation Card Hover */
.situation-card img {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.situation-card:hover img {
    transform: scale(1.03);
    box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.85);
}

.situation-card p {
    transition: color 0.3s ease;
}

.situation-card:hover p {
    color: #fc922d;
}

/* ==========================================
   WHO WE ARE SECTION
   ========================================== */
.who-header {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.who-header.visible {
    opacity: 1;
    transform: translateX(0);
}

.who-text {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.who-text.visible {
    opacity: 1;
    transform: translateY(0);
}

.who-image {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.7s ease 0.2s, transform 0.7s ease 0.2s;
}

.who-image.visible {
    opacity: 1;
    transform: translateX(0);
}

.who-image img {
    transition: transform 0.4s ease;
}

.who-image:hover img {
    transform: rotate(0deg) scale(1.02);
}

/* ==========================================
   COOPERATION SECTION
   ========================================== */
.cooperation .section-title,
.cooperation .section-subtitle {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.cooperation .section-title.visible,
.cooperation .section-subtitle.visible {
    opacity: 1;
    transform: translateY(0);
}

.cooperation .section-subtitle {
    transition-delay: 0.1s;
}

.step-card {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.step-card.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Preserve original rotations after animation on desktop */
@media (min-width: 769px) {
    .step-card.visible {
        transform: translateY(0) rotate(-2deg) scale(1);
    }

    .step-row .step-card:nth-child(3).visible {
        transform: translateY(0) rotate(3deg) scale(1);
    }

    .bottom-row .step-card:nth-child(3).visible {
        transform: translateY(0) rotate(-5deg) scale(1);
    }
}

/* Step Card Hover */
.step-card:hover {
    box-shadow: 0px 8px 35px rgba(0, 0, 0, 0.65);
}

/* Step Arrow Animation */
.step-arrow {
    opacity: 0;
    transition: opacity 0.4s ease;
}

.step-arrow.visible {
    opacity: 1;
}

/* Cooperation CTA */
.cooperation-cta {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.7s ease 0.3s, transform 0.7s ease 0.3s;
}

.cooperation-cta.visible {
    opacity: 1;
    transform: translateX(0);
}

.cta-link {
    transition: transform 0.3s ease;
}

.cta-link:hover {
    transform: translateX(8px);
}

.cta-arrow-inline {
    display: inline-block;
    transition: transform 0.3s ease;
}

.cta-link:hover .cta-arrow-inline {
    transform: translateX(5px);
}

/* ==========================================
   PRINCIPLES SECTION
   ========================================== */
.principles-image {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.principles-image.visible {
    opacity: 1;
    transform: translateY(0);
}

.principles-image img {
    transition: transform 0.4s ease;
}

.principles-image:hover img {
    transform: scale(1.02);
}

.principles-list .section-title {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.principles-list .section-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.principle {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.5s ease, transform 0.5s ease, background-color 0.3s ease;
    padding: 12px;
    margin: -12px;
    margin-bottom: 20px;
    border-radius: 6px;
}

.principle.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger delays */
.principles-list .principle:nth-child(2) { transition-delay: 0.1s; }
.principles-list .principle:nth-child(3) { transition-delay: 0.15s; }
.principles-list .principle:nth-child(4) { transition-delay: 0.2s; }
.principles-list .principle:nth-child(5) { transition-delay: 0.25s; }
.principles-list .principle:nth-child(6) { transition-delay: 0.3s; }

/* Principle Hover */
.principle:hover {
    background-color: rgba(252, 146, 45, 0.06);
}

.principle h3 {
    transition: color 0.3s ease;
}

.principle:hover h3 {
    color: #fc922d;
}

/* ==========================================
   FORMATS SECTION
   ========================================== */
.formats .section-title,
.formats .section-subtitle {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.formats .section-title.visible,
.formats .section-subtitle.visible {
    opacity: 1;
    transform: translateY(0);
}

.formats .section-subtitle {
    transition-delay: 0.1s;
}

.format-card {
    opacity: 0;
    transform: translateY(45px) scale(0.96);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.format-card.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Stagger */
.formats-grid .format-card:nth-child(1) { transition-delay: 0.1s; }
.formats-grid .format-card:nth-child(2) { transition-delay: 0.2s; }
.formats-grid .format-card:nth-child(3) { transition-delay: 0.3s; }

/* Format Card Hover */
.format-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0px 12px 45px rgba(0, 0, 0, 0.65);
}

/* Button Shine Effect */
.format-card .btn {
    position: relative;
    overflow: hidden;
}

.format-card .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.5s ease;
}

.format-card:hover .btn::before {
    left: 100%;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact-form-wrapper {
    opacity: 0;
    transform: translateX(-45px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.contact-form-wrapper.visible {
    opacity: 1;
    transform: translateX(0);
}

.contact-info {
    opacity: 0;
    transform: translateX(45px);
    transition: opacity 0.7s ease 0.15s, transform 0.7s ease 0.15s;
}

.contact-info.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Form Input Animations */
.form-group input,
.form-group textarea {
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}

.form-group input:focus {
    border-color: #fc922d;
    box-shadow: 0 0 0 3px rgba(252, 146, 45, 0.12);
    transform: translateY(-2px);
    outline: none;
}

.form-group label {
    transition: color 0.3s ease;
}

.form-group:focus-within label {
    color: #fc922d;
}

/* Submit Button */
.contact-form .btn {
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, opacity 0.3s ease;
}

.contact-form .btn:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 15px rgba(252, 146, 45, 0.35);
}

.contact-form .btn:active {
    transform: scale(0.98);
}

/* Contact Details Hover */
.contact-item {
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.contact-item:hover {
    color: #fc922d;
    padding-left: 8px;
}

/* ==========================================
   FOOTER ANIMATIONS
   ========================================== */
.footer-content {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.footer-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.footer-nav ul li a,
.footer-legal ul li a {
    display: inline-block;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-nav ul li a:hover,
.footer-legal ul li a:hover {
    transform: translateX(4px);
}

.footer-logo img {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-logo:hover img {
    transform: scale(1.03);
    opacity: 0.9;
}

/* ==========================================
   DECORATIVE ELEMENTS - FLOATING
   ========================================== */
.abstract-1 {
    --rotation: -12.45deg;
    animation: float 8s ease-in-out infinite;
}

.abstract-2 {
    --rotation: 120.95deg;
    animation: float 10s ease-in-out infinite 2s;
}

.abstract-3 {
    --rotation: -162.45deg;
    animation: float 12s ease-in-out infinite 4s;
}

/* ==========================================
   ACCESSIBILITY - Reduced Motion
   ========================================== */
/* ==========================================
   HERO ANIMATION OVERLAY
   ========================================== */
.hero-animation-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

/* Floating geometric shapes */
.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
    filter: blur(1px);
}

.shape-1 {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(252, 146, 45, 0.3), rgba(252, 146, 45, 0.1));
    top: 15%;
    left: 20%;
    animation: floatShape1 8s ease-in-out infinite;
}

.shape-2 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(54, 61, 71, 0.25), rgba(54, 61, 71, 0.1));
    top: 60%;
    left: 70%;
    animation: floatShape2 10s ease-in-out infinite;
}

.shape-3 {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(252, 146, 45, 0.25), rgba(255, 249, 249, 0.15));
    top: 30%;
    left: 60%;
    animation: floatShape3 7s ease-in-out infinite;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.shape-4 {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.15), transparent);
    top: 70%;
    left: 25%;
    animation: floatShape4 9s ease-in-out infinite;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}

.shape-5 {
    width: 40px;
    height: 40px;
    background: rgba(252, 146, 45, 0.35);
    top: 45%;
    left: 45%;
    animation: floatShape5 6s ease-in-out infinite;
}

/* Pulse rings */
.pulse-ring {
    position: absolute;
    border: 2px solid rgba(252, 146, 45, 0.2);
    border-radius: 50%;
    opacity: 0;
}

.pulse-ring-1 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulseExpand 4s ease-out infinite;
}

.pulse-ring-2 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulseExpand 4s ease-out infinite 2s;
}

/* Keyframes for floating shapes */
@keyframes floatShape1 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(30px, -20px) rotate(45deg) scale(1.1);
    }
    50% {
        transform: translate(15px, 25px) rotate(90deg) scale(0.95);
    }
    75% {
        transform: translate(-20px, 10px) rotate(135deg) scale(1.05);
    }
}

@keyframes floatShape2 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(-40px, 30px) rotate(60deg);
    }
    66% {
        transform: translate(20px, -25px) rotate(120deg);
    }
}

@keyframes floatShape3 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    50% {
        transform: translate(-30px, 40px) scale(1.2);
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    }
}

@keyframes floatShape4 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    50% {
        transform: translate(35px, -30px) rotate(180deg);
        border-radius: 40% 60% 70% 30% / 30% 60% 40% 70%;
    }
}

@keyframes floatShape5 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.4;
    }
    50% {
        transform: translate(50px, 30px) scale(1.5);
        opacity: 0.2;
    }
}

@keyframes pulseExpand {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0.6;
    }
    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}

/* Mobile adjustments for hero animation */
@media (max-width: 768px) {
    .floating-shape {
        opacity: 0.3;
    }

    .shape-1 {
        width: 80px;
        height: 80px;
    }

    .shape-2 {
        width: 50px;
        height: 50px;
    }

    .shape-3 {
        width: 40px;
        height: 40px;
    }

    .shape-4 {
        width: 60px;
        height: 60px;
    }

    .shape-5 {
        width: 25px;
        height: 25px;
    }

    .pulse-ring-1,
    .pulse-ring-2 {
        width: 120px;
        height: 120px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .stat-card,
    .situation-card,
    .step-card,
    .format-card,
    .principle,
    .who-header,
    .who-text,
    .who-image,
    .principles-image,
    .contact-form-wrapper,
    .contact-info,
    .footer-content,
    .stats-title,
    .stats-description,
    .cooperation-cta,
    .step-arrow,
    .situations .section-title,
    .situations .section-subtitle,
    .cooperation .section-title,
    .cooperation .section-subtitle,
    .formats .section-title,
    .formats .section-subtitle,
    .principles-list .section-title {
        opacity: 1 !important;
        transform: none !important;
    }

    .abstract {
        animation: none !important;
    }

    .stat-card.visible {
        animation: none !important;
    }

    .floating-shape,
    .pulse-ring {
        animation: none !important;
        opacity: 0 !important;
    }
}
