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

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #ffffff url('./assets/image/Cubes.svg') repeat;
    background-size: 80px 48px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    padding: 20px 0;
    border-bottom: 1px solid transparent;
    z-index: 100;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: white;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo-svg {
    height: 40px;
    width: auto;
}

.header-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.btn-event {
    background: white;
    border: 1px solid #d1d5db;
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 200px;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    color: inherit;
}

.btn-event:hover {
    border-color: #9ca3af;
    transform: translateY(-1px);
}

.btn-event-title {
    font-size: 16px;
    font-weight: 600;
    color: #000000 !important;
    display: block;
}

.btn-event-subtitle {
    font-size: 10px !important;
    font-weight: 400 !important;
    color: #000000 !important;
    display: block;
}

.btn-login-header {
    background: transparent;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    color: #000000 !important;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    display: inline-block;
}

.btn-login-header:hover {
    background: #f9fafb;
    transform: translateY(-1px);
}

.btn-join-header {
    background: transparent;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 600;
    color: #000000 !important;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    display: inline-block;
}

.btn-join-header:hover {
    background: #f9fafb;
    transform: translateY(-1px);
}

/* Hero Section */
.hero {
    padding: 120px 0 0;
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
    overflow: hidden;
    background: #ffffff url('./assets/image/Cubes.svg') repeat;
    background-size: 80px 48px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    width: 100%;
}

/* Hero Text */
.hero-text {
    max-width: none;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.1;
    color: #111827;
    margin: 0 0 24px 0;
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 1.25rem;
    color: #4b5563;
    margin: 0 0 40px 0;
    line-height: 1.6;
}

.btn-join-hero {
    background: #111827;
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    display: inline-block;
}

.btn-join-hero:hover {
    background: #1f2937;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mask-group {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.mask-group img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top right;
    display: block;
}

.image-collage {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
}

.woman-diagonal {
    position: absolute;
    top: 50%;
    left: 60%;
    transform: translate(-50%, -50%);
    z-index: 3;
    width: 120%;
}

.woman-diagonal img {
    width: 100%;
    height: auto;
    display: block;
}


/* Autumn Fair Section */
.autumn-fair {
    background-color: #E6F4FC;
    padding: 80px 0;
}

.autumn-fair-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.autumn-fair-title {
    font-size: 3rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 24px;
    line-height: 1.2;
}

.autumn-fair-description {
    font-size: 1.125rem;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 40px;
}

.autumn-fair-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.btn-event-registration {
    background: #000000;
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: center;
}

.btn-event-registration:hover {
    background: #333333;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.btn-event-title {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}

.btn-event-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    opacity: 0.9;
}

.guest-link {
    color: #000000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.guest-link:hover {
    color: #333333;
    text-decoration: underline;
}

/* Feature Blocks */
.feature-blocks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-block {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
}

.feature-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: #000000;
    margin-top: 2px;
}

.feature-text {
    font-size: 14px;
    color: #000000;
    line-height: 1.5;
    margin: 0;
}

/* Event Coverage within Autumn Fair */
.coverage-section {
    margin-top: 80px;
    padding: 50px 0 40px;
}

.coverage-subtitle {
    font-size: 2.25rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 50px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.coverage-section .feature-blocks {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.coverage-section .feature-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 16px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.coverage-section .feature-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #000000 0%, #333333 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.coverage-section .feature-block:hover {
    transform: translateY(-8px);
}

.coverage-section .feature-block:hover::before {
    opacity: 1;
}

.coverage-section .feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.coverage-section .feature-block:hover .feature-icon {
    transform: scale(1.05);
}

.coverage-section .feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
    stroke-width: 2;
}

.coverage-section .feature-text {
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.01em;
    line-height: 1.4;
}

