/**
 * Team Collaboration Feature Page Styles
 * CreativAI Main Website - Professional Styling
 */

/* ===== HERO SECTION ===== */
.collaboration-hero {
    background: linear-gradient(135deg, #0ea5e9 0%, #1e293b 100%);
    padding: 72px 0 48px;
    position: relative;
    overflow: hidden;
}

.collaboration-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: center;
    position: relative;
    z-index: 2;
    margin-bottom: 36px;
}

.hero-text {
    color: #ffffff;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 16px;
    color: #ffffff;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.gradient-text {
    background: linear-gradient(45deg, #fbbf24, #f59e0b, #d97706);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Hero Visual - Collaboration Dashboard */
.hero-visual {
    position: relative;
    transition: transform 0.3s ease;
}

.hero-visual:hover {
    transform: scale(1.05);
}

.collaboration-dashboard {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-visual:hover .collaboration-dashboard {
    transform: perspective(1000px) rotateY(0deg);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.3);
}

.dashboard-header {
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.project-info h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 4px 0;
}

.status-badge {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.status-badge.in-progress {
    background: #dbeafe;
    color: #1d4ed8;
}

.team-avatars {
    display: flex;
    gap: -8px;
}

.avatar {
    width: 32px;
    height: 32px;
    background: #7c3aed;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    border: 2px solid #ffffff;
    margin-left: -8px;
}

.avatar:first-child {
    margin-left: 0;
}

.workflow-preview {
    padding: 24px;
    border-bottom: 1px solid #e2e8f0;
}

.workflow-stage {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
    position: relative;
}

.workflow-stage:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 15px;
    bottom: -12px;
    width: 2px;
    height: 24px;
    background: #e2e8f0;
}

.workflow-stage.completed::after {
    background: #10b981;
}

.workflow-stage.active::after {
    background: #3b82f6;
}

.stage-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #ffffff;
    flex-shrink: 0;
}

.workflow-stage.completed .stage-icon {
    background: #10b981;
}

.workflow-stage.active .stage-icon {
    background: #3b82f6;
}

.workflow-stage.pending .stage-icon {
    background: #94a3b8;
}

.stage-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 2px 0;
}

.stage-info p {
    font-size: 12px;
    color: #64748b;
    margin: 0;
}

.activity-feed {
    padding: 20px 24px;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.activity-item:last-child {
    margin-bottom: 0;
}

.activity-avatar {
    width: 24px;
    height: 24px;
    background: #7c3aed;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
    flex-shrink: 0;
}

.activity-content {
    font-size: 13px;
    color: #475569;
    line-height: 1.4;
}

.activity-content strong {
    color: #1e293b;
}

.time {
    display: block;
    font-size: 11px;
    color: #94a3b8;
    margin-top: 2px;
}

/* Hero Metrics */
.hero-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 2;
}

.metric-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    color: #ffffff;
}

.metric-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin: 0 auto 16px;
    color: #ffffff;
}

.metric-value {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1;
}

.metric-label {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.3;
}

/* ===== COLLABORATION FEATURES SECTION ===== */
.collaboration-features {
    padding: 100px 0;
    background: #ffffff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 64px;
}

.feature-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0ea5e9, #0284c7);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    border-color: #0ea5e9;
    box-shadow: 0 10px 40px rgba(14, 165, 233, 0.1);
    transform: translateY(-4px);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #ffffff;
    margin-bottom: 24px;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
}

.feature-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.feature-capabilities {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-capabilities li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #475569;
    font-size: 14px;
    margin-bottom: 8px;
}

.feature-capabilities i {
    color: #16a34a;
    font-size: 12px;
}

/* ===== WORKFLOW BUILDER SECTION ===== */
.workflow-builder {
    padding: 100px 0;
    background: #f8fafc;
}

.builder-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: start;
}

.builder-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 32px 0;
}

.builder-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #475569;
}

.builder-feature i {
    color: #7c3aed;
    font-size: 16px;
    width: 20px;
}

.builder-interface {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 1fr 250px;
}

.workflow-canvas {
    border-right: 1px solid #e2e8f0;
}

