/* Hide sidebar for landing page */
.navbar-static-side {
    display: none !important;
}

/* Make page full width without sidebar */
#page-wrapper {
    margin: 0 !important;
    width: 100% !important;
}

#wrapper {
    margin: 0 !important;
}

body {
    margin: 0 !important;
    padding: 0 !important;
}

/* Header Navigation */
.landing-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #2f4050;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #1ab394;
}

.btn-signin {
    padding: 8px 20px;
    font-size: 0.95rem;
    border-radius: 6px;
    background-color: #1ab394;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.btn-signin:hover {
    background-color: #18a689;
    color: white;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

/* Adjust hero section padding when header is present */
.hero-section {
    padding-top: 140px !important;
}

/* Reset for landing page */
.landing-page {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #2f4050 0%, #1a252f 100%);
    color: white;
    padding: 100px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.brand-highlight {
    color: #1ab394;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-cta .btn {
    padding: 12px 32px;
    font-size: 1.1rem;
    border-radius: 6px;
}

.btn-outline-light {
    border: 2px solid white;
    color: white;
    background: transparent;
}

.btn-outline-light:hover {
    background: white;
    color: #2f4050;
}

.hero-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.screenshot-frame {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 60px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.screenshot-frame i {
    color: #1ab394;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-header {
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2f4050;
    margin-bottom: 1rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    color: #1ab394;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2f4050;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #666;
    line-height: 1.7;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: white;
}

/* MyTasks / Kanban Section */
.mytasks-kanban-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.kanban-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2f4050;
    margin-bottom: 1rem;
}

.kanban-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.kanban-benefits li {
    background: white;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
    margin-bottom: 0.9rem;
}

.kanban-benefits strong {
    display: block;
    color: #1ab394;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.kanban-benefits span {
    display: block;
    color: #666;
    line-height: 1.6;
}

.kanban-board {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    align-items: start;
    background: rgba(47, 64, 80, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 14px;
    padding: 14px;
    overflow-x: auto;
}

.kanban-column {
    background: white;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    min-width: 160px;
    padding: 10px;
}

.kanban-column-header {
    font-weight: 800;
    color: #2f4050;
    background: #e8f5f1;
    border: 1px solid rgba(26, 179, 148, 0.25);
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 10px;
    text-align: center;
}

.kanban-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 10px;
    color: #666;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.06);
}

.kanban-note {
    background: #e8f5f1;
    border-left: 4px solid #1ab394;
    padding: 1rem 1.25rem;
    border-radius: 10px;
    color: #666;
    line-height: 1.6;
}

.kanban-note i {
    color: #1ab394;
    margin-right: 0.5rem;
}

.benefits-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2f4050;
    margin-bottom: 2rem;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.benefits-list i {
    color: #1ab394;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.benefits-list strong {
    display: block;
    font-size: 1.2rem;
    color: #2f4050;
    margin-bottom: 0.5rem;
}

.benefits-list p {
    color: #666;
    margin: 0;
}

.benefits-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

/* AI Recommendations Section */
.ai-recommendations-section {
    padding: 80px 0;
    background: white;
}

.ai-badge {
    display: inline-block;
    background: linear-gradient(135deg, #1ab394 0%, #18a689 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.ai-badge i {
    margin-right: 0.5rem;
}

.ai-recommendations-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2f4050;
    margin-bottom: 1rem;
}

.ai-recommendations-section .lead {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2.5rem;
}

.recommendation-benefits {
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.benefit-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1ab394 0%, #18a689 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.benefit-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2f4050;
    margin-bottom: 0.5rem;
}

.benefit-content p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.feature-highlight {
    background: #e8f5f1;
    border-left: 4px solid #1ab394;
    padding: 1.25rem;
    border-radius: 8px;
    color: #666;
    line-height: 1.7;
}

.feature-highlight i {
    color: #1ab394;
    margin-right: 0.5rem;
}

.feature-highlight strong {
    color: #2f4050;
}

/* How It Works Section */
.how-it-works-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1ab394 0%, #18a689 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.how-it-works-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2f4050;
    margin-bottom: 1rem;
}

.how-it-works-section p {
    color: #666;
    font-size: 1rem;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1ab394 0%, #18a689 100%);
    color: white;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-section .lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn {
    padding: 12px 32px;
    font-size: 1.1rem;
    border-radius: 6px;
}

.cta-section .btn-primary {
    background: white;
    color: #1ab394;
    border: none;
}

.cta-section .btn-primary:hover {
    background: #f8f9fa;
}

/* Footer */
.landing-footer {
    background: #2f4050;
    color: white;
    padding: 60px 0 20px;
}

.landing-footer h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.landing-footer p {
    opacity: 0.8;
    line-height: 1.7;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #1ab394;
}

.footer-links i {
    margin-right: 0.5rem;
    color: #1ab394;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    opacity: 0.7;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: white;
}

.pricing-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: 100%;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border: 3px solid #1ab394;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: #1ab394;
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.875rem;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.pricing-header {
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

.pricing-header h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #2f4050;
    margin-bottom: 1rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.pricing-price .currency {
    font-size: 1.5rem;
    color: #666;
    font-weight: 600;
}

.pricing-price .amount {
    font-size: 3rem;
    font-weight: 700;
    color: #2f4050;
}

.pricing-price .period {
    font-size: 1.125rem;
    color: #666;
}

.pricing-features {
    padding: 2rem;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: #1ab394;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.pricing-footer {
    padding: 0 2rem 2rem;
}

.btn-block {
    display: block;
    width: 100%;
    padding: 12px;
    font-weight: 600;
}

.btn-outline-primary {
    border: 2px solid #1ab394;
    color: #1ab394;
    background: transparent;
}

.btn-outline-primary:hover {
    background: #1ab394;
    color: white;
}

.implementation-note {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.implementation-note .alert {
    background: #e8f5f1;
    border: 2px solid #1ab394;
    border-radius: 12px;
    padding: 2rem;
}

.implementation-note h4 {
    color: #2f4050;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.implementation-note h4 i {
    color: #1ab394;
    margin-right: 0.5rem;
}

.implementation-note p {
    font-size: 1.125rem;
    color: #666;
    line-height: 1.7;
}

.pricing-card-wrapper {
    position: relative;
}

.coming-soon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 12px;
    z-index: 10;
}

/* Image Zoom Modal */
.image-zoom-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.9);
}

.image-zoom-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.image-zoom-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.image-zoom-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    transition: background-color 0.3s ease;
}