.host-info-section {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.host-card-mini {

    background: transparent;
    color: #000000;
    padding: 16px 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.host-card-mini .host-label,
.host-card-mini .host-name,
.host-card-mini .host-title {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    display: inline;
}

.host-card-mini .host-label {
    font-size: 14px;
    font-weight: 500;
    color: #666666;
    letter-spacing: 0.5px;
}

.host-card-mini .host-name {
    font-size: 15px;
    font-weight: 700;
    color: #000000;
    letter-spacing: -0.01em;
}

.host-card-mini .host-title {
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    font-style: italic;
}

/* Separator Gradient */
.separator-gradient {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
}

.separator-gradient img {
    width: 100%;
    height: auto;
    display: block;
}

/* Event Location Section */
.event-location {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.location-link {
    display: block;
    text-decoration: none;
    color: inherit;
}


.location-images {
    display: flex;
    height: 100%;
}

.location-image-left,
.location-image-right {
    flex: 1;
    height: 100%;
    overflow: hidden;
}

.location-image-left img,
.location-image-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.location-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
}

.location-content {
    text-align: center;
    color: white;
}

.location-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
}

.location-header svg {
    color: #ff4444;
}

.location-label {
    font-size: 16px;
    font-weight: 500;
    color: white;
}

.event-date {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin: 8px 0;
    font-family: 'Montserrat', sans-serif;
}

.location-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin: 0;
    letter-spacing: 2px;
}

/* Responsive: Event Coverage within Autumn Fair */
@media (max-width: 1024px) {
    .coverage-section .feature-blocks {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .coverage-section {
        margin-top: 60px;
        padding: 40px 20px 30px;
    }

    .coverage-subtitle {
        font-size: 1.75rem;
        margin-bottom: 40px;
    }

    .coverage-section .feature-blocks {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        margin-bottom: 40px;
    }

    .coverage-section .feature-block {
        padding: 24px 16px;
    }

    .coverage-section .feature-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 16px;
    }

    .coverage-section .feature-icon svg {
        width: 24px;
        height: 24px;
    }

    .coverage-section .feature-text {
        font-size: 15px;
    }

    .host-info-section {
        margin-top: 40px;
    }

    .host-card-mini {
        padding: 16px 0;
        flex-direction: column;
        gap: 6px;
    }
}

@media (max-width: 480px) {
    .coverage-section {
        margin-top: 50px;
        padding: 30px 16px 25px;
    }

    .coverage-subtitle {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .coverage-section .feature-blocks {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 30px;
    }

    .coverage-section .feature-block {
        padding: 20px 16px;
    }

    .coverage-section .feature-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 14px;
    }

    .coverage-section .feature-icon svg {
        width: 22px;
        height: 22px;
    }

    .coverage-section .feature-text {
        font-size: 14px;
    }

    .host-card-mini {
        padding: 16px 0;
    }

    .host-card-mini .host-label,
    .host-card-mini .host-name,
    .host-card-mini .host-title {
        font-size: 13px;
    }
}