.canvas-header {
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.canvas-header h4 {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.canvas-tools {
    display: flex;
    gap: 4px;
}

.tool-btn {
    width: 28px;
    height: 28px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tool-btn:hover,
.tool-btn.active {
    border-color: #7c3aed;
    background: #ede9fe;
    color: #7c3aed;
}

.canvas-area {
    padding: 40px 20px;
    min-height: 300px;
    display: flex;
    align-items: center;
    gap: 20px;
    overflow-x: auto;
}

.workflow-node {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px;
    min-width: 100px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.workflow-node:hover {
    border-color: #7c3aed;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.1);
}

.workflow-node i {
    font-size: 20px;
    color: #7c3aed;
    margin-bottom: 8px;
    display: block;
}

.workflow-node span {
    font-size: 12px;
    font-weight: 500;
    color: #1e293b;
}

.workflow-node.start {
    border-color: #10b981;
}

.workflow-node.start i {
    color: #10b981;
}

.workflow-connector {
    width: 20px;
    height: 2px;
    background: #cbd5e1;
    position: relative;
    flex-shrink: 0;
}

.workflow-connector::after {
    content: '';
    position: absolute;
    right: -4px;
    top: -3px;
    width: 0;
    height: 0;
    border-left: 8px solid #cbd5e1;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
}

.workflow-sidebar {
    padding: 20px;
    background: #f8fafc;
}

.workflow-sidebar h4 {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 16px 0;
}

.element-group {
    margin-bottom: 24px;
}

.element-group h5 {
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 12px 0;
}

.workflow-element {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 8px;
    cursor: grab;
    transition: all 0.2s ease;
    font-size: 12px;
}

.workflow-element:hover {
    border-color: #7c3aed;
    background: #faf5ff;
}

.workflow-element:active {
    cursor: grabbing;
}

.workflow-element i {
    color: #7c3aed;
    font-size: 14px;
}

/* ===== WORKFLOW TEMPLATES SECTION ===== */
.workflow-templates {
    padding: 100px 0;
    background: #ffffff;
}

.templates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 64px;
}

.template-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 24px;
    transition: all 0.3s ease;
}

.template-card:hover {
    border-color: #0ea5e9;
    box-shadow: 0 8px 30px rgba(14, 165, 233, 0.1);
    transform: translateY(-4px);
}

.template-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.template-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.template-duration {
    background: #e0f2fe;
    color: #0284c7;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.template-description {
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.5;
}

.template-steps {
    margin-bottom: 20px;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #475569;
}

.step-number {
    width: 20px;
    height: 20px;
    background: #0ea5e9;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    flex-shrink: 0;
}

.template-teams {
    margin-bottom: 20px;
    font-size: 14px;
}

.teams-label {
    color: #64748b;
    font-weight: 500;
    margin-right: 8px;
}

.team-tag {
    background: #f1f5f9;
    color: #475569;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    margin-right: 6px;
}

.template-actions {
    display: flex;
    gap: 8px;
}

.template-actions .btn {
    flex: 1;
    font-size: 14px;
    padding: 8px 16px;
}

/* ===== TEAM MANAGEMENT SECTION ===== */
.team-management {
    padding: 100px 0;
    background: #f8fafc;
}

.management-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: start;
}

.management-features {
    margin: 32px 0;
}

.mgmt-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.mgmt-feature i {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #ffffff;
    flex-shrink: 0;
}

.mgmt-feature h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 4px 0;
}

.mgmt-feature p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

.team-interface {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.team-overview {
    padding: 24px;
}

.overview-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e2e8f0;
}

.overview-header h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.team-count {
    background: #ede9fe;
    color: #7c3aed;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.team-member {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: #f8fafc;
    border-radius: 12px;
}

.member-avatar {
    position: relative;
    flex-shrink: 0;
}

.member-avatar img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.status-indicator {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #ffffff;
}

.status-indicator.online {
    background: #10b981;
}

.member-info {
    flex: 1;
}

.member-info h5 {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 4px 0;
}

.member-responsibilities {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.responsibility-tag {
    background: #e2e8f0;
    color: #475569;
    padding: 2px 6px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 500;
}

.member-workload {
    text-align: right;
    min-width: 100px;
}

.workload-bar {
    width: 80px;
    height: 6px;
    background: #e2e8f0;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 4px;
    margin-left: auto;
}

.workload-fill {
    height: 100%;
    background: linear-gradient(90deg, #10b981, #059669);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.workload-text {
    font-size: 11px;
    color: #64748b;
}

/* ===== INTEGRATIONS SECTION ===== */
.integrations-section {
    padding: 100px 0;
    background: #ffffff;
}

.integrations-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 48px 0;
}

.integration-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.integration-item:hover {
    border-color: #7c3aed;
    background: #faf5ff;
    transform: translateY(-2px);
}

.integration-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #7c3aed;
    flex-shrink: 0;
}