.image-zoom-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.image-zoom-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 25px;
    z-index: 10001;
}

.zoom-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.zoom-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.zoom-level {
    color: white;
    font-size: 0.9rem;
    font-weight: bold;
    line-height: 40px;
    margin: 0 10px;
    min-width: 60px;
    text-align: center;
}

.image-zoom-container {
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: grab;
}

.image-zoom-container:active {
    cursor: grabbing;
}

.zoomable-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    cursor: grab;
    user-select: none;
}

.zoomable-image:active {
    cursor: grabbing;
}

/* Make images clickable */
.clickable-image {
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.clickable-image:hover {
    opacity: 0.8;
}

/* Priority Problem Section */
.priority-problem-section {
    padding: 80px 0;
    background: white;
}

.priority-problem-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2f4050;
    margin-bottom: 1rem;
}

.priority-problem-section .lead {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
}

.problem-card, .solution-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.problem-card {
    border: 2px solid #e0e0e0;
}

.solution-card {
    border: 3px solid #1ab394;
    background: linear-gradient(135deg, #f0fdf9 0%, #ffffff 100%);
}

.problem-card:hover, .solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.problem-icon, .solution-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.problem-icon {
    background: linear-gradient(135deg, #ed5565 0%, #da4453 100%);
    color: white;
}

.solution-icon {
    background: linear-gradient(135deg, #1ab394 0%, #18a689 100%);
    color: white;
}

.problem-card h4, .solution-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2f4050;
    margin-bottom: 1rem;
    text-align: center;
}

.problem-card p, .solution-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #666;
    text-align: center;
}

.value-prop-highlight {
    background: linear-gradient(135deg, #1ab394 0%, #18a689 100%);
    color: white;
    padding: 2rem 2.5rem;
    border-radius: 16px;
    margin-top: 3rem;
    text-align: center;
    font-size: 1.125rem;
    line-height: 1.8;
    box-shadow: 0 8px 25px rgba(26, 179, 148, 0.3);
}

.value-prop-highlight i {
    font-size: 1.5rem;
    margin-right: 0.75rem;
    vertical-align: middle;
}

.value-prop-highlight strong {
    font-weight: 700;
}

/* Founding Customer Program Section */
.founding-customer-section {
    padding: 110px 0 80px 0;
    background: linear-gradient(135deg, #e8f5f1 0%, #ffffff 100%);
    position: relative;
}

.founding-customer-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 3px solid #1ab394;
    position: relative;
}

.limited-offer-badge {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: white;
    padding: 8px 30px;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(243, 156, 18, 0.4);
}

.limited-offer-badge i {
    margin-right: 0.5rem;
}

.founding-customer-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2f4050;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.founding-customer-section h2 i {
    color: #1ab394;
    margin-right: 0.75rem;
}

.founding-customer-section .lead {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
}

.pricing-breakdown {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.price-item {
    flex: 1;
    min-width: 200px;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.price-item.highlight {
    background: linear-gradient(135deg, #1ab394 0%, #18a689 100%);
    border-color: #1ab394;
    color: white;
    transform: scale(1.05);
}

.price-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.price-label {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
    opacity: 0.9;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.price-value span {
    font-size: 1.25rem;
    font-weight: 500;
}

.price-description {
    font-size: 0.875rem;
    opacity: 0.8;
}

.price-savings {
    flex-basis: 100%;
    text-align: center;
    padding: 1rem;
    background: #fff3cd;
    border-radius: 8px;
    border: 2px solid #ffc107;
}

.price-savings strong {
    font-size: 1.5rem;
    color: #856404;
    display: block;
    margin-bottom: 0.25rem;
}

.regular-price {
    color: #856404;
    font-size: 0.95rem;
    display: block;
}

.included-features {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.included-features h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2f4050;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    color: #666;
    font-size: 0.95rem;
}

.feature-list li i {
    color: #1ab394;
    margin-right: 0.75rem;
    font-size: 1rem;
}

.exchange-note {
    background: #e8f5f1;
    border-left: 4px solid #1ab394;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.exchange-note strong {
    display: block;
    color: #2f4050;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.exchange-note ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.exchange-note ul li {
    padding: 0.35rem 0;
    color: #666;
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.5rem;
}

.exchange-note ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1ab394;
    font-weight: bold;
}

.terms-note {
    color: #666;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.cta-box {
    background: linear-gradient(135deg, #2f4050 0%, #1a252f 100%);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 100px;
}

.spots-remaining {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 2px solid rgba(26, 179, 148, 0.3);
}

.spots-number {
    font-size: 4rem;
    font-weight: 700;
    color: #1ab394;
    line-height: 1;
}

.spots-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    text-align: left;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.founding-cta {
    background: linear-gradient(135deg, #1ab394 0%, #18a689 100%);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 8px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(26, 179, 148, 0.3);
}

.founding-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 179, 148, 0.4);
    background: linear-gradient(135deg, #18a689 0%, #16967a 100%);
}

.urgency-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    margin: 0;
    font-style: italic;
}

.pricing-disclaimer {
    color: #666;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Primary CTA Section */
.primary-cta-section {
    padding: 40px 0;
    background: white;
}

.btn-cta-primary {
    background: linear-gradient(135deg, #1ab394 0%, #18a689 100%);
    color: white;
    padding: 20px 60px;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    box-shadow: 0 8px 30px rgba(26, 179, 148, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(26, 179, 148, 0.5);
    background: linear-gradient(135deg, #18a689 0%, #16967a 100%);
    color: white;
}

/* Pain Points Section */
.pain-points-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.pain-point-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 5px solid #1ab394;
}

.pain-point-card.production {
    border-left-color: #f39c12;
}

.pain-point-card.maintenance {
    border-left-color: #3498db;
}

.pain-point-card.financial {
    border-left-color: #1ab394;
}

.pain-point-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.pain-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.production .pain-icon {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
}

.maintenance .pain-icon {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.financial .pain-icon {
    background: linear-gradient(135deg, #1ab394 0%, #18a689 100%);
}

.pain-point-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2f4050;
    margin-bottom: 1.5rem;
    text-align: center;
}

.pain-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pain-list li {
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    font-style: italic;
}

.pain-list li:last-child {
    border-bottom: none;
}

.pain-list i {
    color: #ed5565;
    font-size: 1.125rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.solution-callout {
    background: linear-gradient(135deg, #e8f5f1 0%, #ffffff 100%);
    border: 3px solid #1ab394;
    border-radius: 16px;
    padding: 2.5rem;
    margin-top: 3rem;
}

.solution-callout i {
    color: #1ab394;
}

.solution-callout p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #2f4050;
    margin-bottom: 1rem;
}

.solution-callout strong {
    color: #1ab394;
    font-weight: 700;
}

/* Build Problem Solvers Section */
.build-solvers-section {
    padding: 80px 0;
    background: white;
}

.transformation-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    padding: 2.5rem;
    height: 100%;
}

.transformation-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2f4050;
    margin-bottom: 2rem;
}

.transformation-card h3 i {
    color: #1ab394;
    margin-right: 0.75rem;
}

.transformation-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.transformation-item:last-child {
    border-bottom: none;
}

.role-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
    color: white;
}

.role-badge.operator {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
}

.role-badge.tech {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.role-badge.lead {
    background: linear-gradient(135deg, #1ab394 0%, #18a689 100%);
}

.transformation-item p {
    color: #2f4050;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.transformation-item p strong {
    color: #1ab394;
    font-weight: 700;
}

.transformation-item .insight {
    color: #999;
    font-size: 0.95rem;
    font-style: italic;
    margin-top: 0.25rem;
}

.focused-improvement-card {
    background: linear-gradient(135deg, #1ab394 0%, #18a689 100%);
    border-radius: 16px;
    padding: 2.5rem;
    color: white;
    height: 100%;
}

.fi-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.fi-badge i {
    margin-right: 0.5rem;
}

.fi-description {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.fi-description strong {
    font-weight: 700;
    color: #fff;
}

.outcome-highlight {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.outcome-highlight i {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    display: block;
}

.outcome-highlight strong {
    font-size: 1.125rem;
    font-weight: 700;
}

.development-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.development-list li {
    padding: 0.75rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.development-list li:last-child {
    border-bottom: none;
}

.development-list i {
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-section {
        padding: 60px 0;
        min-height: auto;
    }

    .section-header h2,
    .benefits-section h2,
    .cta-section h2 {
        font-size: 2rem;
    }

    .features-section,
    .benefits-section,
    .mytasks-kanban-section,
    .how-it-works-section,
    .pricing-section,
    .cta-section {
        padding: 60px 0;
    }

    .kanban-board {
        grid-template-columns: repeat(5, minmax(180px, 1fr));
        padding: 12px;
    }

    .screenshot-frame {
        padding: 40px 20px;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }

    .pricing-price .amount {
        font-size: 2.5rem;
    }

    .image-zoom-controls {
        bottom: 10px;
        padding: 8px 15px;
    }

    .zoom-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .zoom-level {
        font-size: 0.8rem;
        line-height: 35px;
        margin: 0 5px;
        min-width: 50px;
    }

    .image-zoom-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}
