/* Modern Landing Page Styles */
:root {
    /* Professional Blue Color Palette */
    --primary-color: #0066cc;
    --primary-dark: #0052a3;
    --primary-light: #3385d6;
    --primary-lighter: #e6f2ff;
    --secondary-color: #0891b2;
    --secondary-dark: #0e7490;
    
    /* Accent Colors */
    --success-color: #059669;
    --text-dark: #111827;
    --text-medium: #374151;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    
    /* Borders & Shadows */
    --border-color: #e5e7eb;
    --border-radius: 12px;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.12);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--bg-white);
}

/* Navigation */
.landing-nav {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

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

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

.logo svg {
    stroke: var(--primary-color);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

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

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

.btn-outline {
    padding: 10px 20px;
    border: 1.5px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-dark) !important;
    transition: all 0.2s;
}

.btn-outline:hover {
    border-color: var(--primary-color);
    background: var(--primary-lighter);
    color: var(--primary-color) !important;
}

.btn-primary {
    padding: 10px 24px;
    background: var(--primary-color);
    color: white !important;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding-top: 80px;
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.hero-text {
    max-width: 100%;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.65;
    margin-bottom: 28px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-cta {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.btn-hero {
    padding: 14px 28px;
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.2s;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-hero-outline {
    padding: 14px 28px;
    background: transparent;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.2s;
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
}

.hero-note {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
}

/* Dashboard Mockup */
.dashboard-mockup {
    background: white;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.mockup-header {
    background: var(--bg-light);
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-color);
}

.mockup-dots {
    display: flex;
    gap: 8px;
}

.mockup-dots span,
.mockup-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e1;
}

.mockup-content {
    padding: 30px;
}

.schedule-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.day-card {
    background: var(--bg-light);
    padding: 16px;
    border-radius: 12px;
    border: 2px solid var(--border-color);
}

.day-name {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-size: 0.875rem;
}

.shift-block {
    background: var(--primary-color);
    color: white;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    font-size: 0.875rem;
}

/* Section Container */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
}

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

.section-header h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 1.0625rem;
    color: var(--text-light);
}

/* Features Section */
.features {
    background: var(--bg-white);
}

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

.feature-card {
    background: var(--bg-white);
    padding: 36px 28px;
    border-radius: var(--border-radius);
    border: 2px solid var(--border-color);
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-lighter);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon svg {
    stroke: var(--primary-color);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

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

/* Pricing Section */
.pricing {
    background: var(--bg-light);
}

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

.pricing-card {
    background: white;
    border-radius: 16px;
    border: 2px solid var(--border-color);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s;
}

.pricing-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-xl);
    transform: translateY(-8px);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    border-width: 3px;
    box-shadow: var(--shadow-lg);
}

.popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8125rem;
    box-shadow: var(--shadow-md);
}

.plan-header {
    text-align: center;
    margin-bottom: 32px;
}

.plan-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 12px;
}

.currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-medium);
}

.amount {
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
}

.period {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-left: 4px;
}

.plan-description {
    color: var(--text-medium);
    font-size: 0.9375rem;
}

.features-list {
    list-style: none;
    margin-bottom: 32px;
    flex-grow: 1;
}

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

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

.btn-plan {
    display: block;
    width: 100%;
    padding: 16px;
    background: var(--primary-color);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.2s;
    box-shadow: var(--shadow-sm);
    margin-top: auto;
}

.btn-plan:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.pricing-card.featured .btn-plan {
    background: var(--primary-color);
    box-shadow: var(--shadow-md);
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 80px 40px;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.cta p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 32px;
}

.btn-cta {
    display: inline-block;
    padding: 18px 48px;
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.cta-note {
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9375rem;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: #9ca3af;
    padding: 60px 40px 40px;
}

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

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

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

.footer-links {
    display: flex;
    gap: 80px;
}

.footer-column h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 16px;
    font-size: 0.9375rem;
}

.footer-column a {
    display: block;
    color: #9ca3af;
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 0.9375rem;
    transition: color 0.2s;
}

