/* Marketing Site Styles */

/* --- Navigation --- */
.marketing-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
    padding: 1rem 2rem;
}

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

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

.nav-logo h1 {
    font-size: 1.5rem;
    color: var(--accent-primary);
    margin: 0;
}

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

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

.nav-links a:hover {
    color: var(--accent-primary);
}

.nav-cta {
    background: var(--accent-primary);
    color: white !important;
    padding: 0.6rem 1.2rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    font-size: 0.85rem;
    text-transform: uppercase;
    transition: all 0.2s;
}

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

@media (max-width: 768px) {
    .nav-container {
        position: relative;
    }

    .menu-toggle {
        display: block !important;
        background: none;
        border: none;
        color: var(--accent-primary);
        cursor: pointer;
        padding: 0.5rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 2px solid var(--accent-primary);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
    }

    .marketing-nav {
        padding: 0.75rem 1.5rem;
    }

    .nav-cta {
        width: 100%;
        text-align: center;
    }
}

.menu-toggle {
    display: none;
}

/* --- Shared Elements --- */
.accent-tag {
    font-family: 'Pacifico', cursive;
    color: var(--accent-primary);
    font-size: 2rem;
    margin-bottom: 1rem;
    display: inline-block;
}

/* --- Our Story Page --- */
.story-hero {
    padding: 8rem 2rem 4rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(229, 115, 153, 0.05) 0%, rgba(128, 203, 196, 0.05) 100%);
}

.story-hero h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.story-content {
    max-width: 800px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.story-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-default);
    margin-bottom: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.story-text p {
    font-size: 1.15rem;
    color: #444;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.story-text ul {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.story-text li {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.quote-block {
    border-left: 4px solid var(--accent-primary);
    padding: 2rem;
    background: #fff;
    margin: 3rem 0;
    font-style: italic;
    font-size: 1.25rem;
    color: var(--text-main);
}

/* --- Resources/Use-Cases Hub --- */
.cases-hero {
    padding: 8rem 2rem 4rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(128, 203, 196, 0.05) 0%, rgba(229, 115, 153, 0.05) 100%);
}

.cases-hero h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.cases-hero p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.25rem;
    color: #666;
    font-weight: 300;
}

.cases-grid {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.case-card {
    background: #fff;
    border-radius: var(--radius-default);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.case-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.case-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-bottom: 4px solid var(--accent-primary);
}

.card-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.card-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex: 1;
}

.card-link {
    font-weight: 700;
    color: var(--accent-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
}

/* --- Use-Case Detail Pages --- */
.detail-hero {
    padding: 8rem 2rem 4rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(229, 115, 153, 0.08) 0%, rgba(128, 203, 196, 0.08) 100%);
}

.detail-hero h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.detail-content {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-default);
    margin-bottom: 4rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.case-section {
    margin-bottom: 4rem;
}

.case-section h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.case-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.5rem;
}

.feature-highlight {
    background: #fff;
    padding: 2.5rem;
    border-radius: var(--radius-default);
    border: 1px solid var(--border-light);
    margin: 3rem 0;
    display: flex;
    gap: 1.5rem;
    align-items: start;
}

.feature-icon-circle {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--accent-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.feature-text h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.feature-text p {
    font-size: 1rem;
    margin: 0;
    color: #666;
}