/* ============================================
   XENOSPACE760 - PROFESSIONAL STYLESHEET
   Centre d'Affaires - Neutral Professional Design
   ============================================ */

/* CSS Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Neutral Professional Colors */
    --primary-dark: #1a202c;
    --charcoal: #2d3748;
    --medium-gray: #4a5568;
    --light-gray: #718096;
    --border-gray: #cbd5e0;
    --bg-light: #f7fafc;
    --bg-white: #ffffff;
    --text-dark: #2d3748;
    --text-medium: #4a5568;
    --text-light: #718096;
    --accent-gold: #b8860b;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--bg-white);
}

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

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

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border-gray);
}

.navbar.scrolled {
    padding: 0.75rem 0;
    box-shadow: var(--shadow-md);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-img {
    width: 40px;
    height: 40px;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    letter-spacing: -0.5px;
}

.logo-number {
    color: var(--accent-gold);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

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

.nav-menu a:hover {
    color: var(--primary-dark);
}

.nav-btn {
    background: var(--primary-dark);
    color: white !important;
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    transition: all 0.3s;
}

.nav-btn:hover {
    background: var(--charcoal);
    transform: translateY(-1px);
}

.nav-lang {
    padding: 0.6rem 1.25rem;
    border: 1px solid var(--border-gray);
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    color: var(--text-dark) !important;
}

.nav-lang:hover {
    background: var(--bg-light);
    border-color: var(--primary-dark);
}

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

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: 0.3s;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-image-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    padding: 4rem 0;
}

.hero-title {
    font-family: 'Inter', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    font-weight: 400;
    opacity: 0.95;
    letter-spacing: 1px;
}

.hero-features {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-feature {
    background: transparent;
    backdrop-filter: none;
    padding: 0.5rem 1rem;
    border-radius: 0;
    font-size: 1.1rem;
    font-weight: 400;
    border: none;
    letter-spacing: 0.5px;
}

.hero-pricing {
    margin-bottom: 2rem;
}

.price-badge {
    display: inline-block;
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    border-radius: 0;
    box-shadow: none;
    border: 3px solid white;
}

.starting {
    display: block;
    font-size: 0.9rem;
    color: white;
    font-weight: 400;
    opacity: 0.9;
}

.price {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    color: white;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.hero-note {
    font-size: 0.9rem;
    opacity: 0.85;
    margin-top: 1rem;
}

/* ============================================
   BUTTONS
   ============================================ */

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

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

.btn-primary:hover {
    background: var(--charcoal);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

.btn-dark {
    background: var(--charcoal);
    color: white;
}

.btn-dark:hover {
    background: var(--primary-dark);
}

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

.btn-office {
    width: 100%;
    background: var(--primary-dark);
    color: white;
}

.btn-office:hover {
    background: var(--charcoal);
}

/* ============================================
   INFO BAR
   ============================================ */

.info-bar {
    background: var(--bg-white);
    padding: 4rem 0;
    border-bottom: 1px solid var(--border-gray);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-card {
    text-align: center;
    padding: 2rem;
    background: var(--primary-dark);
    color: white;
    border-radius: 0;
    border: 2px solid white;
    transition: transform 0.3s, box-shadow 0.3s;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-gold);
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    font-size: 1.1rem;
    color: white;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.info-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

/* ============================================
   SECTIONS
   ============================================ */

section {
    padding: 5rem 0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-section {
    background: var(--bg-light);
    padding: 5rem 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text-centered {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-text-centered h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.75rem;
    color: var(--primary-dark);
    margin-bottom: 2rem;
    line-height: 1.3;
}

.about-text-centered .lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-text-centered p {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: var(--text-medium);
    line-height: 1.9;
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.lead {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-text p {
    margin-bottom: 1rem;
    color: var(--text-medium);
    line-height: 1.8;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.about-center-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

/* ============================================
   OFFICES SECTION
   ============================================ */

.offices-section {
    background: var(--bg-white);
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.office-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s;
    position: relative;
    border: 1px solid var(--border-gray);
}

.office-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.office-card.featured {
    border: 2px solid var(--accent-gold);
}

.office-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.4rem 0.9rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
}

.office-badge.available {
    background: #10b981;
    color: white;
}

.office-badge.executive {
    background: var(--accent-gold);
    color: white;
}

.office-badge.premium {
    background: var(--primary-dark);
    color: white;
}

.office-tag {
    position: absolute;
    top: 1rem;
    left: 0;
    background: var(--accent-gold);
    color: white;
    padding: 0.4rem 1.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 10;
}

.office-image {
    height: 200px;
    overflow: hidden;
    background: var(--bg-light);
    background-size: cover;
    background-position: center;
}

.office-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.office-card:hover .office-image img {
    transform: scale(1.05);
}

.office-details {
    padding: 1.5rem;
    text-align: center;
}

.office-name {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.office-size {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
    line-height: 1.5;
}

.office-features {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    margin: 0 auto 1.5rem;
    max-width: 200px;
}

.office-features .feature {
    color: var(--text-medium);
    font-size: 0.9rem;
    text-align: left;
}

.office-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.8rem;
    font-family: 'Inter', sans-serif;
}

.office-price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
}

.office-note {
    color: var(--text-medium);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.3rem;
}

/* ============================================
   PACKAGE CALLOUT
   ============================================ */

.package-callout {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--charcoal) 100%);
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
    color: white;
    margin-top: 3rem;
}

.package-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.package-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

/* ============================================
   INCLUDED SECTION
   ============================================ */

.included-section {
    background: var(--bg-white);
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.included-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    border: 1px solid var(--border-gray);
}

.included-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.included-item h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.included-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ============================================
   PREMIUM SECTION
   ============================================ */

.premium-section {
    background: var(--bg-light);
    border-top: 1px solid var(--border-gray);
}

.premium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.premium-item {
    padding: 2rem;
    background: white;
    border-radius: 8px;
    border-left: 3px solid var(--accent-gold);
    box-shadow: var(--shadow-sm);
}

.premium-item h3 {
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.premium-item p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.premium-price {
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    display: block;
}

/* ============================================
   GALLERY
   ============================================ */

.gallery-section {
    background: var(--bg-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s;
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.03);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    background: var(--bg-light);
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--charcoal) 100%);
    padding: 4rem;
    border-radius: 8px;
    text-align: center;
    color: white;
    box-shadow: var(--shadow-lg);
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.cta-box p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.cta-note {
    font-style: italic;
    margin-bottom: 2rem !important;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
    background: var(--bg-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

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

.contact-block h3 {
    color: var(--primary-dark);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.contact-block p {
    color: var(--text-medium);
    line-height: 1.8;
}

.contact-block a {
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 600;
}

.contact-block a:hover {
    text-decoration: underline;
}

.link-arrow {
    display: inline-block;
    margin-top: 0.5rem;
    color: var(--accent-gold);
    font-weight: 600;
}

.contact-map {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-gray);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--primary-dark);
    color: white;
    padding: 1.5rem 0 1rem;
}

.footer-simple {
    text-align: center;
}

.footer-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.footer-logo-img {
    display: none; /* Hide logo */
}

.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
}

.footer-brand span {
    color: var(--accent-gold);
}

.footer-tagline {
    color: rgba(255,255,255,0.7);
    margin: 0;
    font-size: 0.9rem;
}

.footer-tagline::before {
    content: "—";
    margin-right: 1rem;
    color: rgba(255,255,255,0.4);
}

.footer-copyright {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    padding-top: 1rem;
    margin: 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* ============================================
   INCUBATOR PAGE SPECIFIC STYLES
   ============================================ */

.incubator-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.incubator-hero .hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.incubator-hero .hero-overlay {
    background: rgba(0, 0, 0, 0.88);
}

.incubator-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.incubator-hero .hero-lead {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7;
}

.mission-section {
    background: var(--bg-light);
}

.mission-content, .mission-image {
    flex: 1;
}

.mission-section .container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.mission-content p {
    color: var(--text-medium);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.mission-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.cta-banner {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--charcoal) 100%);
    color: white;
    text-align: center;
    padding: 4rem 0;
}

.cta-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.cta-banner p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hybrid-section {
    background: var(--bg-light);
    text-align: center;
    padding: 4rem 0;
}

.hybrid-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.hybrid-content p {
    color: var(--text-medium);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 1rem;
}

.services-section {
    background: var(--bg-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-gray);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.4rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.service-subtitle {
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.image-break {
    height: 400px;
    overflow: hidden;
}

.break-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.final-cta {
    background: var(--bg-light);
}

.final-cta .cta-box {
    background: white;
    color: var(--text-dark);
    border: 2px solid var(--border-gray);
}

.final-cta .cta-box h2 {
    color: var(--primary-dark);
}

.final-cta .cta-box p {
    color: var(--text-medium);
}

.cta-address {
    margin-top: 1.5rem;
    font-size: 1rem;
    color: var(--text-light);
    font-style: italic;
}

/* ============================================
   CONVERSION ELEMENTS
   ============================================ */

/* Trust Bar */
.trust-bar {
    background: var(--bg-light);
    padding: 2rem 0;
    border-top: 1px solid var(--border-gray);
    border-bottom: 1px solid var(--border-gray);
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.trust-stat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.trust-stat strong {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-dark);
    display: block;
}

.trust-stat span {
    color: var(--text-medium);
    font-size: 0.95rem;
}

/* Feature Highlight */
.feature-highlight {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--charcoal) 100%);
    color: white;
}

.feature-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: center;
}

.feature-icon-large {
    font-size: 6rem;
    text-align: center;
}

.feature-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.feature-text .lead {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.feature-lead {
    color: rgba(255, 255, 255, 0.95) !important;
    font-weight: 400;
    line-height: 1.6;
}

.feature-points {
    display: grid;
    gap: 1rem;
}

.feature-point {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-point:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.point-icon {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-gold);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .feature-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .feature-icon-large {
        font-size: 4rem;
    }
    
    .feature-text h2 {
        font-size: 2rem;
    }
}

/* Feature Stats (within Digital Access section) */
.feature-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-stat-box {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-stat-box:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .feature-stats {
        grid-template-columns: 1fr;
    }
}

/* Premium Services Grid - Force 3 columns */
.premium-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2rem;
}

@media (max-width: 992px) {
    .premium-grid-3 {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 640px) {
    .premium-grid-3 {
        grid-template-columns: 1fr !important;
    }
}

/* Availability Alert */
.availability-alert {
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    color: white;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
}

/* Office Badge Variants */
.office-badge.executive {
    background: var(--accent-gold);
}

.office-badge.premium {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #8b6914 100%);
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background: var(--bg-white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border-gray);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.faq-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.faq-item p {
    color: var(--text-medium);
    line-height: 1.7;
}

.faq-cta {
    text-align: center;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-gray);
}

.faq-cta p {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

/* Mobile Sticky Call Button */
.mobile-call-btn {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--charcoal) 100%);
    color: white;
    text-align: center;
    padding: 1rem;
    font-weight: 600;
    text-decoration: none;
    z-index: 999;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    border-top: 2px solid var(--accent-gold);
    font-size: 1.1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    .mobile-call-btn {
        display: block;
    }
    
    /* Add padding to body to account for sticky button */
    body {
        padding-bottom: 60px;
    }
}

.mobile-call-btn:hover {
    background: var(--primary-dark);
}

/* Office CTA Group */
.office-cta-group {
    display: flex;
    gap: 0.5rem;
    flex-direction: column;
}

.office-cta-group .btn {
    margin: 0;
}

/* Premium Price Styling */
.premium-price {
    font-weight: 700;
    color: var(--accent-gold);
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

/* Inline CTA Buttons */
.cta-buttons-inline {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Large Stat Boxes with Icons */
.stat-box-large {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--charcoal) 100%);
    border-radius: 12px;
    color: white;
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.stat-box-large .stat-number {
    color: white;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-box-large .stat-label {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.stat-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.75rem;
}

/* Contact Form Section */
.contact-form-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.form-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-gray);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid var(--border-gray);
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-dark);
    box-shadow: 0 0 0 3px rgba(26, 32, 44, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-actions {
    margin-top: 2rem;
    text-align: center;
}

.form-note {
    margin-top: 1rem;
    color: var(--text-medium);
    font-size: 0.9rem;
}

.form-note a {
    color: var(--primary-dark);
    font-weight: 600;
    text-decoration: none;
}

.form-note a:hover {
    text-decoration: underline;
}

.email-link-dark {
    color: var(--primary-dark) !important;
    font-weight: 600 !important;
    text-decoration: none !important;
}

.email-link-dark:hover {
    text-decoration: underline !important;
}

.form-privacy {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-light);
    text-align: center;
}

.form-privacy a {
    color: var(--text-medium);
    text-decoration: underline;
}

.form-benefits {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-gray);
}

.form-benefits h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    padding: 0.75rem 0;
    color: var(--text-medium);
    font-size: 1rem;
    border-bottom: 1px solid var(--border-gray);
}

.benefits-list li:last-child {
    border-bottom: none;
}

/* Form Responsive */
@media (max-width: 768px) {
    .form-wrapper {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-benefits {
        order: -1;
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 250px;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: right 0.3s;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .about-content,
    .about-content-with-image,
    .teaser-content,
    .mission-section .container {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title,
    .incubator-hero h1 {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .about-text-centered h2 {
        font-size: 2rem;
    }
    
    .about-text-centered .lead {
        font-size: 1.1rem;
    }
    
    .about-text-centered p {
        font-size: 1rem;
        text-align: left;
    }
    
    .about-text-centered {
        text-align: left;
    }
    
    .hero-cta,
    .cta-buttons {
        flex-direction: column;
    }
    
    .offices-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-box {
        padding: 2rem;
    }
    
    .cta-box h2 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .price {
        font-size: 2rem;
    }
    
    .package-callout,
    .cta-banner {
        padding: 2rem 1.5rem;
    }
    
    .info-grid,
    .included-grid {
        grid-template-columns: 1fr;
    }
}