.footer-column a:hover {
    color: var(--primary-light);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-container {
        padding: 16px 24px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .dashboard-mockup {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .schedule-preview {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }
    
    .section-container {
        padding: 60px 24px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
        gap: 24px;
    }
    
    .footer {
        padding: 40px 24px 24px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 12px 16px;
    }
    
    .logo {
        font-size: 1.125rem;
        gap: 8px;
        flex-shrink: 0;
    }
    
    .logo svg {
        width: 28px;
        height: 28px;
    }
    
    .nav-links {
        gap: 8px;
        flex-shrink: 0;
    }
    
    .nav-links a:not(.btn-outline):not(.btn-primary) {
        display: none;
    }
    
    .btn-outline,
    .btn-primary {
        padding: 10px 16px;
        font-size: 0.8125rem;
        white-space: nowrap;
    }
    
    .btn-outline {
        padding: 8px 12px;
    }
    
    .btn-primary {
        padding: 10px 18px;
    }
    
    .hero {
        padding-top: 70px;
        min-height: auto;
    }
    
    .hero-content {
        padding: 40px 20px;
        grid-template-columns: 1fr;
    }
    
    .hero-text h1 {
        font-size: 1.875rem;
        line-height: 1.25;
        margin-bottom: 16px;
    }
    
    .hero-subtitle {
        font-size: 0.9375rem;
        line-height: 1.6;
        margin-bottom: 24px;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-cta .btn-hero,
    .hero-cta .btn-hero-outline {
        width: 100%;
        text-align: center;
        padding: 12px 24px;
        font-size: 0.9375rem;
    }
    
    .hero-note {
        font-size: 0.8125rem;
    }
    
    .dashboard-mockup {
        margin-top: 30px;
        padding: 0;
    }
    
    .mockup-window {
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }
    
    .mockup-header {
        padding: 8px 12px;
    }
    
    .mockup-dots {
        gap: 6px;
    }
    
    .mockup-dot {
        width: 8px;
        height: 8px;
    }
    
    .mockup-content {
        padding: 16px 12px;
    }
    
    .schedule-preview {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .day-card {
        padding: 12px;
    }
    
    .day-name {
        font-size: 0.8125rem;
        margin-bottom: 8px;
    }
    
    .shift-block {
        padding: 10px;
        font-size: 0.875rem;
    }
    
    .section-container {
        padding: 40px 20px;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 24px;
    }
    
    .feature-card h3 {
        font-size: 1.125rem;
    }
    
    .pricing-card {
        padding: 24px;
    }
    
    .plan-header h3 {
        font-size: 1.5rem;
    }
    
    .price {
        margin: 16px 0;
    }
    
    .amount {
        font-size: 2.5rem;
    }
    
    .features-list {
        padding: 20px 0;
    }
    
    .features-list li {
        font-size: 0.9375rem;
    }
    
    .cta {
        padding: 60px 20px;
    }
    
    .cta h2 {
        font-size: 1.75rem;
    }
    
    .cta p {
        font-size: 1rem;
    }
    
    .btn-cta {
        padding: 14px 32px;
        font-size: 1rem;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 32px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 10px 12px;
    }
    
    .logo {
        font-size: 1rem;
        gap: 6px;
    }
    
    .logo svg {
        width: 24px;
        height: 24px;
    }
    
    .nav-links {
        gap: 6px;
    }
    
    .btn-outline {
        padding: 8px 10px;
        font-size: 0.75rem;
        border-radius: 6px;
    }
    
    .btn-primary {
        padding: 8px 14px;
        font-size: 0.8125rem;
        border-radius: 6px;
    }
    
    .hero {
        padding-top: 60px;
    }
    
    .hero-content {
        padding: 32px 16px;
    }
    
    .hero-text h1 {
        font-size: 1.625rem;
        line-height: 1.3;
        margin-bottom: 14px;
    }
    
    .hero-subtitle {
        font-size: 0.875rem;
        line-height: 1.55;
        margin-bottom: 20px;
    }
    
    .hero-cta .btn-hero,
    .hero-cta .btn-hero-outline {
        padding: 11px 20px;
        font-size: 0.875rem;
    }
    
    .hero-note {
        font-size: 0.75rem;
    }
    
    .dashboard-mockup {
        margin-top: 24px;
    }
    
    .mockup-window {
        border-radius: 6px;
    }
    
    .mockup-header {
        padding: 6px 10px;
    }
    
    .mockup-dots {
        gap: 5px;
    }
    
    .mockup-dot {
        width: 7px;
        height: 7px;
    }
    
    .mockup-content {
        padding: 12px 10px;
    }
    
    .day-card {
        padding: 10px;
    }
    
    .day-name {
        font-size: 0.75rem;
        margin-bottom: 6px;
    }
    
    .shift-block {
        padding: 8px;
        font-size: 0.8125rem;
    }
    
    .section-container {
        padding: 32px 16px;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .feature-icon {
        width: 48px;
        height: 48px;
    }
    
    .feature-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .pricing-card {
        padding: 20px;
    }
    
    .popular-badge {
        font-size: 0.75rem;
        padding: 4px 12px;
    }
    
    .amount {
        font-size: 2rem;
    }
    
    .cta h2 {
        font-size: 1.5rem;
    }
    
    .btn-cta {
        padding: 12px 24px;
        font-size: 0.9375rem;
    }
}
