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

html {
    scroll-behavior: smooth;
}

section[id] {
    scroll-margin-top: 100px;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: #D9D9D9;
    min-height: 100vh;
    overflow-x: hidden;
}

h1, h2 {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
}

/* HEADER - MOBILE FIRST */
.header {
    display: flex;
    width: 100%;
    align-items: stretch;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.header-block {
    display: flex;
    align-items: center;
}

.header-block-orange {
    background-color: #e56400;
    flex: 0 0 50px;
}


.header-block-dark {
    background-color: #2B2C31;
    flex: 0 0 80px;
    padding: 0.5rem 0.75rem;
    justify-content: center;
}


.header-block-teal {
    background-color: #07636F;
    flex: 1;
    padding: 0.5rem 0.75rem;
    justify-content: space-between;
    align-items: center;
}


.logo-link {
    display: inline-block;
    text-decoration: none;
    line-height: 0;
}

.logo {
    height: 32px;
    width: auto;
    display: block;
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 100;
}


.mobile-menu-toggle span {
    width: 24px;
    height: 3px;
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s;
}

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

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

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

/* Mobile menu overlay moved to mobile overrides at end */


.header-tagline {
    color: white;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.header-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}


.nav-link {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    white-space: nowrap;
}


.nav-link:hover {
    opacity: 0.8;
}

.nav-link-active {
    color: #e56400;
}

.dropdown-icon {
    color: #e56400;
    font-size: 0.7rem;
}

/* HERO SECTION - MOBILE FIRST */
.hero-section {
    background-color: #D9D9D9;
    padding: 2rem 0;
    margin-top: 80px;
}

.hero-section .container {
    max-width: 100%;
    margin: 0;
    padding: 0;
    width: 100%;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-left: 14%;
    padding-right: 14%;
}

.hero-text-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    height: 100%;
    max-width: 500px;
    justify-content: center;
}

.hero-slides-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    flex: 1 1 auto;
    display: flex;
}

.hero-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    width: 100%;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    min-height: 100%;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.hero-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    font-weight: 700;
}

.hero-nav-link {
    color: #6A6A6A;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.1;
    padding: 0;
    background-color: transparent;
    border-radius: 0;
    transition: color 0.2s ease;
    display: inline-block;
    text-align: center;
    position: relative;
}

.hero-nav-link::after {
    content: "";
    display: block;
    margin-top: 0.2rem;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    height: 2px;
    background-color: #6A6A6A;
    opacity: 0.8;
}

.hero-nav-link:hover {
    color: #4F4F4F;
}

.hero-nav-link.active {
    color: #e56400;
}

.hero-nav-link.active::after {
    background-color: #e56400;
    opacity: 1;
}

.hero-heading {
    font-size: 1.5rem;
    line-height: 1.2;
    display: block;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@media (min-width: 768px) {
    .hero-heading {
        font-size: 1.875rem;
    }
}

.heading-teal {
    color: #00798C;
}

.heading-orange {
    color: #e56400;
}

.hero-text {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
    margin-bottom: 0;
}

.hero-visual {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

/* Overlay play button centered over the video */
.video-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.0); /* transparent background so only button is visible */
    z-index: 2; /* ensure overlay is above the video */
}

/* button is clickable */

/* Circular icon-only play button */
.play-button {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    cursor: pointer;
    transition: transform 0.15s ease, background 0.15s ease;
    pointer-events: auto;
}

.play-button:hover {
    transform: scale(1.05);
    background: rgba(0, 0, 0, 0.6);
}

.play-button:active {
    transform: scale(0.98);
}

.hero-screen {
    background-color: #2B2C31;
    border: 3px solid white;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.screen-top-bar {
    background-color: #1a1a1f;
    height: 40px;
    display: flex;
    align-items: center;
    padding: 0 1rem;
}

.screen-top-bar::before {
    content: '';
    width: 12px;
    height: 12px;
    background-color: #e56400;
    border-radius: 50%;
}

.screen-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 250px;
}

.screen-item {
    color: white;
    font-size: 0.875rem;
}

