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

:root {
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --green-50: #f0fdf4;
    --green-100: #dcfce7;
    --green-200: #bbf7d0;
    --green-300: #86efac;
    --green-400: #4ade80;
    --green-500: #22c55e;
    --green-600: #16a34a;
    --green-700: #15803d;
    --wood-100: #f5ebe0;
    --wood-200: #d5bdaf;
    --wood-300: #b08968;
    --wood-400: #7f5539;
    --wood-500: #5c3d2e;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--white);
    color: var(--gray-800);
    line-height: 1.6;
    overflow-x: hidden;
}

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

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--gray-800);
    font-weight: 700;
    font-size: 1.5rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    color: var(--green-600);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--gray-600);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--green-600);
}

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

.btn-tour {
    color: var(--gray-600);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.btn-tour:hover {
    color: var(--green-600);
}

.btn-join {
    background: var(--green-600);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-join:hover {
    background: var(--green-700);
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--gray-600);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hero {
    min-height: 100vh;
    padding: 120px 24px 80px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(34, 197, 94, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(208, 189, 175, 0.15) 0%, transparent 50%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: var(--green-100);
    color: var(--green-700);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-title .highlight {
    color: var(--green-600);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 32px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

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

.btn-primary:hover {
    background: var(--green-700);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--gray-700);
    border: 2px solid var(--gray-300);
}

.btn-outline:hover {
    border-color: var(--green-600);
    color: var(--green-600);
}

.btn-card {
    background: transparent;
    color: var(--green-600);
    border: 1px solid var(--green-500);
    padding: 12px 24px;
}

.btn-card:hover {
    background: var(--green-600);
    color: var(--white);
}

.btn-full {
    width: 100%;
    text-align: center;
}

.hero-stats {
    display: flex;
    gap: 48px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--gray-800);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.hero-visual {
    position: relative;
}

.workspace-preview {
    position: relative;
}

.preview-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-200);
}

.preview-card.main-card {
    padding: 24px;
}

.card-image {
    height: 200px;
    border-radius: 12px;
    margin-bottom: 16px;
}

.office-space {
    background: linear-gradient(135deg, var(--wood-100) 0%, var(--green-50) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.desk-setup {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.monitor {
    width: 60px;
    height: 40px;
    background: var(--gray-700);
    border-radius: 4px;
}

.keyboard {
    width: 50px;
    height: 15px;
    background: var(--gray-300);
    border-radius: 2px;
}

.plant {
    width: 20px;
    height: 30px;
    background: var(--green-500);
    border-radius: 50% 50% 0 0;
}

.card-label {
    font-weight: 600;
    color: var(--gray-700);
}

.preview-card.floating {
    position: absolute;
    width: 140px;
    padding: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card-2 {
    top: -20px;
    right: -40px;
}

.card-3 {
    bottom: -20px;
    left: -40px;
}

.card-2 .card-image,
.card-3 .card-image {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
}

.card-icon {
    font-size: 2rem;
}

section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: var(--green-100);
    color: var(--green-700);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
}

.section-header .highlight {
    color: var(--green-600);
}

.spaces {
    background: var(--gray-50);
}

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

.space-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    position: relative;
}

.space-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.space-card.featured {
    border-color: var(--green-500);
}

.featured-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--green-600);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.space-image {
    height: 180px;
    padding: 24px;
    background: var(--gray-50);
}

.space-illustration {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.space-illustration .desk {
    width: 60px;
    height: 40px;
    background: var(--wood-400);
    border-radius: 4px;
}

.space-info {
    padding: 24px;
}

.space-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.space-info p {
    color: var(--gray-600);
    margin-bottom: 16px;
}

.space-price {
    margin-bottom: 16px;
}

.space-price .price {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--green-600);
}

.space-price .period {
    color: var(--gray-500);
}

.space-features {
    list-style: none;
    margin-bottom: 20px;
}

.space-features li {
    padding: 8px 0;
    color: var(--gray-600);
    font-size: 0.95rem;
}

.amenities-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.amenities-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.amenities-text p {
    color: var(--gray-600);
    margin-bottom: 32px;
}

.amenities-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.amenity {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.amenity-icon {
    width: 44px;
    height: 44px;
    background: var(--green-100);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.amenity-icon svg {
    width: 22px;
    height: 22px;
    color: var(--green-600);
}

.amenity h4 {
    font-weight: 600;
    margin-bottom: 4px;
}

.amenity p {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin: 0;
}

.visual-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.visual-item {
    background: var(--gray-50);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.visual-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.visual-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 12px;
}

.visual-label {
    font-weight: 600;
    color: var(--gray-700);
}

.plans {
    background: var(--gray-50);
}

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

.plan-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    border: 1px solid var(--gray-200);
    position: relative;
    transition: all 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.plan-card.popular {
    border-color: var(--green-500);
}

.popular-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--green-600);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.plan-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.plan-price {
    margin-bottom: 16px;
}

.plan-price .currency {
    font-size: 1.25rem;
    color: var(--gray-500);
    vertical-align: top;
}

.plan-price .amount {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    color: var(--gray-800);
}

.plan-price .period {
    color: var(--gray-500);
}

.plan-desc {
    color: var(--gray-500);
    margin-bottom: 24px;
}

.plan-features {
    list-style: none;
    margin-bottom: 24px;
    text-align: left;
}

.plan-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
    color: var(--gray-600);
}

.plan-features li span {
    color: var(--green-600);
    margin-right: 8px;
}

.plan-features li.disabled {
    color: var(--gray-400);
}

.plan-features li.disabled span {
    color: var(--gray-400);
}

.events {
    background: var(--white);
}

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

.event-card {
    background: var(--gray-50);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    gap: 20px;
    transition: all 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.event-date {
    text-align: center;
    flex-shrink: 0;
}

.event-date .day {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--green-600);
}

.event-date .month {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.event-type {
    display: inline-block;
    background: var(--green-100);
    color: var(--green-700);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.event-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.event-info p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 12px;
}

.event-meta {
    display: flex;
    gap: 16px;
    font-size: 0.85rem;
    color: var(--gray-500);
}

.contact {
    background: var(--gray-50);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.contact-info p {
    color: var(--gray-600);
    margin-bottom: 32px;
}

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

.detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.detail svg {
    width: 24px;
    height: 24px;
    color: var(--green-600);
    flex-shrink: 0;
    margin-top: 2px;
}

.detail strong {
    display: block;
    color: var(--gray-800);
}

.detail span {
    font-size: 0.9rem;
    color: var(--gray-500);
}

.contact-form {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--green-500);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.footer {
    background: var(--gray-800);
    color: var(--gray-300);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--gray-400);
}

.footer-links h4 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 20px;
}

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

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

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--green-400);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid var(--gray-700);
}

.footer-bottom p {
    font-size: 0.875rem;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--gray-700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--green-600);
    transform: translateY(-3px);
}

.social-links svg {
    width: 18px;
    height: 18px;
    color: var(--gray-400);
}

.social-links a:hover svg {
    color: var(--white);
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-visual {
        order: -1;
    }

    .spaces-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .amenities-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-actions {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .amenities-list {
        grid-template-columns: 1fr;
    }

    .visual-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .preview-card.floating {
        display: none;
    }
}