/* Responsive: Blumi Cafe (Event Location) */
@media (max-width: 768px) {
    .event-location {
        height: 320px;
    }

    .location-images {
        height: 100%;
        min-height: 0;
        flex-direction: column;
    }

    .location-image-left,
    .location-image-right {
        height: 50%;
        flex: none;
    }

    .location-content {
        padding: 0 20px;
    }

    .event-date {
        font-size: 16px;
    }

    .location-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .location-label {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .event-location {
        height: 260px;
    }

    .location-images {
        height: 100%;
        min-height: 0;
        flex-direction: column;
    }

    .location-image-left,
    .location-image-right {
        height: 50%;
        flex: none;
    }

    .location-content {
        padding: 0 16px;
    }

    .event-date {
        font-size: 14px;
    }

    .location-title {
        font-size: 1.75rem;
    }

    .location-label {
        font-size: 12px;
    }
}

/* Numbers Section */
.numbers-section {
    background: white;
    padding: 80px 0;
}

.numbers-title {
    font-size: 3rem;
    font-weight: 600;
    color: #000000;
    text-align: center;
    margin-bottom: 60px;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.number-item {
    text-align: center;
}

.number-value {
    font-size: 5rem;
    font-weight: 300;
    background: linear-gradient(315deg, #D26A2E 0%, #E78390 46%, #F0C866 79%, #FAF7F2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    line-height: 1;
}

.number-label {
    font-size: 1rem;
    font-weight: 500;
    color: #000000;
    line-height: 1.4;
}

/* Partnership Section */
.partnership-section {
    background: white url('assets/image/partnership-bg.svg') no-repeat center center;
    background-size: contain;
    padding: 120px 0;
    min-height: 80vh;
    position: relative;
    overflow: hidden;
}

.partnership-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.partnership-header {
    font-size: 1rem;
    font-weight: 500;
    color: #4b5563;
    margin-bottom: 32px;
}

.partnership-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin-bottom: 48px;
}

.logo-upscale {
    display: flex;
    align-items: center;
}

.logo-upscale .logo-svg {
    height: 60px;
    width: auto;
}

.logo-miivo {
    display: flex;
    align-items: center;
}

.miivo-logo-svg {
    height: 50px;
    width: auto;
}

.partnership-title {
    font-size: 3rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 24px;
    line-height: 1.2;
}

.partnership-description {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.partnership-buttons {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.btn-work-upscale {
    background: #000000;
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600 !important;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-work-upscale:hover {
    background: #333333;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.btn-signup-miivo {
    background: white;
    color: #000000;
    border: 1px solid #d1d5db;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-signup-miivo:hover {
    background: #f9fafb;
    border-color: #9ca3af;
    transform: translateY(-2px);
}

/* Testimonials Section */
.testimonials-section {
    background: #E6F4FC;
    padding: 80px 0;
}

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

.testimonials-subtitle {
    font-size: 1rem;
    font-weight: 500;
    color: #4b5563;
    margin-bottom: 16px;
}

.testimonials-title {
    font-size: 3rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 60px;
    line-height: 1.2;
}

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

.testimonial-card {
    background: white;
    padding: 40px 30px;
    text-align: left;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-image {
    margin-bottom: 24px;
    text-align: center;
}

.testimonial-image img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
    display: block;
}

.testimonial-text {
    font-size: 1rem;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 24px;
    text-align: left;
}

.testimonial-name {
    font-size: 0.875rem;
    font-weight: 700;
    color: #000000;
    letter-spacing: 1px;
    margin: 0;
    text-align: left;
}

/* Upscale Experience Section */
.upscale-experience-section {
    background: white;
    padding: 60px 0 10px;
}

.experience-content {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(to bottom, #E9F4FA, #ffffff);
    border-radius: 16px;
    padding: 60px 50px;
}

.experience-title {
    font-size: 24px;
    font-weight: 600;
    color: #000000;
    text-align: center;
    margin-bottom: 40px;
}

.experience-items {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.experience-item {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    align-items: start;
    padding: 40px 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
}

.experience-item:last-child {
    border-bottom: none;
}

.experience-heading {
    font-size: 48px;
    font-weight: 600;
    color: #000000;
    margin: 0;
}

.experience-description {
    font-size: 1rem;
    color: #000000;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 24px;
    }
    
    .partnership-section {
        padding: 80px 0;
    }
    
    .partnership-title {
        font-size: 2.5rem;
    }
    
    .numbers-title {
        font-size: 2.5rem;
    }
    
    .number-value {
        font-size: 4rem;
    }
}

@media (max-width: 1024px) {
    .hero-content {
        gap: 60px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-visual {
        height: 400px;
    }
    
    .image-main {
        width: 240px;
        height: 170px;
    }
    
    .image-secondary {
        width: 170px;
        height: 170px;
    }
    
    .image-tertiary {
        width: 130px;
        height: 130px;
    }
}

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
        padding-right: 20px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-visual {
        height: 350px;
        order: -1;
        padding-right: 20px;
        margin-left: -15px;
    }
    
    .header-actions {
        flex-direction: column;
        gap: 8px;
    }
    
    .btn-event {
        padding: 8px 12px;
    }
    
    .btn-event-title {
        font-size: 12px;
    }
    
    .btn-event-subtitle {
        font-size: 9px !important;
        font-weight: 400 !important;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .hero {
        padding: 100px 0 0;
        height: auto;
        min-height: 100vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .autumn-fair {
        padding: 60px 0;
    }
    
    .autumn-fair-title {
        font-size: 2.5rem;
    }
    
    .autumn-fair-description {
        font-size: 1rem;
    }
    
    .numbers-section {
        padding: 60px 0;
    }
    
    .numbers-title {
        font-size: 2rem;
    }
    
    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .number-value {
        font-size: 3rem;
    }
    
    .partnership-section {
        padding: 60px 0;
    }
    
    .partnership-title {
        font-size: 2rem;
    }
    
    .partnership-logos {
        gap: 40px;
    }
    
    .partnership-buttons {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
    
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonials-title {
        font-size: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .upscale-experience-section {
        padding: 60px 0;
    }
    
    .experience-title {
        font-size: 20px;
    }
    
    .experience-heading {
        font-size: 32px;
    }
    
    .feature-blocks {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .feature-block {
        text-align: center;
        flex-direction: column;
        align-items: center;
    }
    
    .feature-text {
        text-align: center;
    }
    
    .numbers-title {
        font-size: 2.5rem;
    }
    
    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .number-value {
        font-size: 4rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-content {
        padding-right: 10px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-visual {
        padding-left:20px;
        width: 95%;;
    }
    
    .autumn-fair {
        padding: 40px 0;
    }
    
    .autumn-fair-title {
        font-size: 2rem;
    }
    
    .autumn-fair-description {
        font-size: 1rem;
    }
    
    .autumn-fair-cta {
        flex-direction: column;
        gap: 16px;
    }
    
    .event-location {
        min-height: 350px;
    }
    
    .location-title {
        font-size: 2rem;
    }
    
    .location-label {
        font-size: 14px;
    }
    
    .numbers-section {
        padding: 60px 0;
    }
    
    .numbers-title {
        font-size: 2rem;
    }
    
    .numbers-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .number-value {
        font-size: 3rem;
    }
    
    .partnership-section {
        padding: 80px 0;
        min-height: 60vh;
    }
    
    .partnership-title {
        font-size: 2rem;
    }
    
    .partnership-logos {
        gap: 40px;
    }
    
    .partnership-buttons {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
    
    .btn-work-upscale,
    .btn-signup-miivo {
        width: 100%;
        max-width: 300px;
    }
    
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonials-title {
        font-size: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .upscale-experience-section {
        padding: 60px 0;
    }
    
    .experience-content {
        padding: 40px 30px;
    }
    
    .experience-title {
        font-size: 20px;
    }
    
    .experience-item {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 30px 0;
    }
    
    .experience-heading {
        font-size: 32px;
    }
}

/* FAQ Section */
.faq-section {
    background: white;
    padding: 20px 0;
}

.faq-title {
    font-size: 3rem;
    font-weight: 600;
    color: #000000;
    text-align: center;
    margin-bottom: 60px;
    font-family: 'Montserrat', sans-serif;
}

.faq-category {
    margin-bottom: 60px;
}

/* FAQ Tabs */
.faq-tabs {
    max-width: 800px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    margin-bottom: 30px;
    border-bottom: 2px solid #e5e7eb;
}

.tab-button {
    background: none;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    font-family: 'Montserrat', sans-serif;
}

.tab-button.active {
    color: #000000;
    border-bottom-color: #000000;
}

.tab-button:hover {
    color: #000000;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.faq-category-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000000;
    margin: 0 auto 30px;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    max-width: 800px;
}

.faq-category:last-child {
    margin-bottom: 0;
}

.faq-category-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 30px;
    font-family: 'Montserrat', sans-serif;
}

.faq-items {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #d1d5db;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 30px;
    cursor: pointer;
    background: white;
    border: none;
    width: 100%;
    text-align: left;
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #000000;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item:not(.active) .faq-icon {
    background: #f3f4f6;
}

.faq-item:not(.active) .faq-icon svg {
    stroke: #000000;
}

.faq-item.active .faq-icon {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.faq-item.active .faq-icon svg {
    stroke: #000000;
}

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

.faq-item.active .faq-answer {
    max-height: 400px;
}

.faq-answer p {
    padding: 0 30px 24px 30px;
    margin: 0;
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .faq-section {
        padding: 20px 0;
    }
    
    .faq-title {
        font-size: 2.5rem;
    }
    
    .faq-category-title {
        font-size: 1.25rem;
    }
    
    .faq-question {
        padding: 20px 24px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding: 0 24px 20px 24px;
        font-size: 0.9rem;
    }
    
    .faq-icon {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 10px 0;
    }

    .faq-title {
        font-size: 2rem;
    }
    
    .faq-category-title {
        font-size: 1.125rem;
    }
    
    .faq-question {
        padding: 16px 20px;
    }
    
    .faq-answer p {
        padding: 0 20px 16px 20px;
    }
}

/* Footer */
.footer {
    background: #f8f9fa;
    padding: 40px 0;
    border-top: 1px solid #e5e7eb;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.footer-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.footer-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.footer-left p,
.footer-right p {
    font-size: 1rem;
    color: #374151;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
}

.social-links {
    display: flex;
    gap: 16px;
    align-items: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f3f4f6;
    color: #6b7280;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #f3f4f6;
    color: #6b7280;
}

.footer-center {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-svg {
    height: 50px;
    width: auto;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer {
        padding: 30px 0;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-left,
    .footer-center,
    .footer-right {
        flex: none;
    }
    
    .footer-left p,
    .footer-right p {
        font-size: 0.9rem;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
    }
    
    .footer-logo-svg {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 24px 0;
    }
    
    .footer-content {
        gap: 16px;
    }
    
    .footer-left p,
    .footer-right p {
        font-size: 0.8rem;
    }
    
    .social-link {
        width: 32px;
        height: 32px;
    }
    
    .footer-logo-svg {
        height: 35px;
    }
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: #000000;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 1px;
}

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

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

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

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: white;
    padding: 20px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.mobile-logo {
    height: 40px;
    width: auto;
}

.mobile-menu-close {
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.close-line {
    width: 20px;
    height: 2px;
    background: #000000;
    margin: 2px 0;
    border-radius: 1px;
}

.close-line:nth-child(1) {
    transform: rotate(45deg);
}

.close-line:nth-child(2) {
    transform: rotate(-45deg);
    margin-top: -4px;
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-menu-link {
    display: block;
    padding: 16px 0;
    text-decoration: none;
    color: #000000;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    border-bottom: 1px solid #f3f4f6;
    transition: color 0.3s ease;
}

.mobile-menu-link:hover {
    color: #6b7280;
}

.mobile-link-title {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.mobile-link-subtitle {
    display: block;
    font-size: 12px;
    font-weight: 400;
    color: #6b7280;
}

/* Responsive Header Buttons */
@media (max-width: 768px) {
    .header-actions {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
}

@media (max-width: 480px) {
    .header-actions {
        flex-direction: column;
        gap: 8px;
        align-items: stretch;
    }
    
    .btn-event {
        min-width: auto;
    }
    
    .btn-login-header,
    .btn-join-header {
        padding: 10px 16px;
        font-size: 14px;
    }

    .tab-buttons {
        flex-direction: column;
        border-bottom: none;
    }
    
    .tab-button {
        padding: 12px 20px;
        font-size: 16px;
        border-bottom: 1px solid #e5e7eb;
        border-radius: 0;
    }
    
    .tab-button.active {
        background-color: #f9fafb;
        border-bottom-color: #e5e7eb;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 320px) {
    .container {
        padding: 0 12px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .autumn-fair-title {
        font-size: 1.75rem;
    }
    
    .numbers-title {
        font-size: 1.5rem;
    }
    
    .number-value {
        font-size: 2rem;
    }
    
    .partnership-title {
        font-size: 1.5rem;
    }
    
    .testimonials-title {
        font-size: 1.5rem;
    }
    
    .experience-title {
        font-size: 16px;
    }
    
    .experience-heading {
        font-size: 24px;
    }
    
    .faq-title {
        font-size: 1.75rem;
    }
    
    .faq-category-title {
        font-size: 1rem;
    }
}