.screen-item-large {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    height: 120px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.screen-items {
    display: flex;
    gap: 0.5rem;
}

.screen-item-small {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    height: 60px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* STUDENT FIGURE */
.student-figure {
    position: absolute;
    bottom: -60px;
    right: -40px;
    width: 150px;
    height: 180px;
    z-index: 2;
}

.books-stack {
    position: absolute;
    bottom: 0;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.book {
    width: 45px;
    height: 12px;
    background: linear-gradient(to right, #2B2C31, #1a1a1f);
    border-radius: 2px;
}

.book:nth-child(1) {
    border-top: 2px solid #e56400;
}

.book:nth-child(2) {
    border-top: 2px solid #e56400;
}

.book:nth-child(3) {
    border-top: 2px solid #e56400;
}

.student {
    position: absolute;
    bottom: 36px;
    left: 5px;
    width: 50px;
    height: 70px;
    background-color: #4CAF50;
    border-radius: 6px;
}

.student::before {
    content: '';
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 35px;
    background-color: #FFE0B2;
    border-radius: 50%;
    border: 2px solid #2B2C31;
}

.student::after {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 25px;
    height: 12px;
    background-color: #e56400;
    border-radius: 15px 15px 0 0;
}

.laptop {
    position: absolute;
    bottom: 36px;
    left: 50px;
    width: 35px;
    height: 22px;
    background-color: #C0C0C0;
    border-radius: 3px;
    border: 2px solid #2B2C31;
}

.laptop::before {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background-color: #929292;
}

.backpack {
    position: absolute;
    bottom: 36px;
    right: 0;
    width: 30px;
    height: 45px;
    background-color: #2B2C31;
    border-radius: 3px;
}

/* CreaXP Dává Section */
.creaxp-gives-section {
    background-color: #2B2C31;
    color: white;
    display: flex;
    align-items: stretch;
}

.creaxp-gives-block-orange {
    background-color: #e56400;
    width: 50px;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .creaxp-gives-block-orange {
        width: 12%;
        min-width: 60px;
    }
}

.creaxp-gives-section .container {
    flex: 1;
    display: flex;
    align-items: stretch;
    padding: 3rem 1rem;
}

@media (min-width: 768px) {
    .creaxp-gives-section .container {
        padding: 3rem 1.5rem;
    }
}

.creaxp-gives-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.creaxp-gives-heading {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .creaxp-gives-heading {
        font-size: 1.875rem;
    }
}

.creaxp-gives-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.creaxp-gives-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-secondary-white {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary-white:hover {
    background-color: white;
    color: #2B2C31;
}

.creaxp-gives-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-phone {
    width: 180px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-phone-img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 11px;
    transition: all 0.3s;
    text-align: center;
    border: none;
    font-weight: 700;
}

.btn-primary {
    background-color: transparent;
    color: #e56400;
    border: 2px solid #e56400;
}

.btn-primary:hover {
    background-color: #e56400;
    color: white;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #07636F;
    border: 2px solid #07636F;
}

.btn-secondary:hover {
    background-color: #07636F;
    color: white;
}

/* Force white-outline variant to win over base .btn border reset */
.btn.btn-secondary-white {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn.btn-secondary-white:hover {
    background-color: #ffffff;
    color: #2B2C31;
}

/* Outline variants for hero buttons */
.btn-outline-orange {
    background-color: transparent;
    color: #e56400;
    border: 2px solid #e56400;
}

.btn-outline-orange:hover {
    background-color: #e56400;
    color: white;
    transform: translateY(-2px);
}

.btn-outline-teal {
    background-color: transparent;
    color: #07636F;
    border: 2px solid #07636F;
}

.btn-outline-teal:hover {
    background-color: #07636F;
    color: white;
    transform: translateY(-2px);
}

/* Make hero buttons rounded and a bit larger */
.hero-buttons .btn {
    border-radius: 11px;
    padding: 0.875rem 2rem;
}

/* TABLET */
@media (min-width: 768px) {
    .header-block-dark {
        padding: 0.75rem 1.5rem;
    }

    .header-block-teal {
        padding: 0.75rem 1.5rem;
    }

    .logo {
        height: 20px;
    }

    .header-right {
        position: static;
        width: 100%;
        max-width: none;
        height: auto;
        background-color: transparent;
        padding: 0;
        display: flex;
    }

    .header-tagline {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
        margin-right: 1rem;
    }

    .header-nav {
        flex-direction: row;
        gap: 1.5rem;
    }

    .nav-link {
        justify-content: flex-start;
        gap: 0.3rem;
        padding: 0;
    }

    .hero-section {
        padding: 3rem 0;
    }

    .hero-heading {
        font-size: 1.875rem;
    }

    .hero-text {
        font-size: 1.125rem;
    }

    .hero-buttons {
        flex-direction: row;
    }

    .hero-nav {
        gap: 1rem;
    }

    .screen-content {
        min-height: 300px;
        padding: 2rem;
    }
}

/* DESKTOP */
@media (min-width: 1024px) {
    .header-block-orange {
        flex: 0 0 12%;
    }

    .header-block-dark {
        flex: 0 0 18%;
        padding: 1rem 2rem;
    }

    .header-block-teal {
        padding: 1rem 2rem;
    }

    .logo {
        height: 26px;
    }

    .header-right {
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
        padding-right: 12%;
    }

    .hero-section {
        padding: 2rem 0;
        height: 600px;
        overflow: hidden;
        box-sizing: border-box;
        display: flex;
        align-items: center;
    }

    .hero-section .container {
        max-width: none;
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
    }

    .hero-content {
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        gap: 4rem;
        align-items: start;
        width: 100%;
        padding-left: 12%;
        padding-right: 12%;
        height: 100%;
    }

/* Base hero image style */
.hero-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.hero-visual picture,
.hero-visual img {
    position: relative;
    z-index: 1;
}

    .hero-text-content {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        height: 100%;
        justify-content: center;
    }

    .hero-heading {
        font-size: 3rem;
    }

    .hero-text {
        font-size: 1.25rem;
    }

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

    .screen-content {
        min-height: 400px;
        padding: 2.5rem;
    }

    .student {
        width: 60px;
        height: 85px;
    }

    .student::before {
        width: 40px;
        height: 40px;
    }

    .laptop {
        width: 40px;
        height: 26px;
    }

    .laptop::before {
        width: 35px;
        height: 3px;
    }

    .backpack {
        width: 35px;
        height: 55px;
    }

    .header-nav {
        gap: 2rem;
        flex-wrap: nowrap;
    }

    .nav-link {
        font-size: 0.95rem;
        padding: 0;
    }
}

/* LARGE DESKTOP */
@media (min-width: 1440px) {
    .main-content {
        padding: 4rem;
    }

    .main-heading {
        font-size: 3.5rem;
    }

    .main-text {
        font-size: 1.3rem;
    }
}

/* COMMON SECTIONS */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.container-investor {
    margin: 0 auto;
    padding: 0 1rem;
    max-width: 1200px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero-image {
        max-height: 500px;
    }
}

.section-heading {
    font-size: 2rem;
    color: #07636F;
    text-align: center;
    margin-bottom: 2rem;
}

/* FEATURES SECTION */
.features-section {
    background-color: #D9D9D9;
    padding: 2rem 0;
}

@media (min-width: 768px) {
    .features-section {
        padding: 3rem 0;
    }
}

.features-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.features-header-visual {
    width: 240px;
}

.features-icon-large {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.features-heading {
    font-size: 1.75rem;
    color: #333333;
    margin-bottom: 0.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@media (min-width: 768px) {
    .features-heading {
        font-size: 40px;
    }
}

.features-subtitle {
    font-size: 1.125rem;
    color: #666;
}

.features-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-box {
    background-color: #D9D9D9;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(43, 44, 49, 0.2);
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.feature-box:last-child {
    border-bottom: none;
}

.feature-image {
    width: 74px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.feature-title {
    font-size: 1.25rem;
    color: #2B2C31;
    margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
    .feature-title {
        font-size: 1.5rem;
    }
}

.feature-text {
    color: #2B2C31;
    line-height: 1.6;
}

/* PLATFORM FEATURES SECTION */
.platform-features-section {
    background-color: #2B2C31;
    color: white;
    display: flex;
    align-items: stretch;
}

.platform-features-block-orange {
    background-color: #e56400;
    width: 50px;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .platform-features-block-orange {
        width: 12%;
        min-width: 60px;
    }
}

.platform-features-section .container {
    flex: 1;
    display: flex;
    align-items: stretch;
    padding: 3rem 1rem;
}

@media (min-width: 768px) {
    .platform-features-section .container {
        padding: 3rem 1.5rem;
    }
}

.platform-features-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.platform-features-header {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.platform-features-header-col {
    flex: 1;
}

.platform-features-heading {
    font-size: 1.75rem;
    color: white;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@media (min-width: 768px) {
    .platform-features-heading {
        font-size: 2.5rem;
    }
}

.platform-features-intro {
    font-size: 1.125rem;
    color: #e56400;
    line-height: 1.6;
    font-weight: bold;
}

.platform-features-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.platform-feature-box {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    flex: 1;
    align-items: stretch;
}

.platform-feature-icon {
    flex-shrink: 0;
}

.platform-feature-icon-img {
    width: 74px;
    height: 74px;
    object-fit: contain;
}

.platform-feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: space-between;
}

.platform-feature-content .btn {
    width: 70%;
}

.icon-frame {
    width: 120px;
    height: 120px;
    border: 2px dashed white;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.05);
}

.platform-feature-title {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .platform-feature-title {
        font-size: 1.5rem;
    }
}

.platform-feature-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* ABOUT PROJECT SECTION */
.about-project-section {
    padding: 3rem 0;
}

@media (min-width: 768px) {
    .about-project-section {
        padding: 4rem 0;
    }
}

.about-project-main-heading {
    font-size: 1.75rem;
    color: #2B2C31;
    line-height: 1.3;
    text-align: center;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .about-project-main-heading {
        font-size: 2.5rem;
        margin-bottom: 4rem;
    }
}

.about-project-main-heading .heading-orange {
    color: #e56400;
}

/* FAQ (About project) */
.faq {
    max-width: 640px;
    margin: 0 auto;
}

.faq-item {
    border-top: 2px solid rgba(0, 0, 0, 0.2);
}

.faq-item:last-child {
    border-bottom: 2px solid rgba(0, 0, 0, 0.2);
}

.faq-toggle {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.faq-title {
    color: #07636F;
    font-size: 20px;
    font-weight: bold;
}

.faq-caret {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 14px solid #e56400;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-caret {
    transform: rotate(180deg);
}

.faq-content {
    display: none;
    color: #333;
    line-height: 1.6;
    padding: 0 0 1rem 0;
}

.faq-item.open .faq-content {
    display: block;
}

.about-project-columns {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.about-project-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.about-project-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-project-title {
    font-size: 1.25rem;
    color: #07636F;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .about-project-title {
        font-size: 1.5rem;
    }
}

.about-project-text {
    font-size: 1rem;
    color: #2B2C31;
    line-height: 1.6;
}

/* BENEFITS SECTION */
.benefits-section {
    background-color: #D9D9D9;
    padding: 3rem 0;
}

@media (min-width: 768px) {
    .benefits-section {
        padding: 4rem 0;
    }
}

.benefit-card {
    display: flex;
    flex-direction: column;
    margin-bottom: 4rem;
}

.benefit-card:last-child {
    margin-bottom: 0;
}

.benefit-image {
    width: 100%;
    margin-bottom: 2rem;
}

.benefit-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

.image-placeholder {
    width: 100%;
    height: 300px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.firm-bg {
    background: linear-gradient(135deg, rgba(7, 99, 111, 0.1) 0%, rgba(220, 121, 16, 0.1) 100%);
}

.student-bg {
    background: linear-gradient(135deg, rgba(220, 121, 16, 0.1) 0%, rgba(7, 99, 111, 0.1) 100%);
}

.school-bg {
    background: linear-gradient(135deg, rgba(7, 99, 111, 0.15) 0%, rgba(220, 121, 16, 0.15) 100%);
}

.geometric-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 8px;
}

.shape-teal {
    width: 80px;
    height: 80px;
    background-color: #07636F;
    top: 20px;
    left: 20px;
    opacity: 0.8;
    transform: rotate(20deg);
}

.shape-yellow {
    width: 60px;
    height: 60px;
    background-color: #FFD700;
    bottom: 30px;
    right: 30px;
    opacity: 0.7;
    transform: rotate(-30deg);
}

.shape-dark {
    width: 100px;
    height: 100px;
    background-color: #2B2C31;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    opacity: 0.3;
}

.benefit-content {
    padding: 0;
}

@media (min-width: 768px) {
    .benefit-content {
        padding: 0 1rem;
    }
}

.benefit-headline {
    font-size: 1.5rem;
    color: #2B2C31;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@media (min-width: 768px) {
    .benefit-headline {
        font-size: 1.75rem;
    }
}

.benefit-subheadline {
    font-size: 1.125rem;
    color: #07636F;
    margin-bottom: 1rem;
    font-weight: bold;
}

.benefit-text {
    font-size: 1rem;
    color: #2B2C31;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.benefit-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 60%;
}


/* FOOTER */
.footer {
    background-color: #2B2C31;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col {
    flex: 1;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-text {
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-title {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #e56400;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.social-link:hover {
    color: #e56400;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

/* RESPONSIVE SECTIONS */
@media (min-width: 768px) {
    .section-heading {
        font-size: 2.5rem;
    }

    .student-figure {
        bottom: -80px;
        right: -60px;
        width: 180px;
        height: 220px;
    }

    .creaxp-gives-content {
        flex-direction: row;
        align-items: center;
        gap: 4rem;
    }

    .creaxp-gives-text {
        flex: 1;
    }

    .creaxp-gives-heading {
        font-size: 1.875rem;
    }

    .creaxp-gives-buttons {
        flex-direction: row;
    }

    .features-header {
        flex-direction: row;
        align-items: center;
        text-align: left;
    }

    .features-header-visual {
        width: 500px;
    }

    .features-heading {
        font-size: 40px;
    }

    .features-grid {
        gap: 3rem;
    }

    .feature-box {
        padding: 3rem 0;
    }

    .benefit-card {
        flex-direction: row;
        gap: 3rem;
        align-items: center;
    }

    .benefit-card:nth-child(2n) {
        flex-direction: row-reverse;
    }

    .benefit-image {
        flex: 1;
        margin-bottom: 0;
    }

    .image-placeholder {
        height: 400px;
    }

    .benefit-content {
        flex: 1;
        padding: 0;
    }

    .benefit-headline {
        font-size: 2rem;
    }

    .benefit-buttons {
        flex-direction: row;
    }

    .footer-content {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .footer-col {
        min-width: 200px;
    }

    .social-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    .platform-features-header {
        flex-direction: row;
        gap: 3rem;
        align-items: flex-start;
    }

    .platform-features-grid {
        flex-direction: row;
        gap: 2rem;
    }

    .platform-features-heading {
        font-size: 3rem;
    }

    .platform-features-intro {
        font-size: 1.25rem;
    }

    .about-project-columns {
        flex-direction: row;
        gap: 4rem;
    }

    .about-project-main-heading {
        font-size: 3.5rem;
    }

}

@media (min-width: 1024px) {
    .hero-section {
        padding: 4rem 0 6rem;
    }

    .hero-visual {
        max-width: none;
        width: 100%;
        display: flex;
        align-items: center;
    }
    
    .hero-image {
        width: 100%;
        height: 100%;
        max-height: 500px;
        object-fit: contain;
    }

    .student-figure {
        bottom: -100px;
        right: -80px;
        width: 200px;
        height: 250px;
    }

    .creaxp-gives-heading {
        font-size: 2.75rem;
    }

    .mobile-phone {
        width: 450px;
        height: 420px;
    }

    .features-section {
        padding: 5rem 0;
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 4rem;
        align-items: start;
    }

    .feature-box {
        border-bottom: none;
        padding: 0;
    }

    .benefits-section {
        padding: 6rem 0;
    }

    .benefit-headline {
        font-size: 2.5rem;
    }

    .benefit-subheadline {
        font-size: 1.25rem;
    }

    .image-placeholder {
        height: 450px;
    }

}

/* CTA CONTACT SECTION */
.cta-contact-section {
    background-color: #2B2C31;
    color: white;
    display: flex;
    align-items: stretch;
    min-height: 400px;
}

.cta-contact-block-orange {
    background-color: #e56400;
    width: 50px;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .cta-contact-block-orange {
        width: 12%;
        min-width: 120px;
    }
}

.cta-contact-section .container {
    flex: 1;
    display: flex;
    align-items: stretch;
    padding: 3rem 1rem;
}

@media (min-width: 768px) {
    .cta-contact-section .container {
        padding: 3rem 1.5rem;
    }
}

.cta-contact-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 768px) {
    .cta-contact-content {
        flex-direction: row;
        gap: 4rem;
    }
}

.cta-contact-left {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    width: 45%;
}

.cta-contact-questions {
    display: flex;
    flex-direction: column;
}

.cta-contact-question {
    font-size: 1.5rem;
    color: white;
    margin: 0;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .cta-contact-question {
        font-size: 2.5rem;
    }
}

.cta-contact-social {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cta-contact-social-text {
    color: white;
    font-size: 1rem;
    margin: 0;
}

.cta-contact-social-icons {
    display: flex;
    gap: 1rem;
}

.cta-social-icon {
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.cta-social-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.cta-social-icon:hover {
    opacity: 0.7;
}

.cta-contact-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.cta-contact-text-block {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 60%;
}

.cta-contact-text-orange {
    color: #e56400;
    font-size: 1.125rem;
    margin: 0;
    line-height: 1.5;
    font-weight: bold;
}

@media (min-width: 768px) {
    .cta-contact-text-orange {
        font-size: 1.25rem;
    }
}

.cta-contact-text-white {
    color: white;
    font-size: 1.125rem;
    margin: 0;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .cta-contact-text-white {
        font-size: 1.25rem;
    }
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 60%;
}

.newsletter-input {
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 11px;
    border: 2px solid #e56400;
    background-color: #34363a;
    color: white;
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Manrope', sans-serif;
    outline: none;
}

.newsletter-input::placeholder {
    color: #f0f0f0;
    opacity: 1;
}

.newsletter-input:focus {
    border-color: #e56400;
}

.newsletter-button {
    align-self: flex-start;
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Manrope', sans-serif;
    padding: 1rem 2.5rem;
    border-radius: 11px;
    background-color: #e56400;
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.newsletter-button:hover {
    background-color: #e56400;
    transform: translateY(-2px);
}

.cta-contact-consent {
    color: white;
    font-size: 0.875rem;
    margin: 0;
    opacity: 0.8;
}

.newsletter-message {
    padding: 0.75rem 1rem;
    border-radius: 11px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-top: 0.5rem;
}

.newsletter-message.success {
    background-color: #4caf50;
    color: white;
}

.newsletter-message.error {
    background-color: #f44336;
    color: white;
}

.newsletter-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* ========================= */
/* Mobile overrides (<=767px) */
/* ========================= */
@media (max-width: 767px) {
    /* Hero image celá na mobilu, menší šířka, centrovaná */
    .hero-visual {
        overflow: visible;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hero-image {
        max-width: 78%;
        width: auto;
        height: auto;
        object-fit: contain;
        display: block;
        margin: 0 auto;
    }

    .hero-content {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    /* CreaXP gives - obrázek na začátku na mobilu */
    .creaxp-gives-visual {
        order: -1;
    }

    .creaxp-gives-text {
        order: 1;
    }

    /* Fix pro slider - zabránit posouvání obsahu */
    .hero-slides-wrapper {
        position: relative;
        min-height: 280px;
        height: 280px;
    }

    .hero-slides {
        position: relative;
        width: 100%;
        height: 100%;
        min-height: 280px;
    }

    .hero-slide {
        position: absolute !important;
        top: 0;
        left: 0;
        width: 100%;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.5s ease, visibility 0.5s ease;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .hero-slide.active {
        position: absolute !important;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .hero-text-content {
        height: auto;
        min-height: 0;
    }
    
    .cta-contact-left {
        width: 100%;
    }

    /* Hamburger menu doprava na mobilu */
    .header-block-teal {
        justify-content: flex-end;
    }

    /* Mobile menu overlay */
    .header-right {
        display: flex;
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: #07636F;
        padding: 3rem 1.5rem 2rem;
        transition: right 0.3s ease;
        z-index: 99;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .header-right.active {
        right: 0;
    }

    /* Hero nav - pouze čárky na mobilu, bez textu */
    .hero-nav {
        gap: 0.75rem;
    }

    .hero-nav-link {
        font-size: 0;
        line-height: 0;
        width: 30px;
        height: 4px;
        padding: 0;
    }

    .hero-nav-link::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 30px;
        height: 4px;
        margin: 0;
        background-color: #6A6A6A;
        opacity: 0.5;
        border-radius: 2px;
    }

    .hero-nav-link.active::after {
        background-color: #e56400;
        opacity: 1;
    }

    /* Tlačítka vedle sebe na mobilu */
    .hero-buttons {
        flex-direction: row !important;
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .hero-buttons .btn {
        flex: 1 1 auto;
        min-width: 0;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .creaxp-gives-buttons {
        flex-direction: row !important;
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .creaxp-gives-buttons .btn {
        flex: 1 1 auto;
        min-width: 0;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .benefit-buttons {
        flex-direction: row !important;
        flex-wrap: wrap;
        gap: 0.75rem;
        width: 70%;
    }

    .benefit-buttons .btn {
        flex: 1 1 auto;
        min-width: 0;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .platform-feature-content .btn {
        width: 80%;
    }

    .cta-contact-text-block {
        width: 100%;
    }

    .newsletter-form {
        width: 100%;
    }

    .support-visuals {
        flex-direction: row !important;
        gap: 1rem;
        align-items: center;
        flex-wrap: nowrap;
    }

    .support-qr {
        max-width: 100px !important;
        width: auto !important;
        height: auto;
        flex-shrink: 0;
        display: inline-block !important;
    }

    .support-card {
        max-width: 100px !important;
        width: auto !important;
        height: auto;
        flex-shrink: 0;
        display: inline-block !important;
    }

    /* Team - zmenšit fotky a centrovat na mobilu */
    .team-member-image {
        width: 120px;
        height: 120px;
    }

    .team-member {
        align-items: center !important;
        text-align: center !important;
    }

    .team-members {
        justify-items: center;
        place-items: center;
    }

    .team-content {
        align-items: center;
        justify-content: center;
    }

    .team-join {
        align-items: center !important;
        text-align: center !important;
    }

    .team-heading {
        text-align: center;
    }

    .team-header-text {
        text-align: center;
    }

    .support-account {
        color: white !important;
        text-decoration: none !important;
        pointer-events: none;
        -webkit-tap-highlight-color: transparent;
        user-select: none;
        -webkit-touch-callout: none;
    }

    .support-account a {
        color: white !important;
        text-decoration: none !important;
        pointer-events: none !important;
        -webkit-tap-highlight-color: transparent !important;
    }
}

/* SUPPORT SECTION */
.support-section {
    background-color: #2B2C31;
    color: white;
    display: flex;
    align-items: stretch;
    min-height: 400px;
}

.support-block-orange {
    background-color: #e56400;
    width: 50px;
    flex-shrink: 0;
}

.support-section .container {
    flex: 1;
    display: flex;
    align-items: stretch;
    padding: 3rem 1rem;
}

.support-content {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.support-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.support-text-block {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.support-text-large {
    font-size: 1.5rem;
    color: white;
    margin: 0;
    line-height: 1.3;
    font-weight: bold;
}

.support-text-small {
    font-size: 1rem;
    color: white;
    margin: 0;
    line-height: 1.6;
    opacity: 0.9;
}

.support-text-small a {
    color: #e56400;
    text-decoration: none;
    font-weight: 700;
    transition: opacity 0.2s ease;
}

.support-text-small a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.support-visuals {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
}

.support-qr {
    max-width: 200px;
    height: auto;
    display: block;
}

.support-card {
    max-width: 300px;
    height: auto;
    display: block;
}

.support-account {
    font-size: 1.5rem;
    color: white;
    margin: 0;
    font-weight: bold;
    text-align: left;
}

.support-account a {
    color: white !important;
    text-decoration: none !important;
    pointer-events: none;
}

/* ========================= */
/* INVESTOR SECTION */
.investor-section {
    background-color: #D9D9D9;
    padding: 3rem 0;
}

.investor-section .container {
    padding-left: 1rem;
    padding-right: 1rem;
}

.investor-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.investor-left {
    width: 100%;
}

.investor-heading {
    font-size: 1.75rem;
    color: #333333;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.investor-text {
    font-size: 1rem;
    color: #333333;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.investor-email {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 48px;
    color: #07636F;
    text-decoration: none;
    display: inline-block;
    transition: opacity 0.3s;
}

.investor-email:hover {
    opacity: 0.8;
}

@media (max-width: 767px) {
    .investor-email {
        font-size: 32px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .investor-email {
        font-size: 40px;
    }
}

.investor-right {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.investor-image {
    max-width: 100%;
    height: auto;
    display: block;
}

/* TEAM SECTION */
.team-section {
    background-color: #D9D9D9;
    padding: 3rem 0;
}

.team-section .container {
    padding-left: 1rem;
    padding-right: 1rem;
}

.team-header {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: center;
}

.team-tablet {
    max-width: 200px;
    height: auto;
    display: block;
}

.team-header-text {
    width: 100%;
}

.team-heading {
    font-size: 1.75rem;
    color: #333333;
    line-height: 1.3;
    margin: 0;
}

.team-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.team-members {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.team-member {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.team-member-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.team-member-name {
    font-size: 1.5rem;
    color: #333333;
    margin: 0 0 0.5rem 0;
    font-weight: bold;
}

.team-member-role {
    font-size: 20px;
    color: #00798C;
    margin: 0 0 1rem 0;
    font-weight: bold;
}

.team-member-description {
    font-size: 0.9rem;
    color: #333333;
    line-height: 1.6;
    margin: 0;
}

.team-join {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.team-join-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.team-join-heading {
    font-size: 1.5rem;
    color: #333333;
    margin: 0 0 0.5rem 0;
    font-weight: bold;
}

.team-join-subheading {
    font-size: 20px;
    color: #00798C;
    margin: 0 0 1rem 0;
    font-weight: bold;
}

.team-join-description {
    font-size: 0.9rem;
    color: #333333;
    line-height: 1.6;
    margin: 0;
}

.team-join-contact {
    font-size: 0.9rem;
    color: #333333;
    line-height: 1.6;
    margin: 1rem 0 0 0;
}

.team-join-email {
    color: #00798C;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.team-join-email:hover {
    color: #005a6a;
    text-decoration: underline;
}

/* ========================= */
@media (min-width: 768px) {
    .header-block-orange {
        flex: 0 0 12%;
    }
    .header-block-dark {
        flex: 0 0 18%;
        min-width: 120px;
        padding: 0.5rem 1rem;
    }
    .header-block-teal {
        padding: 0.5rem 1rem;
    }
    .mobile-menu-toggle {
        display: none;
    }
    .header-right {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
        gap: 1.5rem;
        position: static;
        width: auto;
        height: auto;
        background-color: transparent;
        padding-right: 12%;
        flex: 1;
    }
    .header-nav {
        gap: 1rem;
    }
    .nav-link {
        font-size: 1rem;
        padding: 0.5rem 0;
    }

    .investor-section .container {
        padding-left: 12%;
        padding-right: 12%;
    }

    .investor-content {
        flex-direction: row;
        gap: 4rem;
        align-items: center;
    }

    .investor-left {
        flex: 1;
    }

    .investor-heading {
        font-size: 2.5rem;
    }

    .investor-text {
        font-size: 1.1rem;
    }

    .investor-right {
        flex: 1;
    }

    .support-block-orange {
        width: 12%;
        min-width: 120px;
    }

    .support-section .container {
        padding: 3rem 1.5rem;
    }

    .support-content {
        flex-direction: row;
    }

    .support-left {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 3rem;
    }

    .support-text-block {
        display: flex;
        flex-direction: row;
        gap: 4rem;
        align-items: flex-start;
    }

    .support-text-large {
        flex: 1;
        font-size: 2rem;
    }

    .support-text-small {
        flex: 1;
        font-size: 1.1rem;
    }

    .support-visuals {
        display: flex;
        flex-direction: row;
        gap: 2rem;
        align-items: center;
    }

    .support-account {
        font-size: 2.5rem;
    }

    .team-header {
        flex-direction: row;
        gap: 3rem;
        align-items: flex-start;
    }

    .team-tablet {
        max-width: 300px;
        flex-shrink: 0;
    }

    .team-header-text {
        flex: 1;
    }

    .team-heading {
        font-size: 40px;
    }

    .team-content {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 1.5rem;
        align-items: start;
    }

    .team-members {
        grid-column: 1 / 5;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }

    .team-member-image {
        width: 100px;
        height: 100px;
    }

    .team-member-name {
        font-size: 1.75rem;
    }

    .team-join {
        grid-column: 5;
        align-items: flex-start;
        text-align: left;
    }

    .team-join-image {
        width: 100px;
        height: 100px;
    }

    .team-join-heading {
        font-size: 1.75rem;
    }
}