.integration-info {
    flex: 1;
}

.integration-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 2px 0;
}

.integration-type {
    font-size: 12px;
    color: #64748b;
}

.integration-status {
    color: #10b981;
    font-size: 16px;
}

.integrations-cta {
    text-align: center;
    margin-top: 48px;
}

.integrations-cta p {
    color: #64748b;
    margin-bottom: 24px;
}

/* ===== DEMO SECTION ===== */
.collaboration-demo {
    padding: 100px 0;
    background: #f8fafc;
}

.demo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.demo-text h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
}

.demo-text p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 32px;
}

.demo-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #475569;
}

.highlight-item i {
    color: #7c3aed;
    font-size: 16px;
    width: 20px;
}

.demo-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.demo-visual {
    position: relative;
}

.demo-preview {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.preview-header {
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.preview-controls {
    display: flex;
    gap: 6px;
}

.control-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control-dot.red {
    background: #ef4444;
}

.control-dot.yellow {
    background: #f59e0b;
}

.control-dot.green {
    background: #10b981;
}

.preview-title {
    font-size: 13px;
    font-weight: 500;
    color: #64748b;
}

.preview-content {
    min-height: auto;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    transition: height 0.4s ease;
}

.demo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(124, 58, 237, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.demo-overlay:hover {
    background: rgba(124, 58, 237, 0.2);
}

.demo-play-btn {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #7c3aed;
    cursor: pointer;
    transition: all 0.3s ease;
}

.demo-play-btn:hover {
    background: #ffffff;
    transform: scale(1.1);
}

/* ===== CTA SECTION ===== */
.collaboration-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    color: #ffffff;
    text-align: center;
}

.cta-content {
    margin-bottom: 48px;
}

.cta-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-text p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-benefits {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    opacity: 0.9;
}

.benefit-item i {
    color: #10b981;
    font-size: 16px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-metrics {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .builder-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .management-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .demo-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .builder-interface {
        grid-template-columns: 1fr;
    }
    
    .workflow-sidebar {
        border-top: 1px solid #e2e8f0;
    }
}

@media (max-width: 768px) {
    .collaboration-hero {
        padding: 80px 0 60px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-metrics {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .templates-grid {
        grid-template-columns: 1fr;
    }
    
    .integrations-showcase {
        grid-template-columns: 1fr;
    }
    
    .canvas-area {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }
    
    .workflow-connector {
        width: 2px;
        height: 20px;
        align-self: center;
    }
    
    .workflow-connector::after {
        top: 16px;
        left: -3px;
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-top: 8px solid #cbd5e1;
        border-left-color: initial;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .template-actions {
        flex-direction: column;
    }
    
    .cta-benefits {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
}

/* ===== BLUE THEME COLOR OVERRIDES ===== */
/* Hero Section */
.collaboration-hero {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 50%, #0369a1 100%) !important;
}

/* Purple color overrides to blue */
.hero-badge {
    background: rgba(14, 165, 233, 0.15) !important;
    border: 1px solid rgba(14, 165, 233, 0.3) !important;
}

.gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #0ea5e9, #0284c7) !important;
    border-color: #0ea5e9 !important;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0284c7, #0369a1) !important;
    border-color: #0284c7 !important;
}

.btn-outline {
    border-color: #0ea5e9 !important;
    color: #0ea5e9 !important;
}

.btn-outline:hover {
    background: #0ea5e9 !important;
    border-color: #0ea5e9 !important;
    color: #ffffff !important;
}

/* Feature icons */
.feature-icon {
    background: linear-gradient(135deg, #0ea5e9, #0284c7) !important;
}

/* Status indicators */
.status-indicator.active {
    background: #0ea5e9 !important;
}

/* Progress elements */
.progress-fill {
    background: linear-gradient(135deg, #0ea5e9, #0284c7) !important;
}

/* Tool cards */
.tool-card:hover {
    border-color: #0ea5e9 !important;
}

/* Management feature icons */
.mgmt-feature i {
    background: linear-gradient(135deg, #0ea5e9, #0284c7) !important;
}
